render_engine 0.1.0-alpha.3

A Metal-based 3D rendering engine for macOS
1
2
3
4
5
6
7
8
#include <metal_stdlib>
using namespace metal;

#include "shader_types.h"

fragment float4 fragment_main(VertexOut in [[stage_in]]) {
    return in.color;
}