mirror of
https://github.com/libretro/RetroArch
synced 2025-01-10 06:59:31 +00:00
7 lines
205 B
C
7 lines
205 B
C
|
static const char *stock_fragment_legacy =
|
||
|
"uniform sampler2D Texture;\n"
|
||
|
"varying vec4 color;\n"
|
||
|
"void main() {\n"
|
||
|
" gl_FragColor = color * texture2D(Texture, gl_TexCoord[0].xy);\n"
|
||
|
"}";
|