/* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 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 #include "Magnum/GL/Context.h" #include "Magnum/GL/Extensions.h" #include "Magnum/GL/OpenGLTester.h" #include "Magnum/Platform/GLContext.h" #ifndef CORRADE_TARGET_EMSCRIPTEN #include #endif namespace Magnum { namespace GL { namespace Test { namespace { struct ContextGLTest: OpenGLTester { explicit ContextGLTest(); void makeCurrent(); #ifndef CORRADE_TARGET_EMSCRIPTEN void multithreaded(); #endif void isVersionSupported(); #ifndef MAGNUM_TARGET_GLES void isVersionSupportedES(); #endif void supportedVersion(); void isExtensionSupported(); void isExtensionDisabled(); }; ContextGLTest::ContextGLTest() { addTests({ &ContextGLTest::makeCurrent, #ifndef CORRADE_TARGET_EMSCRIPTEN &ContextGLTest::multithreaded, #endif &ContextGLTest::isVersionSupported, #ifndef MAGNUM_TARGET_GLES &ContextGLTest::isVersionSupportedES, #endif &ContextGLTest::supportedVersion, &ContextGLTest::isExtensionSupported, &ContextGLTest::isExtensionDisabled}); } void ContextGLTest::makeCurrent() { CORRADE_VERIFY(Context::hasCurrent()); Context& current = Context::current(); Context::makeCurrent(nullptr); CORRADE_VERIFY(!Context::hasCurrent()); { const char* argv[]{"", "--magnum-log", "off"}; Platform::GLContext ctx{Int(Containers::arraySize(argv)), argv}; CORRADE_VERIFY(Context::hasCurrent()); } CORRADE_VERIFY(!Context::hasCurrent()); Context::makeCurrent(¤t); CORRADE_VERIFY(Context::hasCurrent()); CORRADE_COMPARE(&Context::current(), ¤t); } #ifndef CORRADE_TARGET_EMSCRIPTEN void ContextGLTest::multithreaded() { CORRADE_VERIFY(Context::hasCurrent()); Containers::Optional otherThreadHasCurrent; std::thread t{[](Containers::Optional& hasCurrent) { hasCurrent = Context::hasCurrent(); }, std::ref(otherThreadHasCurrent)}; t.join(); CORRADE_VERIFY(otherThreadHasCurrent); Debug{} << "CORRADE_BUILD_MULTITHREADED defined:" << #ifdef CORRADE_BUILD_MULTITHREADED true #else false #endif ; Debug{} << "Current context visible in another thread:" << *otherThreadHasCurrent; #ifdef CORRADE_BUILD_MULTITHREADED CORRADE_VERIFY(!*otherThreadHasCurrent); #else CORRADE_VERIFY(*otherThreadHasCurrent); #endif } #endif void ContextGLTest::isVersionSupported() { const Version v = Context::current().version(); CORRADE_VERIFY(Context::current().isVersionSupported(v)); CORRADE_VERIFY(Context::current().isVersionSupported(Version(Int(v)-1))); CORRADE_VERIFY(!Context::current().isVersionSupported(Version(Int(v)+1))); /* No assertions should be fired */ MAGNUM_ASSERT_GL_VERSION_SUPPORTED(v); MAGNUM_ASSERT_GL_VERSION_SUPPORTED(Version(Int(v)-1)); } #ifndef MAGNUM_TARGET_GLES void ContextGLTest::isVersionSupportedES() { if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::ARB::ES2_compatibility::string() + std::string(" extension should not be supported, can't test")); /* No assertions should be fired */ CORRADE_VERIFY(Context::current().isVersionSupported(Version::GLES200)); } #endif void ContextGLTest::supportedVersion() { const Version v = Context::current().version(); /* Selects first supported version (thus not necessarily the highest) */ CORRADE_VERIFY(Context::current().supportedVersion({Version(Int(v)+1), v, Version(Int(v)-1)}) == v); CORRADE_VERIFY(Context::current().supportedVersion({Version(Int(v)+1), Version(Int(v)-1), v}) == Version(Int(v)-1)); } void ContextGLTest::isExtensionSupported() { #ifndef MAGNUM_TARGET_GLES if(Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::GREMEDY::string_marker::string() + std::string(" extension should not be supported, can't test")); if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::EXT::texture_filter_anisotropic::string() + std::string(" extension should be supported, can't test")); if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::ARB::explicit_attrib_location::string() + std::string(" extension should be supported, can't test")); /* Test that we have proper extension list parser */ std::vector extensions = Context::current().extensionStrings(); CORRADE_VERIFY(std::find(extensions.begin(), extensions.end(), Extensions::EXT::texture_filter_anisotropic::string()) != extensions.end()); CORRADE_VERIFY(std::find(extensions.begin(), extensions.end(), Extensions::GREMEDY::string_marker::string()) == extensions.end()); /* This is disabled in GL < 3.2 to work around GLSL compiler bugs */ CORRADE_VERIFY(!Context::current().isExtensionSupported(Version::GL310)); CORRADE_VERIFY(Context::current().isExtensionSupported(Version::GL320)); #else CORRADE_SKIP("No useful extensions to test on OpenGL ES"); #endif } void ContextGLTest::isExtensionDisabled() { #ifndef MAGNUM_TARGET_GLES if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::ARB::vertex_array_object::string() + std::string(" extension should be supported, can't test")); if(!Context::current().isExtensionSupported()) CORRADE_SKIP(Extensions::ARB::explicit_attrib_location::string() + std::string(" extension should be supported, can't test")); /* This is not disabled anywhere */ CORRADE_VERIFY(!Context::current().isExtensionDisabled()); /* This is disabled in GL < 3.2 to work around GLSL compiler bugs */ CORRADE_VERIFY(Context::current().isExtensionDisabled(Version::GL310)); CORRADE_VERIFY(!Context::current().isExtensionDisabled(Version::GL320)); #else CORRADE_SKIP("No useful extensions to test on OpenGL ES"); #endif } }}}} CORRADE_TEST_MAIN(Magnum::GL::Test::ContextGLTest)