Vibeset

GLSL

GLSL (OpenGL Shading Language) is the shader language for OpenGL and WebGL: small programs that run on the GPU to compute colors, lighting and visual effects per pixel and per vertex. Essential in 3D graphics and games.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

void main() {
  gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}