shader-fundamentals

Installation
SKILL.md

Shader Fundamentals

GLSL (OpenGL Shading Language) runs on the GPU. Vertex shaders transform geometry; fragment shaders color pixels.

Quick Start

// Vertex Shader
uniform mat4 projectionMatrix;
uniform mat4 modelViewMatrix;

attribute vec3 position;
attribute vec2 uv;

varying vec2 vUv;
Related skills

More from bbeierle12/skill-mcp-claude

Installs
134
GitHub Stars
8
First Seen
Jan 22, 2026