mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-16 09:16:43 +00:00
11 lines
185 B
GLSL
11 lines
185 B
GLSL
precision mediump float;
|
|
|
|
const float pi = 3.14;
|
|
uniform vec2 P;
|
|
|
|
#pragma glslify: run = require('./unsuffixable-source.glsl', d = pi, h = P.x)
|
|
|
|
void main() {
|
|
run(gl_FragCoord.xy);
|
|
}
|