RetroArch/gfx/drivers/gl_shaders/modern_opaque.glsl.frag.h
twinaphex c5b9352c34 Revert "Rename some files"
This reverts commit 03a8bc9875ef4e0e942ab6d8d0d9402c4e1830fe.
2018-11-24 01:26:05 +01:00

11 lines
228 B
C

#include "shaders_common.h"
static const char *stock_fragment_modern = GLSL(
uniform sampler2D Texture;
varying vec2 tex_coord;
void main() {
gl_FragColor = vec4(texture2D(Texture, tex_coord).rgb, 1.0);
}
);