From b23b0a46555e3db1a4c162456b03250c66014e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 24 Jun 2013 18:59:57 +0200 Subject: [PATCH] Don't hide publicly used functions. I desperately need tests for GL functionality. --- src/AbstractTexture.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AbstractTexture.h b/src/AbstractTexture.h index 87179e638..de44bd57a 100644 --- a/src/AbstractTexture.h +++ b/src/AbstractTexture.h @@ -268,8 +268,8 @@ class MAGNUM_EXPORT AbstractTexture { void MAGNUM_LOCAL bindInternal(); #ifndef MAGNUM_TARGET_GLES - template void MAGNUM_LOCAL image(GLenum target, GLint level, Image* image); - template void MAGNUM_LOCAL image(GLenum target, GLint level, BufferImage* image, Buffer::Usage usage); + template void image(GLenum target, GLint level, Image* image); + template void image(GLenum target, GLint level, BufferImage* image, Buffer::Usage usage); #endif GLenum _target;