/* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014 Vladimír Vondruš Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "DebugMessage.h" #include #include "Magnum/Context.h" #include "Magnum/Extensions.h" #include "Magnum/Implementation/State.h" #include "Magnum/Implementation/DebugState.h" namespace Magnum { namespace { /** @todo Re-enable when extension wrangler is available for ES */ #ifndef MAGNUM_TARGET_GLES #ifdef CORRADE_TARGET_WINDOWS APIENTRY #endif void callbackWrapper(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar* message, const void* userParam) { Context::current()->state().debug->messageCallback(DebugMessage::Source(source), DebugMessage::Type(type), id, DebugMessage::Severity(severity), std::string(message, length), userParam); } #endif void defaultCallback(const DebugMessage::Source source, const DebugMessage::Type type, const UnsignedInt id, const DebugMessage::Severity severity, const std::string& string, const void*) { switch(severity) { case DebugMessage::Severity::High: Error() << source << type << id << severity << "\n " << string; break; case DebugMessage::Severity::Medium: case DebugMessage::Severity::Low: Warning() << source << type << id << severity << "\n " << string; break; default: Debug() << source << type << id << severity << "\n " << string; } } } Int DebugMessage::maxLoggedMessages() { if(!Context::current()->isExtensionSupported()) return 0; GLint& value = Context::current()->state().debug->maxLoggedMessages; if(value == 0) { #ifndef MAGNUM_TARGET_GLES glGetIntegerv(GL_MAX_DEBUG_LOGGED_MESSAGES, &value); #else glGetIntegerv(GL_MAX_DEBUG_LOGGED_MESSAGES_KHR, &value); #endif } return value; } Int DebugMessage::maxMessageLength() { if(!Context::current()->isExtensionSupported()) return 0; GLint& value = Context::current()->state().debug->maxMessageLength; if(value == 0) { #ifndef MAGNUM_TARGET_GLES glGetIntegerv(GL_MAX_DEBUG_MESSAGE_LENGTH, &value); #else glGetIntegerv(GL_MAX_DEBUG_MESSAGE_LENGTH_KHR, &value); #endif } return value; } void DebugMessage::insert(const Source source, const Type type, const UnsignedInt id, const Severity severity, const std::string& string) { Context::current()->state().debug->messageInsertImplementation(source, type, id, severity, string); } void DebugMessage::setCallback(const Callback callback, const void* userParam) { Context::current()->state().debug->messageCallbackImplementation(callback, userParam); } void DebugMessage::setDefaultCallback() { setCallback(defaultCallback, nullptr); } void DebugMessage::insertImplementationNoOp(Source, Type, UnsignedInt, Severity, const std::string&) {} void DebugMessage::insertImplementationKhr(const Source source, const Type type, const UnsignedInt id, const Severity severity, const std::string& string) { /** @todo Re-enable when extension wrangler is available for ES */ #ifndef MAGNUM_TARGET_GLES glDebugMessageInsert(GLenum(source), GLenum(type), id, GLenum(severity), string.size(), string.data()); #else static_cast(source); static_cast(type); static_cast(id); static_cast(severity); static_cast(string); CORRADE_INTERNAL_ASSERT(false); //glDebugMessageInsertEXT(GLenum(source), GLenum(type), id, GLenum(severity), string.size(), string.data()); #endif } void DebugMessage::insertImplementationExt(Source, Type, UnsignedInt, Severity, const std::string& string) { /** @todo Re-enable when extension wrangler is available for ES */ #ifndef MAGNUM_TARGET_GLES glInsertEventMarkerEXT(string.size(), string.data()); #else static_cast(string); CORRADE_INTERNAL_ASSERT(false); #endif } #ifndef MAGNUM_TARGET_GLES void DebugMessage::insertImplementationGremedy(Source, Type, UnsignedInt, Severity, const std::string& string) { glStringMarkerGREMEDY(string.length(), string.data()); } #endif void DebugMessage::callbackImplementationNoOp(Callback, const void*) {} void DebugMessage::callbackImplementationKhr(const Callback callback, const void* userParam) { /* Replace the callback */ const Callback original = Context::current()->state().debug->messageCallback; Context::current()->state().debug->messageCallback = callback; /* Adding callback */ if(!original && callback) { /** @todo Re-enable when extension wrangler is available for ES */ #ifndef MAGNUM_TARGET_GLES glDebugMessageCallback(callbackWrapper, userParam); #else static_cast(userParam); CORRADE_INTERNAL_ASSERT(false); //glDebugMessageCallbackEXT(callbackWrapper, userParam); #endif /* Deleting callback */ } else if(original && !callback) { /** @todo Re-enable when extension wrangler is available for ES */ #ifndef MAGNUM_TARGET_GLES glDebugMessageCallback(nullptr, nullptr); #else CORRADE_INTERNAL_ASSERT(false); //glDebugMessageCallbackEXT(nullptr, nullptr); #endif } } #ifndef DOXYGEN_GENERATING_OUTPUT Debug operator<<(Debug debug, const DebugMessage::Source value) { switch(value) { #define _c(value) case DebugMessage::Source::value: return debug << "DebugMessage::Source::" #value; _c(Api) _c(WindowSystem) _c(ShaderCompiler) _c(ThirdParty) _c(Application) _c(Other) #undef _c } return debug << "DebugMessage::Source::(invalid)"; } Debug operator<<(Debug debug, const DebugMessage::Type value) { switch(value) { #define _c(value) case DebugMessage::Type::value: return debug << "DebugMessage::Type::" #value; _c(Error) _c(DeprecatedBehavior) _c(UndefinedBehavior) _c(Portability) _c(Performance) _c(Other) _c(Marker) #undef _c } return debug << "DebugMessage::Type::(invalid)"; } Debug operator<<(Debug debug, const DebugMessage::Severity value) { switch(value) { #define _c(value) case DebugMessage::Severity::value: return debug << "DebugMessage::Severity::" #value; _c(High) _c(Medium) _c(Low) _c(Notification) #undef _c } return debug << "DebugMessage::Severity::(invalid)"; } #endif }