()
| 2220 | |
| 2221 | |
| 2222 | protected boolean hasPackedDepthStencilSupport() { |
| 2223 | int major = getGLVersion()[0]; |
| 2224 | if (major < 3) { |
| 2225 | String ext = getString(EXTENSIONS); |
| 2226 | return -1 < ext.indexOf("_packed_depth_stencil"); |
| 2227 | } else { |
| 2228 | return true; |
| 2229 | } |
| 2230 | } |
| 2231 | |
| 2232 | |
| 2233 | protected boolean hasAnisoSamplingSupport() { |
no test coverage detected