mirror of
https://github.com/quantum5/punyverse.git
synced 2025-08-02 22:08:17 -04:00
11 lines
140 B
Plaintext
11 lines
140 B
Plaintext
|
#version 130
|
||
|
|
||
|
in float v_u;
|
||
|
|
||
|
out vec4 o_fragColor;
|
||
|
uniform sampler1D u_texture;
|
||
|
|
||
|
void main() {
|
||
|
o_fragColor = texture(u_texture, v_u);
|
||
|
}
|