At 11/7/11 04:43 PM, PSvils wrote: Have you tried BitmapData.lock()? Basically prevents any relevant Bitmap objects of updating themselves until you call BitmapData.unlock().
Always :D
Also, lots of ColorMatrixFilter operations can be either preprocessed, and then copyPixeling the desired stuff, or sped up using different operations. I recommend you look into BitmapData.paletteMap(), since that thing is FAST, like ZING, immediate, and it can work WONDERS. That combined with copyPixels() is almost all anyone needs...Except for blurring of course, haven't found any faster alternatives for that yet.
I'll look into paletteMap(), I've seen it a few times before but I've never really played around with it. Thanks!