mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
c5b9352c34
This reverts commit 03a8bc9875ef4e0e942ab6d8d0d9402c4e1830fe.
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);
|
|
}
|
|
);
|