diff options
author | Ian Romanick <[email protected]> | 2011-08-22 16:00:03 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-09-09 14:02:20 -0700 |
commit | 5a175127f38aa02d2b8169b1b6d08a2d4be3d36f (patch) | |
tree | 565dceb702c4b0583308e9016956abfbec91bc9c /src/mesa/drivers/dri/common/utils.h | |
parent | 67d906349261d4491fb9b5267404456369c72c0f (diff) |
dri: Remove all extension enabling utility functions
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/common/utils.h')
-rw-r--r-- | src/mesa/drivers/dri/common/utils.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/mesa/drivers/dri/common/utils.h b/src/mesa/drivers/dri/common/utils.h index a1c9ea604ee..100d0dd5159 100644 --- a/src/mesa/drivers/dri/common/utils.h +++ b/src/mesa/drivers/dri/common/utils.h @@ -31,7 +31,6 @@ #include <GL/gl.h> #include <GL/internal/dri_interface.h> #include "main/context.h" -#include "main/remap.h" typedef struct __DRIutilversionRec2 __DRIutilversion2; @@ -41,24 +40,6 @@ struct dri_debug_control { }; /** - * Description of the API for an extension to OpenGL. - */ -struct dri_extension { - /** - * Name of the extension. - */ - const char * name; - - - /** - * Pointer to a list of \c dri_extension_function structures. The list - * is terminated by a structure with a \c NULL - * \c dri_extension_function::strings pointer. - */ - const struct gl_function_remap * functions; -}; - -/** * Used to store a version which includes a major range instead of a single * major version number. */ @@ -78,12 +59,6 @@ extern unsigned driParseDebugString( const char * debug, extern unsigned driGetRendererString( char * buffer, const char * hardware_name, GLuint agp_mode ); -extern void driInitExtensions( struct gl_context * ctx, - const struct dri_extension * card_extensions, GLboolean enable_imaging ); - -extern void driInitSingleExtension( struct gl_context * ctx, - const struct dri_extension * ext ); - extern GLboolean driCheckDriDdxDrmVersions2(const char * driver_name, const __DRIversion * driActual, const __DRIversion * driExpected, const __DRIversion * ddxActual, const __DRIversion * ddxExpected, |