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