Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
55 pj 1
/* $Id: glx_mangle.h,v 1.1 2003-02-28 11:41:56 pj Exp $ */
2
 
3
/*
4
 * Mesa 3-D graphics library
5
 * Version:  4.1
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
#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
 
53
/* GLX 1.4 */
54
#define glXGetProcAddress mglXGetProcAddress
55
 
56
 
57
#endif