mirror of
https://git.ryujinx.app/archive/ryujinx-mirror.git
synced 2025-10-05 02:12:59 +00:00
13 lines
No EOL
178 B
GLSL
13 lines
No EOL
178 B
GLSL
#version 330 core
|
|
|
|
precision highp float;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 tex_coord;
|
|
|
|
out vec4 out_frag_color;
|
|
|
|
void main(void) {
|
|
out_frag_color = texture(tex, tex_coord);
|
|
} |