diff options
author | Brian Paul <[email protected]> | 2005-09-02 13:42:49 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-02 13:42:49 +0000 |
commit | 4fb995084e1b4b629667f09331adf060aa0fac4c (patch) | |
tree | b8652385e0cc674b51aafa6191719536ea116757 /src/mesa/drivers/common | |
parent | 8cdf3729468aefb7c67c8ecd32fd850adbf6d351 (diff) |
Prototype implementation of new GL_EXT_timer_query extension (not finalized yet).
Extends the query mechanism to query elapsed time while rendering.
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/driverfuncs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c index c027123736f..f2e36b78452 100644 --- a/src/mesa/drivers/common/driverfuncs.c +++ b/src/mesa/drivers/common/driverfuncs.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.3 + * Version: 6.5 * * Copyright (C) 1999-2005 Brian Paul All Rights Reserved. * @@ -28,6 +28,7 @@ #include "buffers.h" #include "context.h" #include "framebuffer.h" +#include "occlude.h" #include "program.h" #include "renderbuffer.h" #include "texcompress.h" @@ -210,6 +211,7 @@ _mesa_init_driver_functions(struct dd_function_table *driver) #endif /* query objects */ + driver->NewQueryObject = _mesa_new_query_object; driver->BeginQuery = NULL; driver->EndQuery = NULL; |