You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
402 B
30 lines
402 B
uint PixelShaderFunctionS(float inF0)
|
|
{
|
|
return f32tof16(inF0);
|
|
}
|
|
|
|
uint1 PixelShaderFunction1(float1 inF0)
|
|
{
|
|
return f32tof16(inF0);
|
|
}
|
|
|
|
uint2 PixelShaderFunction2(float2 inF0)
|
|
{
|
|
return f32tof16(inF0);
|
|
}
|
|
|
|
uint3 PixelShaderFunction3(float3 inF0)
|
|
{
|
|
return f32tof16(inF0);
|
|
}
|
|
|
|
uint4 PixelShaderFunction(float4 inF0)
|
|
{
|
|
return f32tof16(inF0);
|
|
}
|
|
|
|
float4 main() : SV_Target0
|
|
{
|
|
return 0;
|
|
}
|