source-engine/materialsystem/stdshaders/unlitgeneric_notexture_ps11.fxc

9 lines
105 B
Plaintext
Raw Permalink Normal View History

2020-04-23 00:56:21 +08:00
struct PS_INPUT
{
float4 vColor0 : COLOR0;
};
float4 main( PS_INPUT i ) : COLOR
{
return i.vColor0;
}