()
| 2217 | |
| 2218 | |
| 2219 | protected boolean hasNpotTexSupport() { |
| 2220 | int major = getGLVersion()[0]; |
| 2221 | if (major < 3) { |
| 2222 | String ext = getString(EXTENSIONS); |
| 2223 | if (isES()) { |
| 2224 | return ext.contains("_texture_npot"); |
| 2225 | } else { |
| 2226 | return ext.contains("_texture_non_power_of_two"); |
| 2227 | } |
| 2228 | } else { |
| 2229 | return true; |
| 2230 | } |
| 2231 | } |
| 2232 | |
| 2233 | |
| 2234 | protected boolean hasAutoMipmapGenSupport() { |
no test coverage detected