diff options
Diffstat (limited to 'materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc')
| -rw-r--r-- | materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc b/materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc new file mode 100644 index 0000000..e4fffb8 --- /dev/null +++ b/materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc @@ -0,0 +1,14 @@ +// STATIC: "CONVERT_TO_SRGB" "0..1" [ps20b][= g_pHardwareConfig->NeedsShaderSRGBConversion()] [PC] +// STATIC: "CONVERT_TO_SRGB" "0..0" [= 0] [XBOX] + +#include "common_ps_fxc.h" + +struct PS_INPUT +{ + float4 vColor0 : COLOR0; +}; + +float4 main( PS_INPUT i ) : COLOR +{ + return FinalOutput( i.vColor0, 0, PIXEL_FOG_TYPE_NONE, TONEMAP_SCALE_NONE ); +}
\ No newline at end of file |