mesa: Add dummy _mesa_lookup_query_object to queryobj.h.
authorChia-I Wu <olv@lunarg.com>
Wed, 31 Mar 2010 04:56:45 +0000 (12:56 +0800)
committerChia-I Wu <olv@lunarg.com>
Wed, 12 May 2010 04:12:58 +0000 (12:12 +0800)
This allows condrender.c to be compiled without FEATURE_queryobj.

src/mesa/main/queryobj.h

index ba8b5dd0029e8ba3231ff98a1da3ad11d3338c6a..b044c0d5d49952094fe9102be7998b528bc73293 100644 (file)
@@ -80,6 +80,12 @@ _mesa_init_queryobj_dispatch(struct _glapi_table *disp);
 
 #define _MESA_INIT_QUERYOBJ_FUNCTIONS(driver, impl) do { } while (0)
 
+static INLINE struct gl_query_object *
+_mesa_lookup_query_object(GLcontext *ctx, GLuint id)
+{
+   return NULL;
+}
+
 static INLINE void
 _mesa_init_query_object_functions(struct dd_function_table *driver)
 {