()
| 2209 | |
| 2210 | |
| 2211 | protected boolean hasFboMultisampleSupport() { |
| 2212 | int major = getGLVersion()[0]; |
| 2213 | if (major < 3) { |
| 2214 | String ext = getString(EXTENSIONS); |
| 2215 | return -1 < ext.indexOf("_framebuffer_multisample"); |
| 2216 | } else { |
| 2217 | return true; |
| 2218 | } |
| 2219 | } |
| 2220 | |
| 2221 | |
| 2222 | protected boolean hasPackedDepthStencilSupport() { |
no test coverage detected