mirror of
https://github.com/libretro/RetroArch
synced 2025-01-14 09:43:27 +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);
|
|
}
|
|
|