diff options
author | Brian Paul <brianp@vmware.com> | 2009-06-11 14:55:14 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-06-11 14:58:25 -0600 |
commit | 322e8556b91ceb80d4a53129cbb5db99087085f1 (patch) | |
tree | dfb91d23d3497cb01dee46e1386130f4d5483657 /src/mesa/drivers/common/driverfuncs.c | |
parent | 0ddc38309a4ecbe7db4a9e6055d7855d00e6ab7b (diff) |
mesa: add default function for ctx->Driver.CheckQuery() hook
Diffstat (limited to 'src/mesa/drivers/common/driverfuncs.c')
-rw-r--r-- | src/mesa/drivers/common/driverfuncs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c index 276da41f4e..6a98c29a3d 100644 --- a/src/mesa/drivers/common/driverfuncs.c +++ b/src/mesa/drivers/common/driverfuncs.c @@ -231,6 +231,7 @@ _mesa_init_driver_functions(struct dd_function_table *driver) driver->BeginQuery = _mesa_begin_query; driver->EndQuery = _mesa_end_query; driver->WaitQuery = _mesa_wait_query; + driver->CheckQuery = _mesa_check_query; /* APPLE_vertex_array_object */ driver->NewArrayObject = _mesa_new_array_object; |