Danbias/Code/OysterGraphics/Shader/HLSL/SimpleDebug/DebugVertex.hlsl

4 lines
72 B
HLSL
Raw Normal View History

2013-11-15 11:05:19 +01:00
float4 main( float4 pos : POSITION ) : SV_POSITION
2013-11-15 08:41:11 +01:00
{
2013-11-27 15:26:29 +01:00
return pos*0.1f;
2013-11-15 08:41:11 +01:00
}