Is There Any Android Device With Screen Size Greater Than GL_MAX_TEXTURE_SIZE?
I've been searching through glbenchmark.com for a device with screen size (width or height) greater than GL_MAX_TEXTURE_SIZE. I've found over a hundred devices with GL_MAX_VIEWPORT
Solution 1:
You can be sure that GL_MAX_TEXTURE_SIZE will be always bigger or equal to the screen size (SurfaceFlinger requires this)
Solution 2:
Maybe with newest devices with screen sizes over 2k pixels wide you may find that, but hardware vendors would not put a mobile GPU that is not capable of doing offscreen rendering to a texture target because the max texture size is smaller than the device screen. For old devices with smaller GL_MAX_TEXTURE_SIZE, the screen were also smaller than 1024x1024.
Post a Comment for "Is There Any Android Device With Screen Size Greater Than GL_MAX_TEXTURE_SIZE?"