From 67dbdd4b00aa11ac3aa1892a9adb82a34d72857b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 9 Nov 2012 22:30:34 +0100 Subject: [PATCH] Fixed compiler warning when compiling with OpenGL ES support. --- src/AbstractTexture.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AbstractTexture.h b/src/AbstractTexture.h index 27b1895eb..35abf4823 100644 --- a/src/AbstractTexture.h +++ b/src/AbstractTexture.h @@ -232,9 +232,11 @@ class MAGNUM_EXPORT AbstractTexture { * are converted to range @f$ [-1.0; 1.0] @f$. * @requires_gl31 Extension @extension{EXT,texture_snorm} */ - NormalizedByte, + NormalizedByte #ifndef MAGNUM_TARGET_GLES + , + /** * Normalized unsigned short, i.e. values from range @f$ [0; 65536] @f$ * are converted to range @f$ [0.0; 1.0] @f$.