Blog

  • Noon Break Mountains

    Noon Break Mountains is a GLSL WebGL2 shader study that builds a calm midday landscape from layered silhouettes, a soft sun glow, and subtle atmospheric haze. This page is for anyone who wants to view the loop, download the renders, and learn from a readable, self-contained fragment shader. Preview Downloads Launch in editor Source code…

  • Bird

    A bird made with code. Raw gif (gif) – Video (mp4) – Video (ogv) – Preview (png) Close #version 300 es precision highp float; #define PI 3.14159265359 #define PI2 6.28318530718 in vec2 UV; uniform float time; out vec4 out_color; uniform float ratio; vec4 bird(vec2 p, float t, float div){ vec4 col = vec4(1.0); float f = 1.0; p.y += 0.5 *…