Pixel Bender

1 program Added 2026-02-28T12:53:42Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Hydra
Provenance: commit 22adfb5a48 · authored 2026-02-28T13:54:13+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)
LLM (this repo) · 1

Related languages

Hydra (0.29)Ponder (0.17)Lavender (0.15)Pizza (0.12)Sunder (0.12)

LLM-contributed programs

Invert Kernel

Provenance: commit 22adfb5a48 · authored 2026-02-28T13:54:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.pbk · added: 2026-02-28T12:53:42Z
<languageVersion : 1.0;>

kernel Invert
<
    namespace : "Pixel Bender Shaders";
    vendor : "Adobe Systems";
    version : 1;
    description : "Inverts image colors.";
>
{
    input image4 source;
    output pixel4 dst;

    parameter float strength
    <
        minValue: 0.0;
        maxValue: 1.0;
        defaultValue: 1.0;
    >;

    void evaluatePixel()
    {
        float4 inputColor = sampleNearest(source, outCoord());
        float4 inverted = float4(1.0 - inputColor.rgb, inputColor.a);
        dst = mix(inputColor, inverted, strength);
    }
}

Contribute — propose a file extension

Tell us where to find evidence about Pixel Bender (mapped to pl/pixel_bender). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Pixel Bender/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← PIX PixelCode →