Avoid excessive heap memory reallocation when generating EMF
[wine] / dlls / ddraw / gl_api.h
1 /* GL API list
2  * Copyright (c) 2003 Lionel Ulmer / Mike McCormack
3  *
4  * This file contains all structures that are not exported
5  * through d3d.h and all common macros.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 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  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 /* Note : this file is NOT protected against double-inclusion for pretty good
23           reasons :-) */
24
25 #ifndef GL_API_FUNCTION
26 #error "This file should be included with GL_API_FUNCTION defined !"
27 #endif
28
29 GL_API_FUNCTION(glAlphaFunc)
30 GL_API_FUNCTION(glBegin)
31 GL_API_FUNCTION(glBindTexture)
32 GL_API_FUNCTION(glBlendFunc)
33 GL_API_FUNCTION(glClear)
34 GL_API_FUNCTION(glClearColor)
35 GL_API_FUNCTION(glClearDepth)
36 GL_API_FUNCTION(glClearStencil)
37 GL_API_FUNCTION(glClipPlane)
38 GL_API_FUNCTION(glColor3f)
39 GL_API_FUNCTION(glColor3ub)
40 GL_API_FUNCTION(glColor4ub)
41 GL_API_FUNCTION(glColorMask)
42 GL_API_FUNCTION(glColorMaterial)
43 GL_API_FUNCTION(glCopyPixels)
44 GL_API_FUNCTION(glCopyTexSubImage2D)
45 GL_API_FUNCTION(glCullFace)
46 GL_API_FUNCTION(glDeleteTextures)
47 GL_API_FUNCTION(glDepthFunc)
48 GL_API_FUNCTION(glDepthMask)
49 GL_API_FUNCTION(glDepthRange)
50 GL_API_FUNCTION(glDisable)
51 GL_API_FUNCTION(glDrawBuffer)
52 GL_API_FUNCTION(glDrawPixels)
53 GL_API_FUNCTION(glEnable)
54 GL_API_FUNCTION(glEnd)
55 GL_API_FUNCTION(glFlush)
56 GL_API_FUNCTION(glFogf)
57 GL_API_FUNCTION(glFogfv)
58 GL_API_FUNCTION(glFogi)
59 GL_API_FUNCTION(glFrontFace)
60 GL_API_FUNCTION(glGenTextures)
61 GL_API_FUNCTION(glGetBooleanv)
62 GL_API_FUNCTION(glGetError)
63 GL_API_FUNCTION(glGetFloatv)
64 GL_API_FUNCTION(glGetIntegerv)
65 GL_API_FUNCTION(glGetString)
66 GL_API_FUNCTION(glGetTexEnviv)
67 GL_API_FUNCTION(glGetTexParameteriv)
68 GL_API_FUNCTION(glHint)
69 GL_API_FUNCTION(glLightModelfv)
70 GL_API_FUNCTION(glLightModeli)
71 GL_API_FUNCTION(glLightfv)
72 GL_API_FUNCTION(glLoadIdentity)
73 GL_API_FUNCTION(glLoadMatrixf)
74 GL_API_FUNCTION(glMaterialf)
75 GL_API_FUNCTION(glMaterialfv)
76 GL_API_FUNCTION(glMatrixMode)
77 GL_API_FUNCTION(glMultMatrixf)
78 GL_API_FUNCTION(glNormal3f)
79 GL_API_FUNCTION(glNormal3fv)
80 GL_API_FUNCTION(glOrtho)
81 GL_API_FUNCTION(glPixelStorei)
82 GL_API_FUNCTION(glPolygonMode)
83 GL_API_FUNCTION(glPolygonOffset)
84 GL_API_FUNCTION(glPopMatrix)
85 GL_API_FUNCTION(glPushMatrix)
86 GL_API_FUNCTION(glRasterPos2i)
87 GL_API_FUNCTION(glRasterPos3d)
88 GL_API_FUNCTION(glReadBuffer)
89 GL_API_FUNCTION(glReadPixels)
90 GL_API_FUNCTION(glScissor)
91 GL_API_FUNCTION(glShadeModel)
92 GL_API_FUNCTION(glStencilFunc)
93 GL_API_FUNCTION(glStencilMask)
94 GL_API_FUNCTION(glStencilOp)
95 GL_API_FUNCTION(glTexCoord2f)
96 GL_API_FUNCTION(glTexCoord2fv)
97 GL_API_FUNCTION(glTexEnvf)
98 GL_API_FUNCTION(glTexEnvfv)
99 GL_API_FUNCTION(glTexEnvi)
100 GL_API_FUNCTION(glTexImage2D)
101 GL_API_FUNCTION(glTexParameteri)
102 GL_API_FUNCTION(glTexParameterfv)
103 GL_API_FUNCTION(glTexSubImage2D)
104 GL_API_FUNCTION(glTranslatef)
105 GL_API_FUNCTION(glVertex3d)
106 GL_API_FUNCTION(glVertex3f)
107 GL_API_FUNCTION(glVertex3fv)
108 GL_API_FUNCTION(glVertex4f)
109 GL_API_FUNCTION(glViewport)
110 GL_API_FUNCTION(glXCreateContext)
111 GL_API_FUNCTION(glXDestroyContext)
112 GL_API_FUNCTION(glXMakeCurrent)
113 GL_API_FUNCTION(glXQueryExtensionsString)
114 GL_API_FUNCTION(glXSwapBuffers)