Files
Ink-Shader-Language/test/passthrough.inx

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);
}