mirror of
https://github.com/quantum5/punyverse.git
synced 2025-04-24 13:11:57 -04:00
9 lines
136 B
GLSL
9 lines
136 B
GLSL
#version 130
|
|
|
|
in vec2 v_uv;
|
|
uniform sampler2D u_skysphere;
|
|
|
|
void main() {
|
|
gl_FragColor = vec4(texture(u_skysphere, v_uv).rgb, 1);
|
|
}
|