mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 21:48:39 +00:00
13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
|
#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);
|
||
|
}
|