mirror of
https://github.com/rt64/rt64.git
synced 2025-01-09 03:41:40 +00:00
8 lines
209 B
HLSL
8 lines
209 B
HLSL
|
//
|
||
|
// RT64
|
||
|
//
|
||
|
|
||
|
void VSMain(in float2 vertexPos : POSITION, in float2 vertexUV : TEXCOORD, out float4 pos : SV_POSITION, out float2 uv : TEXCOORD) {
|
||
|
pos = float4(vertexPos, 1.0f, 1.0f);
|
||
|
uv = vertexUV;
|
||
|
}
|