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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* $Id: glx_mangle.h,v 1.1 1999/08/19 00:55:40 jtg Exp $ */
  2. /*
  3. * Mesa 3-D graphics library
  4. * Version: 3.0
  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. /*
  22. * $Log: glx_mangle.h,v $
  23. * Revision 1.1 1999/08/19 00:55:40 jtg
  24. * Initial revision
  25. *
  26. * Revision 3.3 1999/06/21 22:01:00 brianp
  27. * added #ifndef GLX_MANGLE_H stuff, video sync extension functions
  28. *
  29. * Revision 3.2 1998/03/26 02:44:53 brianp
  30. * removed ^M characters
  31. *
  32. * Revision 3.1 1998/03/17 02:41:19 brianp
  33. * updated by Randy Frank
  34. *
  35. * Revision 3.0 1998/02/20 05:04:45 brianp
  36. * initial rev
  37. *
  38. */
  39. #ifndef GLX_MANGLE_H
  40. #define GLX_MANGLE_H
  41. #define glXChooseVisual mglXChooseVisual
  42. #define glXCreateContext mglXCreateContext
  43. #define glXDestroyContext mglXDestroyContext
  44. #define glXMakeCurrent mglXMakeCurrent
  45. #define glXCopyContext mglXCopyContext
  46. #define glXSwapBuffers mglXSwapBuffers
  47. #define glXCreateGLXPixmap mglXCreateGLXPixmap
  48. #define glXDestroyGLXPixmap mglXDestroyGLXPixmap
  49. #define glXQueryExtension mglXQueryExtension
  50. #define glXQueryVersion mglXQueryVersion
  51. #define glXIsDirect mglXIsDirect
  52. #define glXGetConfig mglXGetConfig
  53. #define glXGetCurrentContext mglXGetCurrentContext
  54. #define glXGetCurrentDrawable mglXGetCurrentDrawable
  55. #define glXWaitGL mglXWaitGL
  56. #define glXWaitX mglXWaitX
  57. #define glXUseXFont mglXUseXFont
  58. #define glXQueryExtensionsString mglXQueryExtensionsString
  59. #define glXQueryServerString mglXQueryServerString
  60. #define glXGetClientString mglXGetClientString
  61. #define glXCreateGLXPixmapMESA mglXCreateGLXPixmapMESA
  62. #define glXReleaseBuffersMESA mglXReleaseBuffersMESA
  63. #define glXCopySubBufferMESA mglXCopySubBufferMESA
  64. #define glXGetVideoSyncSGI mglXGetVideoSyncSGI
  65. #define glXWaitVideoSyncSGI mglXWaitVideoSyncSGI
  66. #endif