You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I implemented the surf engine in flash/AS3 :
public var surf:ASSURF;
public var surfOptions:SURFOptions;
surfOptions = new SURFOptions(capture_sp.width, capture_sp, 200, 0.003, true,
4, 4, 2);
surf = new ASSURF(surfOptions);
and then destroy it on button click :
surf.destroy();
but memory is never released....
Is there a trick to completely freeing memory ?
thanks.
Original issue reported on code.google.com by [email protected] on 16 Jun 2010 at 1:20
The text was updated successfully, but these errors were encountered:
Unfortunately you cant release all the allocated memory.
by calling destroy - you clear all the memory allocated inside ASSURF (all
inner buffers) but you can;t clear Alchemy static memory.
Original issue reported on code.google.com by
[email protected]
on 16 Jun 2010 at 1:20The text was updated successfully, but these errors were encountered: