blob: d0b47d94e73bcbdb21cd77e8a549037f3b8cd894 [file] [log] [blame]
jtgafb833d1999-08-19 00:55:39 +00001/*
2 * Mesa 3-D graphics library
Brian Paulc32fe222001-11-09 22:01:02 +00003 * Version: 4.1
jtgafb833d1999-08-19 00:55:39 +00004 * 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
21
jtgafb833d1999-08-19 00:55:39 +000022#ifndef GLX_MANGLE_H
23#define GLX_MANGLE_H
24
25#define glXChooseVisual mglXChooseVisual
26#define glXCreateContext mglXCreateContext
27#define glXDestroyContext mglXDestroyContext
28#define glXMakeCurrent mglXMakeCurrent
29#define glXCopyContext mglXCopyContext
30#define glXSwapBuffers mglXSwapBuffers
31#define glXCreateGLXPixmap mglXCreateGLXPixmap
32#define glXDestroyGLXPixmap mglXDestroyGLXPixmap
33#define glXQueryExtension mglXQueryExtension
34#define glXQueryVersion mglXQueryVersion
35#define glXIsDirect mglXIsDirect
36#define glXGetConfig mglXGetConfig
37#define glXGetCurrentContext mglXGetCurrentContext
38#define glXGetCurrentDrawable mglXGetCurrentDrawable
39#define glXWaitGL mglXWaitGL
40#define glXWaitX mglXWaitX
41#define glXUseXFont mglXUseXFont
42#define glXQueryExtensionsString mglXQueryExtensionsString
43#define glXQueryServerString mglXQueryServerString
44#define glXGetClientString mglXGetClientString
45#define glXCreateGLXPixmapMESA mglXCreateGLXPixmapMESA
46#define glXReleaseBuffersMESA mglXReleaseBuffersMESA
47#define glXCopySubBufferMESA mglXCopySubBufferMESA
48#define glXGetVideoSyncSGI mglXGetVideoSyncSGI
49#define glXWaitVideoSyncSGI mglXWaitVideoSyncSGI
50
Brian Paulc32fe222001-11-09 22:01:02 +000051/* GLX 1.4 */
52#define glXGetProcAddress mglXGetProcAddress
53
54
jtgafb833d1999-08-19 00:55:39 +000055#endif