mirror of
https://github.com/rt64/rt64.git
synced 2025-04-25 03:02:33 +00:00
Co-authored-by: Isaac Marovitz <isaacryu@icloud.com> Co-authored-by: tanmaysachan <tnmysachan@gmail.com> Co-authored-by: Dario <dariosamo@gmail.com>
8 lines
211 B
HLSL
8 lines
211 B
HLSL
//
|
|
// RT64
|
|
//
|
|
|
|
void VSMain(in float2 vertexPos : POSITION, in float2 vertexUV : TEXCOORD0, out float4 pos : SV_POSITION, out float2 uv : TEXCOORD0) {
|
|
pos = float4(vertexPos, 0.5f, 1.0f);
|
|
uv = vertexUV;
|
|
} |