From 82ba2a069cc5b84444ddc734dab61cf2d6d64f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 21 Oct 2018 12:23:39 +0200 Subject: [PATCH] GL: also name the parameters properly. What the heck, really. --- src/Magnum/GL/Mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/GL/Mesh.h b/src/Magnum/GL/Mesh.h index 56cce077b..01a094e2d 100644 --- a/src/Magnum/GL/Mesh.h +++ b/src/Magnum/GL/Mesh.h @@ -141,7 +141,7 @@ enum class MeshPrimitive: GLenum { @see @ref meshIndexType() */ -MAGNUM_GL_EXPORT MeshPrimitive meshPrimitive(Magnum::MeshPrimitive); +MAGNUM_GL_EXPORT MeshPrimitive meshPrimitive(Magnum::MeshPrimitive primitive); /** @brief Index type @@ -169,7 +169,7 @@ enum class MeshIndexType: GLenum { @see @ref meshPrimitive(), @ref meshIndexTypeSize() */ -MAGNUM_GL_EXPORT MeshIndexType meshIndexType(Magnum::MeshIndexType); +MAGNUM_GL_EXPORT MeshIndexType meshIndexType(Magnum::MeshIndexType type); namespace Implementation { struct MeshState; }