How would it possible to make an actor apply an effect on what's behind itself in Clutter ?
For example it could be a blur effect and we'd have something like this :
It is possible to add a ClutterEffect
to an Actor but this will apply to the actor's content not what's behind it.
I could use this tutorial in order to draw a blurry background for my actor, but I would still need access to the rendered pixel data of what's behind my actor to apply blur on it.
(This is the same question as here but I coudn't find any answer)