Files
WickedEngine/WickedEngine/objectVS_debug.hlsl
T
2018-09-27 19:00:08 +01:00

9 lines
169 B
HLSL

#include "globals.hlsli"
float4 main(float4 inPos : POSITION_NORMAL_SUBSETINDEX) : SV_POSITION
{
float4 pos = mul(float4(inPos.xyz, 1), g_xTransform);
return pos;
}