Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

glx_mangle.h 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* $Id: glx_mangle.h,v 1.2 2001/11/09 22:01:02 brianp Exp $ */
  2. /*
  3. * Mesa 3-D graphics library
  4. * Version: 4.1
  5. * Copyright (C) 1995-1998 Brian Paul
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Library General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Library General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Library General Public
  18. * License along with this library; if not, write to the Free
  19. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #ifndef GLX_MANGLE_H
  22. #define GLX_MANGLE_H
  23. #define glXChooseVisual mglXChooseVisual
  24. #define glXCreateContext mglXCreateContext
  25. #define glXDestroyContext mglXDestroyContext
  26. #define glXMakeCurrent mglXMakeCurrent
  27. #define glXCopyContext mglXCopyContext
  28. #define glXSwapBuffers mglXSwapBuffers
  29. #define glXCreateGLXPixmap mglXCreateGLXPixmap
  30. #define glXDestroyGLXPixmap mglXDestroyGLXPixmap
  31. #define glXQueryExtension mglXQueryExtension
  32. #define glXQueryVersion mglXQueryVersion
  33. #define glXIsDirect mglXIsDirect
  34. #define glXGetConfig mglXGetConfig
  35. #define glXGetCurrentContext mglXGetCurrentContext
  36. #define glXGetCurrentDrawable mglXGetCurrentDrawable
  37. #define glXWaitGL mglXWaitGL
  38. #define glXWaitX mglXWaitX
  39. #define glXUseXFont mglXUseXFont
  40. #define glXQueryExtensionsString mglXQueryExtensionsString
  41. #define glXQueryServerString mglXQueryServerString
  42. #define glXGetClientString mglXGetClientString
  43. #define glXCreateGLXPixmapMESA mglXCreateGLXPixmapMESA
  44. #define glXReleaseBuffersMESA mglXReleaseBuffersMESA
  45. #define glXCopySubBufferMESA mglXCopySubBufferMESA
  46. #define glXGetVideoSyncSGI mglXGetVideoSyncSGI
  47. #define glXWaitVideoSyncSGI mglXWaitVideoSyncSGI
  48. /* GLX 1.4 */
  49. #define glXGetProcAddress mglXGetProcAddress
  50. #endif