This example takes an image and applies a color tint.
Pixel Bender filters could be imported into Flash projects as byte code ( .pbj files) to add GPU effects to Flash games and apps. pixel bender toolkit
"Echoes of Eridu"
During its peak between 2008 and 2012, the Pixel Bender Toolkit was a staple for advanced digital creators. Pixel Bender | Springer Nature Link This example takes an image and applies a color tint
// Contrast float contrast = 1.5; // Formula: (color - 0.5) * contrast + 0.5 + brightness dst.rgb = (src.rgb - 0.5) * contrast + 0.5 + brightness; dst.a = src.a; dst.a = src.a