David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

9 lines
133 B
GLSL

// Test Y negation from entry point out parameter
float4 pos;
void main(out float4 position : SV_Position)
{
position = pos;
}