mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
|
void main
|
||
|
(
|
||
|
float2 texcoord : TEXCOORD0,
|
||
|
float4 color : COLOR,
|
||
|
uniform sampler2D texture,
|
||
|
out float4 oColor : COLOR
|
||
|
)
|
||
|
{
|
||
|
oColor = color * tex2D(texture, texcoord);
|
||
|
}
|
||
|
|