What is the name of a Filter which filters in a 4x4 region. Adding up all values of the pixels , then dividing it by 16. Is this a gaussian filter?
Pseudo Code
for (int i = -2; i < 2; ++i) {
for (int j = -2; j < 2; ++j) {
result += Texture2D(texture,ij).rgb;
}
}
result *= 0.0625 ;