mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
11 lines
176 B
Text
11 lines
176 B
Text
void main
|
|
(
|
|
float2 texcoord : TEXCOORD0,
|
|
float4 color : COLOR,
|
|
uniform sampler2D texture,
|
|
out float4 oColor : COLOR
|
|
)
|
|
{
|
|
oColor = color * tex2D(texture, texcoord);
|
|
}
|
|
|