2026-05-12
Learning GLSL from scratch
My first notes exploring shaders in WebGL.
Next.js
GLSL is the shader language of OpenGL.
void main() {
gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}My first notes exploring shaders in WebGL.
GLSL is the shader language of OpenGL.
void main() {
gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}