()
| 2245 | |
| 2246 | |
| 2247 | protected boolean hasFboMultisampleSupport() { |
| 2248 | int major = getGLVersion()[0]; |
| 2249 | if (major < 3) { |
| 2250 | String ext = getString(EXTENSIONS); |
| 2251 | return ext.contains("_framebuffer_multisample"); |
| 2252 | } else { |
| 2253 | return true; |
| 2254 | } |
| 2255 | } |
| 2256 | |
| 2257 | |
| 2258 | protected boolean hasPackedDepthStencilSupport() { |
no test coverage detected