Skip to main content

Pixel Bender Toolkit Jun 2026

Distortions don't change color; they change the pixel is sampled from.

The heart of the toolkit was its kernel language, which was based on the . It was designed to be a loosely typed version of C++ that focused on manipulating individual pixels in a parallelized, hardware-independent manner. pixel bender toolkit

// Perform the math: Mix original color with tint color // mix(x, y, a) returns x * (1-a) + y * a dst.rgb = mix(srcColor.rgb, tintColor, amount); Distortions don't change color; they change the pixel