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

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