diff --git a/src/Magnum/SceneGraph/SceneGraph.h b/src/Magnum/SceneGraph/SceneGraph.h index 969117f2e..7acc96543 100644 --- a/src/Magnum/SceneGraph/SceneGraph.h +++ b/src/Magnum/SceneGraph/SceneGraph.h @@ -157,6 +157,9 @@ template using BasicDrawable2D = Drawable<2, T>; template using BasicDrawable3D = Drawable<3, T>; typedef BasicDrawable2D Drawable2D; typedef BasicDrawable3D Drawable3D; +#else +typedef Drawable<2, Float> Drawable2D; +typedef Drawable<3, Float> Drawable3D; #endif template class BasicDualComplexTransformation;