TGSI
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Tungsten Graphics Shader Infrastructure
Provenance: commit a0d5bb2a40 · authored 2026-03-05T19:12:59+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Transform Vertex Shader
Provenance: commit a0d5bb2a40 · authored 2026-03-05T19:12:59+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
VERT
DCL IN[0]
DCL IN[1]
DCL OUT[0], POSITION
DCL OUT[1], COLOR
DCL TEMP[0]
DCL CONST[0..3]
0: DP4 TEMP[0].x, CONST[0], IN[0]
1: DP4 TEMP[0].y, CONST[1], IN[0]
2: DP4 TEMP[0].z, CONST[2], IN[0]
3: DP4 TEMP[0].w, CONST[3], IN[0]
4: MOV OUT[0], TEMP[0]
5: MOV OUT[1], IN[1]
6: END