|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019
|
|
|
|
|
Vladimír Vondruš <mosra@centrum.cz>
|
|
|
|
|
|
|
|
|
|
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 <algorithm>
|
|
|
|
|
|
|
|
|
|
#include "Magnum/GL/Context.h"
|
|
|
|
|
#include "Magnum/GL/Extensions.h"
|
|
|
|
|
#include "Magnum/GL/OpenGLTester.h"
|
|
|
|
|
|
|
|
|
|
#ifndef CORRADE_TARGET_EMSCRIPTEN
|
|
|
|
|
#include <thread>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace GL { namespace Test { namespace {
|
|
|
|
|
|
|
|
|
|
struct ContextGLTest: OpenGLTester {
|
|
|
|
|
explicit ContextGLTest();
|
|
|
|
|
|
|
|
|
|
#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({
|
|
|
|
|
#ifndef CORRADE_TARGET_EMSCRIPTEN
|
|
|
|
|
&ContextGLTest::multithreaded,
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
&ContextGLTest::isVersionSupported,
|
|
|
|
|
#ifndef MAGNUM_TARGET_GLES
|
|
|
|
|
&ContextGLTest::isVersionSupportedES,
|
|
|
|
|
#endif
|
|
|
|
|
&ContextGLTest::supportedVersion,
|
|
|
|
|
&ContextGLTest::isExtensionSupported,
|
|
|
|
|
&ContextGLTest::isExtensionDisabled});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef CORRADE_TARGET_EMSCRIPTEN
|
|
|
|
|
void ContextGLTest::multithreaded() {
|
|
|
|
|
CORRADE_VERIFY(Context::hasCurrent());
|
|
|
|
|
Containers::Optional<bool> otherThreadHasCurrent;
|
|
|
|
|
|
|
|
|
|
std::thread t{[](Containers::Optional<bool>& 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<Extensions::ARB::ES2_compatibility>())
|
|
|
|
|
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<Extensions::GREMEDY::string_marker>())
|
|
|
|
|
CORRADE_SKIP(Extensions::GREMEDY::string_marker::string() + std::string(" extension should not be supported, can't test"));
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::EXT::texture_filter_anisotropic>())
|
|
|
|
|
CORRADE_SKIP(Extensions::EXT::texture_filter_anisotropic::string() + std::string(" extension should be supported, can't test"));
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::explicit_attrib_location>())
|
|
|
|
|
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<std::string> 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<Extensions::ARB::explicit_attrib_location>(Version::GL310));
|
|
|
|
|
CORRADE_VERIFY(Context::current().isExtensionSupported<Extensions::ARB::explicit_attrib_location>(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<Extensions::ARB::vertex_array_object>())
|
|
|
|
|
CORRADE_SKIP(Extensions::ARB::vertex_array_object::string() + std::string(" extension should be supported, can't test"));
|
|
|
|
|
|
|
|
|
|
if(!Context::current().isExtensionSupported<Extensions::ARB::explicit_attrib_location>())
|
|
|
|
|
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<Extensions::ARB::vertex_array_object>());
|
|
|
|
|
|
|
|
|
|
/* This is disabled in GL < 3.2 to work around GLSL compiler bugs */
|
|
|
|
|
CORRADE_VERIFY(Context::current().isExtensionDisabled<Extensions::ARB::explicit_attrib_location>(Version::GL310));
|
|
|
|
|
CORRADE_VERIFY(!Context::current().isExtensionDisabled<Extensions::ARB::explicit_attrib_location>(Version::GL320));
|
|
|
|
|
#else
|
|
|
|
|
CORRADE_SKIP("No useful extensions to test on OpenGL ES");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}}}}
|
|
|
|
|
|
|
|
|
|
CORRADE_TEST_MAIN(Magnum::GL::Test::ContextGLTest)
|