Glich effect

edited May 2016 in GLSL / Shaders

I was wondering how can I get this effect using processing. http://adamferriss.com/gifs/camGif.gif

Do I need shaders?

Thank you

Answers

  • no

    that looks like it's just picking a random pixel from an image and drawing a line of the same colour. easily enough dine using get() and stroke() and line()

    (would actually be difficult using a vert shader, i think, as vert shaders aren't usually aware of their neighbours, because everything is done in parallel)

Sign In or Register to comment.