diff --git a/src/Platform/WindowlessNaClApplication.cpp b/src/Platform/WindowlessNaClApplication.cpp index 84c695b55..a890b2c91 100644 --- a/src/Platform/WindowlessNaClApplication.cpp +++ b/src/Platform/WindowlessNaClApplication.cpp @@ -67,7 +67,7 @@ void WindowlessNaClApplication::createContext(Configuration* configuration) { } else delete configuration; } -bool WindowlessNaClApplication::tryCreateContext(Configuration* configuration) { +bool WindowlessNaClApplication::tryCreateContext(Configuration*) { CORRADE_ASSERT(!c, "Platform::WindowlessNaClApplication::tryCreateContext(): context already created", false); const std::int32_t attributes[] = { diff --git a/src/SceneGraph/MatrixTransformation2D.h b/src/SceneGraph/MatrixTransformation2D.h index 81d317b3b..72f266811 100644 --- a/src/SceneGraph/MatrixTransformation2D.h +++ b/src/SceneGraph/MatrixTransformation2D.h @@ -177,6 +177,13 @@ template class BasicMatrixTransformation2D: public AbstractBasicTransla template inline BasicMatrixTransformation2D::BasicMatrixTransformation2D() = default; +/** +@brief Two-dimensional transformation for float scenes implemented using matrices + +@see @ref MatrixTransformation3D +*/ +typedef BasicMatrixTransformation2D MatrixTransformation2D; + }} #endif diff --git a/src/SceneGraph/RigidMatrixTransformation2D.h b/src/SceneGraph/RigidMatrixTransformation2D.h index 4df999783..475ec7b2b 100644 --- a/src/SceneGraph/RigidMatrixTransformation2D.h +++ b/src/SceneGraph/RigidMatrixTransformation2D.h @@ -210,6 +210,13 @@ template class BasicRigidMatrixTransformation2D: public AbstractBasicTr template inline BasicRigidMatrixTransformation2D::BasicRigidMatrixTransformation2D() = default; +/** +@brief Two-dimensional rigid transformation for float scenes implemented using matrices + +@see @ref RigidMatrixTransformation3D +*/ +typedef BasicRigidMatrixTransformation2D RigidMatrixTransformation2D; + }} #endif