GLSL efficiency issues about different sizes of texture
I have no html5 experience, but with OpenGL I would expect performance to be unaffected by texture size, on condition that you are using mipmaps. Have you generated and enabled mipmaps for the 2048x2048 texture?
I have no html5 experience, but with OpenGL I would expect performance to be unaffected by texture size, on condition that you are using mipmaps. Have you generated and enabled mipmaps for the 2048x2048 texture?
No, we haven't(generated or enabled). All textures are level 0.
I have no html5 experience, but with OpenGL I would expect performance to be unaffected by texture size, on condition that you are using mipmaps.
This^^
Without mip-maps, then if you're displaying a 2048 texture at a size of 128 pixels, then you're only using 1/16th of the data in each axis (or 1/256th of the data in total).
the GPU has to read 1 texel, skip 15 texels, read 1 texel, skip 15 texels....
This is really bad for cache coherency. The GPU is not built to read lots of small pieces of individual data -- it much prefers to read large pieces of data. When it is asked to read one single texel from RAM, it will not just download that one single texel into the cache -- to save time, it will download (as an example, say) a 4*4 area of texels into the cache.
If you enable mip-maps, then the GPU has available to it, many versions of your texture: a 2048, a 1024, a 512 etc, etc...
In this case, the GPU will instead choose to use the 128 sized mipmap, and it will regain cache efficiency.
. 22 Racing Series .
I have no html5 experience, but with OpenGL I would expect performance to be unaffected by texture size, on condition that you are using mipmaps.
This^^
Without mip-maps, then if you're displaying a 2048 texture at a size of 128 pixels, then you're only using 1/16th of the data in each axis (or 1/256th of the data in total).
the GPU has to read 1 texel, skip 15 texels, read 1 texel, skip 15 texels....
This is really bad for cache coherency. The GPU is not built to read lots of small pieces of individual data -- it much prefers to read large pieces of data. When it is asked to read one single texel from RAM, it will not just download that one single texel into the cache -- to save time, it will download (as an example, say) a 4*4 area of texels into the cache.
If you enable mip-maps, then the GPU has available to it, many versions of your texture: a 2048, a 1024, a 512 etc, etc...
In this case, the GPU will instead choose to use the 128 sized mipmap, and it will regain cache efficiency.
And it'll look better too.
Mipmaps are great. Massive performance boost+major visual quality improvement all for the cost of just 33% more memory than the unmipped texture.
I have no html5 experience, but with OpenGL I would expect performance to be unaffected by texture size, on condition that you are using mipmaps.
This^^
Without mip-maps, then if you're displaying a 2048 texture at a size of 128 pixels, then you're only using 1/16th of the data in each axis (or 1/256th of the data in total).
the GPU has to read 1 texel, skip 15 texels, read 1 texel, skip 15 texels....
This is really bad for cache coherency. The GPU is not built to read lots of small pieces of individual data -- it much prefers to read large pieces of data. When it is asked to read one single texel from RAM, it will not just download that one single texel into the cache -- to save time, it will download (as an example, say) a 4*4 area of texels into the cache.
If you enable mip-maps, then the GPU has available to it, many versions of your texture: a 2048, a 1024, a 512 etc, etc...
In this case, the GPU will instead choose to use the 128 sized mipmap, and it will regain cache efficiency.
thank you for your help!However, we are using this only in 2D games, not 3D. We just make the full clip(u,v,x,y) of 2048 texture and scaled it in 128.Knowing that 2048 texture should be less efficient than 128, but the difference is too big. We think it is something special only in WebGL, but not for sure~