mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 14:16:50 +00:00
7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
|
const float4 g_ColorConstant : register( c0 );
|
||
|
|
||
|
float4 main( void ) : COLOR
|
||
|
{
|
||
|
return (g_ColorConstant / 2.0);
|
||
|
}
|