I have a 32 bit 64x64 PNG image which shows some different coloured shapes:
When I display this image at a larger size in a browser, the shapes start to get fuzzy outlines:
This is a problem, because when I try to replace a particular color using a shader, the fuzzy pixels do not match the color I am trying to replace. For example here I want to swap red for white pixels, but I am still getting a red outline:
My shader in this example is a fragment shader doing a straight pixel swap:
<script id="fragmentShader" type="x-shader/x-fragment">
uniform sampler2D texture1;
varying vec2 vUv;
void main() {
vec4 tColor = texture2D( texture1, vUv );
vec4 maskColor = vec4(1.0, 0.0, 0.0, 1.0);
vec4 newColor = vec4(0.0, 1.0, 0.0, 0.5);
if (tColor.rgb == maskColor.rgb){
gl_FragColor = newColor;
}
else {
gl_FragColor = tColor;
}
}
</script>
How can I avoid this pixelation of my image? Whats confusing is if I zoom into the original image in Paint .Net, the borders around the shapes appear to be perfect with no pixelation / fuzziness / blurriness:
What am I missing?
This can easily be solved with filtering your texture :
magFilter
,minFilter
andanisotropy
.And this post will solve your problem.
Demo on this fiddle. Commenting out the texture filtering will bring back the fuzzy borders.