hello
i am drawing a 3d scene with lighting, and i would like to pixelate the entire canvas to give it a low-resolution or mosaic effect. i started experimenting with shaders, but i was finding that i have to reconstruct all my lighting effects from scratch, and everything else was getting very complex (i.e. interactions between the 3d shapes in my scene).
is there an easier way to do what i'm trying to do, i.e. something like "render entire scene to off-canvas buffer ---> pixelate image by iterating through off-canvas buffer ---> draw off-canvas buffer to canvas"? my canvas already looks exactly like i want it to, i just want to make the entire thing a little lower resolution.
thanks.