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