Blur effects with jit.gl.gridshape

mikosmos's icon

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 cant 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 couldnt find the solution.

THanks!!!

Mikosmos

glBeatriz's icon

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.

mikosmos's icon

Thanks!!
!!