summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/x11/glxapi.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-11-25 23:25:33 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-11-25 23:25:33 +0000
commitbe2de8b299c9fc7bdc22372ed799e894a8582c62 (patch)
tree4acb632c309ffee3f2f87f91c0818965d50fe575 /src/mesa/drivers/x11/glxapi.h
parent4dafbc3dc75be565704f437016f70a63c48d1539 (diff)
Use __GLXextFuncPtr type instead of void * for generic functions to
avoid gcc 3.4 compiler warnings. Remove the unused/obsolete GLX_render_texture stuff.
Diffstat (limited to 'src/mesa/drivers/x11/glxapi.h')
-rw-r--r--src/mesa/drivers/x11/glxapi.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/mesa/drivers/x11/glxapi.h b/src/mesa/drivers/x11/glxapi.h
index 6f09a68fe0..3bbdf94aa8 100644
--- a/src/mesa/drivers/x11/glxapi.h
+++ b/src/mesa/drivers/x11/glxapi.h
@@ -1,9 +1,8 @@
-
/*
* Mesa 3-D graphics library
- * Version: 5.1
+ * Version: 6.3
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -204,11 +203,6 @@ struct _glxapi_table {
/*** GLX_MESA_agp_offset ***/
GLuint (*GetAGPOffsetMESA)( const GLvoid *pointer );
-
- /*** GLX_ARB_render_texture ***/
- Bool (*BindTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
- Bool (*ReleaseTexImageARB)(Display *dpy, GLXPbuffer pbuffer, int buffer);
- Bool (*DrawableAttribARB)(Display *dpy, GLXDrawable draw, const int *attribList);
};
@@ -229,7 +223,7 @@ extern void
_glxapi_set_no_op_table(struct _glxapi_table *t);
-extern const GLvoid *
+extern __GLXextFuncPtr
_glxapi_get_proc_address(const char *funcName);