summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/queryobj.h
diff options
context:
space:
mode:
authorOliver McFadden <[email protected]>2012-09-11 09:19:19 +0300
committerOliver McFadden <[email protected]>2012-09-15 12:56:53 +0300
commit25ee9617ff0b537bb30de92983baa745e49556b6 (patch)
tree3d0e57213b39083ca7cd85eff5f7148a1b8bc0cb /src/mesa/main/queryobj.h
parent0ba82f910874e07180d08ae37ebd043eee727f84 (diff)
mesa: remove FEATURE_queryobj define.
Signed-off-by: Oliver McFadden <[email protected]> Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/queryobj.h')
-rw-r--r--src/mesa/main/queryobj.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/mesa/main/queryobj.h b/src/mesa/main/queryobj.h
index e7a133b598b..0f662fb57b4 100644
--- a/src/mesa/main/queryobj.h
+++ b/src/mesa/main/queryobj.h
@@ -32,8 +32,6 @@
#include "main/hash.h"
-#if FEATURE_queryobj
-
static inline struct gl_query_object *
_mesa_lookup_query_object(struct gl_context *ctx, GLuint id)
{
@@ -48,26 +46,6 @@ _mesa_init_query_object_functions(struct dd_function_table *driver);
extern void
_mesa_init_queryobj_dispatch(struct _glapi_table *disp);
-#else /* FEATURE_queryobj */
-
-static inline struct gl_query_object *
-_mesa_lookup_query_object(struct gl_context *ctx, GLuint id)
-{
- return NULL;
-}
-
-static inline void
-_mesa_init_query_object_functions(struct dd_function_table *driver)
-{
-}
-
-static inline void
-_mesa_init_queryobj_dispatch(struct _glapi_table *disp)
-{
-}
-
-#endif /* FEATURE_queryobj */
-
extern void
_mesa_init_queryobj(struct gl_context *ctx);