jbernabeu I notice that whenever I use the filter property it looks like that filter is calculated everytime or the draw actions grow too much. Is there any way to make the blur and "flatten" the image so it is converted into a normal image ???
Shilo You can cache the fragment filter which optimizes rendering. http://doc.sparrow-framework.org/v2/Classes/SPFragmentFilter.html#//api/name/cache
jbernabeu Hi Shilo, Thanks a lot !!! I think that would be the solution. Does you have any example ??? Thanks again in advance 😉
Daniel Exactly, Shilo is right! Just call the "cache" method on your filter, e.g.: SPBlurFilter *filter = ...; displayObject.filter = filter; [filter cache];