Slang
1 program
Added 2026-02-10T18:39:02Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 47f9d490f0 · authored 2026-02-10T19:39:54+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/s-langRelated languages
LLM-contributed programs
Simple Vertex and Fragment Shader
Provenance: commit 47f9d490f0 · authored 2026-02-10T19:39:54+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple vertex shader in Slang
struct VertexInput
{
float3 position : POSITION;
float2 texCoord : TEXCOORD;
};
struct VertexOutput
{
float4 position : SV_Position;
float2 texCoord : TEXCOORD;
};
cbuffer uniforms
{
float4x4 modelViewProjection;
};
[shader("vertex")]
VertexOutput vertexMain(VertexInput input)
{
VertexOutput output;
output.position = mul(modelViewProjection, float4(input.position, 1.0));
output.texCoord = input.texCoord;
return output;
}
[shader("fragment")]
float4 fragmentMain(VertexOutput input) : SV_Target
{
return float4(input.texCoord, 0.0, 1.0);
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)