mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-24 19:56:06 +00:00
11 lines
225 B
C
11 lines
225 B
C
#include "shaders_common.h"
|
|
|
|
static const char *stock_fragment_legacy = GLSL(
|
|
uniform sampler2D Texture;
|
|
varying vec4 color;
|
|
|
|
void main() {
|
|
gl_FragColor = color * texture2D(Texture, gl_TexCoord[0].xy);
|
|
}
|
|
);
|