()
| 2181 | |
| 2182 | |
| 2183 | protected boolean hasNpotTexSupport() { |
| 2184 | int major = getGLVersion()[0]; |
| 2185 | if (major < 3) { |
| 2186 | String ext = getString(EXTENSIONS); |
| 2187 | if (isES()) { |
| 2188 | return -1 < ext.indexOf("_texture_npot"); |
| 2189 | } else { |
| 2190 | return -1 < ext.indexOf("_texture_non_power_of_two"); |
| 2191 | } |
| 2192 | } else { |
| 2193 | return true; |
| 2194 | } |
| 2195 | } |
| 2196 | |
| 2197 | |
| 2198 | protected boolean hasAutoMipmapGenSupport() { |
no test coverage detected