| 3526 | } |
| 3527 | |
| 3528 | void GL3PlusRenderSystem::beginProfileEvent( const String &eventName ) |
| 3529 | { |
| 3530 | markProfileEvent( "Begin Event: " + eventName ); |
| 3531 | if( mHasGL43 || mGLSupport->checkExtension( "ARB_debug_group" ) ) |
| 3532 | { |
| 3533 | OCGE( glPushDebugGroup( GL_DEBUG_SOURCE_THIRD_PARTY, 0, |
| 3534 | static_cast<GLint>( eventName.length() ), eventName.c_str() ) ); |
| 3535 | } |
| 3536 | } |
| 3537 | |
| 3538 | void GL3PlusRenderSystem::endProfileEvent() |
| 3539 | { |
nothing calls this directly
no test coverage detected