mirror of
https://github.com/quantum5/punyverse.git
synced 2025-08-08 01:39:36 -04:00
10 lines
157 B
GLSL
10 lines
157 B
GLSL
#version 130
|
|
|
|
in vec2 v_uv;
|
|
out vec4 o_fragColor;
|
|
uniform sampler2D u_skysphere;
|
|
|
|
void main() {
|
|
o_fragColor = vec4(texture(u_skysphere, v_uv).rgb, 1);
|
|
}
|