| 279 | } |
| 280 | |
| 281 | bool isCoreProfile() |
| 282 | { |
| 283 | if (version()<glbinding::Version(3,2)) |
| 284 | { |
| 285 | return false; |
| 286 | } |
| 287 | |
| 288 | return (getInteger(GL_CONTEXT_PROFILE_MASK) & static_cast<unsigned>(GL_CONTEXT_CORE_PROFILE_BIT)) > 0; |
| 289 | } |
| 290 | |
| 291 | const std::set<GLextension> & availableExtensions() |
| 292 | { |
nothing calls this directly
no test coverage detected