I had the same problem with the video texture. What you need to do is to avoid using mipmaps when the texture is not power 2, which are enabled by default:
_tmpTex.generateMipmaps = false; _tmpTex.minFilter = THREE.LinearFilter; _tmpTex.magFilter = THREE.LinearFilter;
Darkob
source share