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

11 lines
239 B
C

#include "shaders_common.h"
static const char *stock_fragment_core = GLSL(
uniform sampler2D Texture;
in vec2 tex_coord;
out vec4 FragColor;
void main() {
FragColor = vec4(texture(Texture, tex_coord).rgb, 1.0);
}
);