mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
16 lines
173 B
HLSL
16 lines
173 B
HLSL
|
struct VS
|
||
|
{
|
||
|
float4 pos : POSITION;
|
||
|
float2 tex : TEXCOORD;
|
||
|
};
|
||
|
|
||
|
struct PS
|
||
|
{
|
||
|
float4 pos : SV_Position;
|
||
|
float2 tex : TEXCOORD;
|
||
|
};
|
||
|
|
||
|
PS main(VS input)
|
||
|
{
|
||
|
return input;
|
||
|
}
|