1.1. Filter Chain - og2t/HiSlope GitHub Wiki

Filter Chain is the main core of HiSlope.

const DEBUG:Boolean = true;
var filterChain:FilterChain = new FilterChain("Sample Chain", 400, 300, DEBUG);
addChild(filterChain);

You can specify any dimensions for processed bitmap data, although setting more than 640x480 might kill your processor. When DEBUG is enabled, it will show all the Filter Panels, setting it to false won't even generate them so your chain will ultimately run faster.