up vote 2 down vote favorite
1
share [g+] share [fb]

Is there a way in AS3 to access the last render of the stage? Is that render result cached somewhere accessible? I specifically cannot re-render the stage myself to a Bitmap because that would be far too expensive, which is why I'm trying to use the last render.

I need this because I'm trying to do some heat-distortion effects within some specific bounds of the screen, and a standard way to do that in 2D is by using a displacement map to jitter the pristine image. Of course, I'm open to other ideas to do heat distortion in Flash.

link|improve this question

67% accept rate
feedback

4 Answers

up vote 2 down vote accepted

I am pretty sure we do not have access to this (although I don't really see why). I know that flash only redraws the changes of the stage from frame to frame. You can see this by right clicking on the Flash Debug Player and selecting "Show Redraw Regions".

You could try looking at what people are doing with the Convolution Filter and the Displacement Map Filter. Here are some examples:

There examples seem to work fine, with good speeds, although they have quite small stage sizes.

link|improve this answer
feedback

I'm 99.9% sure you can't. I've never come across any mention of that before. Would be a great feature though. Sorry, I know that's not particularly helpful.

link|improve this answer
feedback

You cannot acces the raster, but there's a workaround.

Instead of having your application Sprite (or MovieClip) sit on the stage, draw your application sprite onto a bitmap and place that on the stage. This way you render only once, but can access the bitmap from the last render.

The downside is that that Flash renders all of your application sprite each frame (not just the dirty rectangles).

link|improve this answer
+1, I was afraid of that, unfortunately pre-rendering isn't a good option for my situation (very performance conscious). – Not Sure Jun 4 '09 at 20:32
feedback

If you don't mind requiring Flash Player 10 you could try a custom Pixel Bender filter attached to the stage or DisplayObject you want to distort.

However if Flash creates a cache bitmap under the covers like it does for the standard filters then performance won't be any better than creating your own bitmap.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.