diff options
author | Dave Airlie <airliedfreedesktop.org> | 2005-02-15 08:40:24 +0000 |
---|---|---|
committer | Dave Airlie <airliedfreedesktop.org> | 2005-02-15 08:40:24 +0000 |
commit | 09298228c64f14b6c74588a89f70b0de4d1ac6a4 (patch) | |
tree | 84ccb61599d7c1e0a022781088b18d6de4c5d97d /include | |
parent | e82cb7852b6d51325cbdbda2354f391bfea6d30b (diff) |
add EnableExtension so r200 enables all its extensions, add mesa memory
extension entry points
Diffstat (limited to 'include')
-rw-r--r-- | include/GL/miniglx.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/GL/miniglx.h b/include/GL/miniglx.h index 1a6304f6ba1..4af7ec1141e 100644 --- a/include/GL/miniglx.h +++ b/include/GL/miniglx.h @@ -440,6 +440,19 @@ glXChooseFBConfig( Display *dpy, int screen, const int *attribList, extern XVisualInfo * glXGetVisualFromFBConfig( Display *dpy, GLXFBConfig config ); +extern void *glXAllocateMemoryMESA(Display *dpy, int scrn, + size_t size, float readFreq, + float writeFreq, float priority); + +extern void glXFreeMemoryMESA(Display *dpy, int scrn, void *pointer); + +extern GLuint glXGetMemoryOffsetMESA( Display *dpy, int scrn, + const void *pointer ); +/*@}*/ + +extern void +__glXScrEnableExtension( void *, const char * name ); + /*@}*/ |