mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-09-15 20:09:19 +03:00
7 lines
119 B
Plaintext
7 lines
119 B
Plaintext
const float4 g_ColorConstant : register( c0 );
|
|
|
|
float4 main( void ) : COLOR
|
|
{
|
|
return (g_ColorConstant / 2.0);
|
|
}
|