agentsclimarketplace

Glsl

Skill a5c-ai/babysitter/library/specializations/game-development/skills/glsl

GLSL shader programming skill for OpenGL/Vulkan, fragment and vertex shaders.From its SKILL.md

Install
npx -y skills add a5c-ai/babysitter --skill glsl

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

0.9 KB, 143 tokens by cl100k_base, as published. Nobody here has run it

GLSL Skill

GLSL shader programming for OpenGL/Vulkan.

Overview

This skill provides capabilities for writing GLSL shaders.

Capabilities

  • Vertex and fragment shaders
  • Geometry shaders
  • Uniform handling
  • Cross-platform shading

Usage Patterns

#version 450

layout(location = 0) in vec3 position;
layout(location = 0) out vec4 fragColor;

uniform mat4 mvp;

void main() {
    gl_Position = mvp * vec4(position, 1.0);
}

References

What ships with it: 1 file

241 B alongside SKILL.md

Keep looking

Skills are one crate of 326,059. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.