How to create lower resolution (sampled) post effect?

How does one create a subsampled fragment shader for a post effect? So the screen is reduced to like a 1/4 or 1/9 to save processing time, processed, and then rendered full screen (as little squares instead of perfect pixels)?

I can achieve this blitting the screen to a rendertexture and back again after processing. Is that the correct way?