mirror of
https://github.com/Kugelschieber/go-game.git
synced 2026-01-18 06:40:28 +00:00
13 lines
133 B
GLSL
13 lines
133 B
GLSL
#version 130
|
|
precision highp float;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 tc;
|
|
|
|
out vec4 color;
|
|
|
|
void main(){
|
|
color = texture(tex, tc);
|
|
}
|