1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/materialsystem/stdshaders/unlitgeneric_notexture_ps2x.fxc

14 lines
354 B
Plaintext
Raw Permalink Normal View History

2014-03-01 03:08:09 +08:00
// 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 );
}