mesa: Add dummy _mesa_lookup_query_object to queryobj.h.

This allows condrender.c to be compiled without FEATURE_queryobj.
This commit is contained in:
Chia-I Wu
2010-03-31 12:56:45 +08:00
parent e76e17d569
commit 278bca0db9
+6
View 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)
{