From e4fc418db120eabbbd66e4d9fb76601974b3141e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 20 Jan 2013 16:27:48 +0100 Subject: [PATCH] Properly specify pointers for all matrix attribute columns. Really need some tests for that. --- src/Mesh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mesh.h b/src/Mesh.h index dafef3a6e..39dc43f11 100644 --- a/src/Mesh.h +++ b/src/Mesh.h @@ -660,9 +660,9 @@ class MAGNUM_EXPORT Mesh { offset, stride }); - } - (this->*attributePointerImplementation)(attributes.back()); + (this->*attributePointerImplementation)(attributes.back()); + } } #ifndef MAGNUM_TARGET_GLES2