2016-06-30 20:13:03 +00:00
|
|
|
float PixelShaderFunctionS(float inF0)
|
2016-06-15 15:50:24 +00:00
|
|
|
{
|
|
|
|
f32tof16(inF0);
|
|
|
|
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2016-06-30 20:13:03 +00:00
|
|
|
float1 PixelShaderFunction1(float1 inF0)
|
2016-06-15 15:50:24 +00:00
|
|
|
{
|
|
|
|
// TODO: ... add when float1 prototypes are generated
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2016-06-30 20:13:03 +00:00
|
|
|
float2 PixelShaderFunction2(float2 inF0)
|
2016-06-15 15:50:24 +00:00
|
|
|
{
|
|
|
|
f32tof16(inF0);
|
|
|
|
|
|
|
|
return float2(1,2);
|
|
|
|
}
|
|
|
|
|
2016-06-30 20:13:03 +00:00
|
|
|
float3 PixelShaderFunction3(float3 inF0)
|
2016-06-15 15:50:24 +00:00
|
|
|
{
|
|
|
|
f32tof16(inF0);
|
|
|
|
|
|
|
|
return float3(1,2,3);
|
|
|
|
}
|
|
|
|
|
|
|
|
float4 PixelShaderFunction(float4 inF0)
|
|
|
|
{
|
|
|
|
f32tof16(inF0);
|
|
|
|
|
|
|
|
return float4(1,2,3,4);
|
|
|
|
}
|
|
|
|
|