Files
Ink-Shader-Language/test/passthrough.shd
2024-06-09 21:34:23 +02:00

8 lines
154 B
Plaintext

vertex main :: (pos : float3 @position) -> float3 @position {
return pos;
}
pixel main :: () -> float4 @target0 {
return float4(1.0, 1.0, 1.0, 1.0);
}