Simple post processing effect to blur image. Shader code

It leverages a common digital image transformation called “filtering” with 3x3 kernel (or mask). Below is an image with a simple bluring using kernel:

new [
    1, 1, 1,
    1, 1, 1,
    1, 1, 1
]

Use slider to shift comparsion divider: