diff options
author | Brian Paul <[email protected]> | 2008-10-06 09:26:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-10-06 09:26:45 -0600 |
commit | 382911bdbce5545117d5a70ce7e43b71e8396e32 (patch) | |
tree | b5f39d5d30a6ca408615836b17f1489fd251beb7 /src/mesa | |
parent | 91d0020eecb78ef2984fd0afafc5d555c0e957d8 (diff) |
mesa: add missing GLcontext param to _mesa_delete_query().
Fixes vtk crash and others.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/queryobj.c | 2 | ||||
-rw-r--r-- | src/mesa/main/queryobj.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index a1e32e70ba9..2d060300300 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -95,7 +95,7 @@ _mesa_wait_query(GLcontext *ctx, struct gl_query_object *q) * XXX maybe add Delete() method to gl_query_object class and call that instead */ void -_mesa_delete_query(struct gl_query_object *q) +_mesa_delete_query(GLcontext *ctx, struct gl_query_object *q) { _mesa_free(q); } diff --git a/src/mesa/main/queryobj.h b/src/mesa/main/queryobj.h index c05a1f3da82..9a9774641bb 100644 --- a/src/mesa/main/queryobj.h +++ b/src/mesa/main/queryobj.h @@ -37,7 +37,7 @@ extern void _mesa_free_query_data(GLcontext *ctx); extern void -_mesa_delete_query(struct gl_query_object *q); +_mesa_delete_query(GLcontext *ctx, struct gl_query_object *q); extern void _mesa_begin_query(GLcontext *ctx, struct gl_query_object *q); |