struct v2f { float4 Position : POSITION; //in projection space float4 Normal : TEXCOORD0; }; float4 main(v2f IN) : COLOR { return abs(IN.Normal); }