From a3c908f5fab0ccef2e0bbc4b4498203771fa4e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 4 Nov 2012 15:35:09 +0100 Subject: [PATCH] Don't show Query for ES 2.0 target. It isn't (and won't be) supported there, so why not hide it. --- src/Query.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Query.h b/src/Query.h index ef07d4cd3..35aae172f 100644 --- a/src/Query.h +++ b/src/Query.h @@ -88,6 +88,7 @@ template<> GLuint64 MAGNUM_EXPORT AbstractQuery::result(); template<> GLint64 MAGNUM_EXPORT AbstractQuery::result(); #endif +#ifndef MAGNUM_TARGET_GLES2 /** @brief %Query for primitives and elapsed time @@ -163,6 +164,7 @@ class MAGNUM_EXPORT Query: public AbstractQuery { private: Target* target; }; +#endif /** @brief %Query for samples