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)
Related languages
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
<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);
}
}