Blur effects with jit.gl.gridshape
hi, I am trying to apply some blur effect to simple shapes created with gridshape. Ive found some examples in the examples jitter folder but i can
t find the way to use it with gridshape. I guess that the answer its around jit.matrix but affter a lot of time trying to handle it, I could
nt find the solution.
THanks!!!
Mikosmos
Hi Mikosmos,
It is not possible to apply a blur effect directly on a GL shape. A GL object creates vertices in the space and apply textures on them. But as far as I know if you want to apply a blur effect (a kind of matrix/pixel effect) then you have to capture the image as matrix first (try jit.gl.asyncread) and apply the blur effect afterwards.
Thanks!!
!!