()
| 2231 | |
| 2232 | |
| 2233 | protected boolean hasAnisoSamplingSupport() { |
| 2234 | int major = getGLVersion()[0]; |
| 2235 | if (isES() || major < 3) { |
| 2236 | String ext = getString(EXTENSIONS); |
| 2237 | return -1 < ext.indexOf("_texture_filter_anisotropic"); |
| 2238 | } else { |
| 2239 | return true; |
| 2240 | } |
| 2241 | } |
| 2242 | |
| 2243 | |
| 2244 | protected boolean hasSynchronization() { |
no test coverage detected