1
0
mirror of https://github.com/nillerusr/source-engine.git synced 2025-01-19 03:20:55 +00:00

7 lines
113 B
Plaintext
Raw Normal View History

2020-04-22 12:56:21 -04:00
const float4 g_ColorConstant : register( c0 );
float4 main( void ) : COLOR
{
return (g_ColorConstant / 2.0);
}