mirror of
https://github.com/dpogue/CMake-MetalShaderSupport.git
synced 2025-04-04 13:05:06 +00:00
20 lines
363 B
Metal
20 lines
363 B
Metal
#import <metal_stdlib>
|
|
|
|
using namespace metal;
|
|
|
|
struct Vertex
|
|
{
|
|
float4 position [[position]];
|
|
float4 color;
|
|
};
|
|
|
|
vertex Vertex vertex_main(const device Vertex *vertices [[buffer(0)]],
|
|
uint vid [[vertex_id]])
|
|
{
|
|
return vertices[vid];
|
|
}
|
|
|
|
fragment float4 fragment_main(Vertex inVertex [[stage_in]])
|
|
{
|
|
return inVertex.color;
|
|
}
|