mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-09-12 17:17:09 -04:00
9 lines
154 B
Plaintext
9 lines
154 B
Plaintext
float4 main
|
|
(
|
|
float4 in_color : COLOR,
|
|
float2 in_tex0 : TEXCOORD0,
|
|
uniform sampler2D tex
|
|
) : COLOR
|
|
{
|
|
return tex2D(tex, in_tex0) * in_color;
|
|
} |