author | Sam Lantinga <slouken@libsdl.org> |
Mon, 01 Oct 2012 20:59:33 -0700 | |
changeset 6528 | e978048ced60 |
parent 6320 | 6077a1310907 |
child 7167 | 916548af8031 |
permissions | -rw-r--r-- |
0 | 1 |
/* list of OpenGL functions sorted alphabetically |
2 |
If you need to use a GL function from the SDL video subsystem, |
|
3 |
change it's entry from SDL_PROC_UNUSED to SDL_PROC and rebuild. |
|
4 |
*/ |
|
5 |
#define SDL_PROC_UNUSED(ret,func,params) |
|
5204
daa5463466c5
Fixed building on Android, added SDL_opengles2.h, removed unnecessary SDL_glesfuncs.h
Sam Lantinga <slouken@libsdl.org>
parents:
3454
diff
changeset
|
6 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
7 |
SDL_PROC_UNUSED(void, glAccum, (GLenum, GLfloat)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
8 |
SDL_PROC_UNUSED(void, glAlphaFunc, (GLenum, GLclampf)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
9 |
SDL_PROC_UNUSED(GLboolean, glAreTexturesResident, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
10 |
(GLsizei, const GLuint *, GLboolean *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
11 |
SDL_PROC_UNUSED(void, glArrayElement, (GLint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
12 |
SDL_PROC(void, glBegin, (GLenum)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
13 |
SDL_PROC(void, glBindTexture, (GLenum, GLuint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
14 |
SDL_PROC_UNUSED(void, glBitmap, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
15 |
(GLsizei, GLsizei, GLfloat, GLfloat, GLfloat, GLfloat, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
16 |
const GLubyte *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
17 |
SDL_PROC(void, glBlendFunc, (GLenum, GLenum)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
18 |
SDL_PROC_UNUSED(void, glCallList, (GLuint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
19 |
SDL_PROC_UNUSED(void, glCallLists, (GLsizei, GLenum, const GLvoid *)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
20 |
SDL_PROC(void, glClear, (GLbitfield)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
21 |
SDL_PROC_UNUSED(void, glClearAccum, (GLfloat, GLfloat, GLfloat, GLfloat)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
22 |
SDL_PROC(void, glClearColor, (GLclampf, GLclampf, GLclampf, GLclampf)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
23 |
SDL_PROC_UNUSED(void, glClearDepth, (GLclampd)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
24 |
SDL_PROC_UNUSED(void, glClearIndex, (GLfloat)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
25 |
SDL_PROC_UNUSED(void, glClearStencil, (GLint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
26 |
SDL_PROC_UNUSED(void, glClipPlane, (GLenum, const GLdouble *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
27 |
SDL_PROC_UNUSED(void, glColor3b, (GLbyte, GLbyte, GLbyte)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
28 |
SDL_PROC_UNUSED(void, glColor3bv, (const GLbyte *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
29 |
SDL_PROC_UNUSED(void, glColor3d, (GLdouble, GLdouble, GLdouble)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
30 |
SDL_PROC_UNUSED(void, glColor3dv, (const GLdouble *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
31 |
SDL_PROC_UNUSED(void, glColor3f, (GLfloat, GLfloat, GLfloat)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
32 |
SDL_PROC_UNUSED(void, glColor3fv, (const GLfloat *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
33 |
SDL_PROC_UNUSED(void, glColor3i, (GLint, GLint, GLint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
34 |
SDL_PROC_UNUSED(void, glColor3iv, (const GLint *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
35 |
SDL_PROC_UNUSED(void, glColor3s, (GLshort, GLshort, GLshort)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
36 |
SDL_PROC_UNUSED(void, glColor3sv, (const GLshort *)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
37 |
SDL_PROC_UNUSED(void, glColor3ub, (GLubyte, GLubyte, GLubyte)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
38 |
SDL_PROC_UNUSED(void, glColor3ubv, (const GLubyte *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
39 |
SDL_PROC_UNUSED(void, glColor3ui, (GLuint, GLuint, GLuint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
40 |
SDL_PROC_UNUSED(void, glColor3uiv, (const GLuint *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
41 |
SDL_PROC_UNUSED(void, glColor3us, (GLushort, GLushort, GLushort)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
42 |
SDL_PROC_UNUSED(void, glColor3usv, (const GLushort *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
43 |
SDL_PROC_UNUSED(void, glColor4b, (GLbyte, GLbyte, GLbyte, GLbyte)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
44 |
SDL_PROC_UNUSED(void, glColor4bv, (const GLbyte *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
45 |
SDL_PROC_UNUSED(void, glColor4d, (GLdouble, GLdouble, GLdouble, GLdouble)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
46 |
SDL_PROC_UNUSED(void, glColor4dv, (const GLdouble *)) |
1985
8055185ae4ed
Added source color and alpha modulation support.
Sam Lantinga <slouken@libsdl.org>
parents:
1927
diff
changeset
|
47 |
SDL_PROC(void, glColor4f, (GLfloat, GLfloat, GLfloat, GLfloat)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
48 |
SDL_PROC_UNUSED(void, glColor4fv, (const GLfloat *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
49 |
SDL_PROC_UNUSED(void, glColor4i, (GLint, GLint, GLint, GLint)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
50 |
SDL_PROC_UNUSED(void, glColor4iv, (const GLint *)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
51 |
SDL_PROC_UNUSED(void, glColor4s, (GLshort, GLshort, GLshort, GLshort)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
52 |
SDL_PROC_UNUSED(void, glColor4sv, (const GLshort *)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
53 |
SDL_PROC_UNUSED(void, glColor4ub, |
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
54 |
(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
55 |
SDL_PROC_UNUSED(void, glColor4ubv, (const GLubyte * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
56 |
SDL_PROC_UNUSED(void, glColor4ui, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
57 |
(GLuint red, GLuint green, GLuint blue, GLuint alpha)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
58 |
SDL_PROC_UNUSED(void, glColor4uiv, (const GLuint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
59 |
SDL_PROC_UNUSED(void, glColor4us, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
60 |
(GLushort red, GLushort green, GLushort blue, GLushort alpha)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
61 |
SDL_PROC_UNUSED(void, glColor4usv, (const GLushort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
62 |
SDL_PROC_UNUSED(void, glColorMask, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
63 |
(GLboolean red, GLboolean green, GLboolean blue, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
64 |
GLboolean alpha)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
65 |
SDL_PROC_UNUSED(void, glColorMaterial, (GLenum face, GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
66 |
SDL_PROC_UNUSED(void, glColorPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
67 |
(GLint size, GLenum type, GLsizei stride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
68 |
const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
69 |
SDL_PROC_UNUSED(void, glCopyPixels, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
70 |
(GLint x, GLint y, GLsizei width, GLsizei height, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
71 |
GLenum type)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
72 |
SDL_PROC_UNUSED(void, glCopyTexImage1D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
73 |
(GLenum target, GLint level, GLenum internalFormat, GLint x, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
74 |
GLint y, GLsizei width, GLint border)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
75 |
SDL_PROC_UNUSED(void, glCopyTexImage2D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
76 |
(GLenum target, GLint level, GLenum internalFormat, GLint x, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
77 |
GLint y, GLsizei width, GLsizei height, GLint border)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
78 |
SDL_PROC_UNUSED(void, glCopyTexSubImage1D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
79 |
(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
80 |
GLsizei width)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
81 |
SDL_PROC_UNUSED(void, glCopyTexSubImage2D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
82 |
(GLenum target, GLint level, GLint xoffset, GLint yoffset, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
83 |
GLint x, GLint y, GLsizei width, GLsizei height)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
84 |
SDL_PROC_UNUSED(void, glCullFace, (GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
85 |
SDL_PROC_UNUSED(void, glDeleteLists, (GLuint list, GLsizei range)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
86 |
SDL_PROC(void, glDeleteTextures, (GLsizei n, const GLuint * textures)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
87 |
SDL_PROC_UNUSED(void, glDepthFunc, (GLenum func)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
88 |
SDL_PROC_UNUSED(void, glDepthMask, (GLboolean flag)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
89 |
SDL_PROC_UNUSED(void, glDepthRange, (GLclampd zNear, GLclampd zFar)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
90 |
SDL_PROC(void, glDisable, (GLenum cap)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
91 |
SDL_PROC_UNUSED(void, glDisableClientState, (GLenum array)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
92 |
SDL_PROC_UNUSED(void, glDrawArrays, (GLenum mode, GLint first, GLsizei count)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
93 |
SDL_PROC_UNUSED(void, glDrawBuffer, (GLenum mode)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
94 |
SDL_PROC_UNUSED(void, glDrawElements, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
95 |
(GLenum mode, GLsizei count, GLenum type, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
96 |
const GLvoid * indices)) |
3433
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
97 |
SDL_PROC(void, glDrawPixels, |
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
98 |
(GLsizei width, GLsizei height, GLenum format, GLenum type, |
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
99 |
const GLvoid * pixels)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
100 |
SDL_PROC_UNUSED(void, glEdgeFlag, (GLboolean flag)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
101 |
SDL_PROC_UNUSED(void, glEdgeFlagPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
102 |
(GLsizei stride, const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
103 |
SDL_PROC_UNUSED(void, glEdgeFlagv, (const GLboolean * flag)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
104 |
SDL_PROC(void, glEnable, (GLenum cap)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
105 |
SDL_PROC_UNUSED(void, glEnableClientState, (GLenum array)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
106 |
SDL_PROC(void, glEnd, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
107 |
SDL_PROC_UNUSED(void, glEndList, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
108 |
SDL_PROC_UNUSED(void, glEvalCoord1d, (GLdouble u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
109 |
SDL_PROC_UNUSED(void, glEvalCoord1dv, (const GLdouble * u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
110 |
SDL_PROC_UNUSED(void, glEvalCoord1f, (GLfloat u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
111 |
SDL_PROC_UNUSED(void, glEvalCoord1fv, (const GLfloat * u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
112 |
SDL_PROC_UNUSED(void, glEvalCoord2d, (GLdouble u, GLdouble v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
113 |
SDL_PROC_UNUSED(void, glEvalCoord2dv, (const GLdouble * u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
114 |
SDL_PROC_UNUSED(void, glEvalCoord2f, (GLfloat u, GLfloat v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
115 |
SDL_PROC_UNUSED(void, glEvalCoord2fv, (const GLfloat * u)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
116 |
SDL_PROC_UNUSED(void, glEvalMesh1, (GLenum mode, GLint i1, GLint i2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
117 |
SDL_PROC_UNUSED(void, glEvalMesh2, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
118 |
(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
119 |
SDL_PROC_UNUSED(void, glEvalPoint1, (GLint i)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
120 |
SDL_PROC_UNUSED(void, glEvalPoint2, (GLint i, GLint j)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
121 |
SDL_PROC_UNUSED(void, glFeedbackBuffer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
122 |
(GLsizei size, GLenum type, GLfloat * buffer)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
123 |
SDL_PROC_UNUSED(void, glFinish, (void)) |
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
124 |
SDL_PROC_UNUSED(void, glFlush, (void)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
125 |
SDL_PROC_UNUSED(void, glFogf, (GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
126 |
SDL_PROC_UNUSED(void, glFogfv, (GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
127 |
SDL_PROC_UNUSED(void, glFogi, (GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
128 |
SDL_PROC_UNUSED(void, glFogiv, (GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
129 |
SDL_PROC_UNUSED(void, glFrontFace, (GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
130 |
SDL_PROC_UNUSED(void, glFrustum, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
131 |
(GLdouble left, GLdouble right, GLdouble bottom, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
132 |
GLdouble top, GLdouble zNear, GLdouble zFar)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
133 |
SDL_PROC_UNUSED(GLuint, glGenLists, (GLsizei range)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
134 |
SDL_PROC(void, glGenTextures, (GLsizei n, GLuint * textures)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
135 |
SDL_PROC_UNUSED(void, glGetBooleanv, (GLenum pname, GLboolean * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
136 |
SDL_PROC_UNUSED(void, glGetClipPlane, (GLenum plane, GLdouble * equation)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
137 |
SDL_PROC_UNUSED(void, glGetDoublev, (GLenum pname, GLdouble * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
138 |
SDL_PROC(GLenum, glGetError, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
139 |
SDL_PROC_UNUSED(void, glGetFloatv, (GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
140 |
SDL_PROC(void, glGetIntegerv, (GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
141 |
SDL_PROC_UNUSED(void, glGetLightfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
142 |
(GLenum light, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
143 |
SDL_PROC_UNUSED(void, glGetLightiv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
144 |
(GLenum light, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
145 |
SDL_PROC_UNUSED(void, glGetMapdv, (GLenum target, GLenum query, GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
146 |
SDL_PROC_UNUSED(void, glGetMapfv, (GLenum target, GLenum query, GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
147 |
SDL_PROC_UNUSED(void, glGetMapiv, (GLenum target, GLenum query, GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
148 |
SDL_PROC_UNUSED(void, glGetMaterialfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
149 |
(GLenum face, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
150 |
SDL_PROC_UNUSED(void, glGetMaterialiv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
151 |
(GLenum face, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
152 |
SDL_PROC_UNUSED(void, glGetPixelMapfv, (GLenum map, GLfloat * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
153 |
SDL_PROC_UNUSED(void, glGetPixelMapuiv, (GLenum map, GLuint * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
154 |
SDL_PROC_UNUSED(void, glGetPixelMapusv, (GLenum map, GLushort * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
155 |
SDL_PROC_UNUSED(void, glGetPointerv, (GLenum pname, GLvoid * *params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
156 |
SDL_PROC_UNUSED(void, glGetPolygonStipple, (GLubyte * mask)) |
2835
f38257b5d936
Initial pixel shader support for YUV textures in the GL renderer.
Ryan C. Gordon <icculus@icculus.org>
parents:
1985
diff
changeset
|
157 |
SDL_PROC(const GLubyte *, glGetString, (GLenum name)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
158 |
SDL_PROC_UNUSED(void, glGetTexEnvfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
159 |
(GLenum target, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
160 |
SDL_PROC_UNUSED(void, glGetTexEnviv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
161 |
(GLenum target, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
162 |
SDL_PROC_UNUSED(void, glGetTexGendv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
163 |
(GLenum coord, GLenum pname, GLdouble * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
164 |
SDL_PROC_UNUSED(void, glGetTexGenfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
165 |
(GLenum coord, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
166 |
SDL_PROC_UNUSED(void, glGetTexGeniv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
167 |
(GLenum coord, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
168 |
SDL_PROC_UNUSED(void, glGetTexImage, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
169 |
(GLenum target, GLint level, GLenum format, GLenum type, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
170 |
GLvoid * pixels)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
171 |
SDL_PROC_UNUSED(void, glGetTexLevelParameterfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
172 |
(GLenum target, GLint level, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
173 |
SDL_PROC_UNUSED(void, glGetTexLevelParameteriv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
174 |
(GLenum target, GLint level, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
175 |
SDL_PROC_UNUSED(void, glGetTexParameterfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
176 |
(GLenum target, GLenum pname, GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
177 |
SDL_PROC_UNUSED(void, glGetTexParameteriv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
178 |
(GLenum target, GLenum pname, GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
179 |
SDL_PROC_UNUSED(void, glHint, (GLenum target, GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
180 |
SDL_PROC_UNUSED(void, glIndexMask, (GLuint mask)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
181 |
SDL_PROC_UNUSED(void, glIndexPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
182 |
(GLenum type, GLsizei stride, const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
183 |
SDL_PROC_UNUSED(void, glIndexd, (GLdouble c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
184 |
SDL_PROC_UNUSED(void, glIndexdv, (const GLdouble * c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
185 |
SDL_PROC_UNUSED(void, glIndexf, (GLfloat c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
186 |
SDL_PROC_UNUSED(void, glIndexfv, (const GLfloat * c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
187 |
SDL_PROC_UNUSED(void, glIndexi, (GLint c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
188 |
SDL_PROC_UNUSED(void, glIndexiv, (const GLint * c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
189 |
SDL_PROC_UNUSED(void, glIndexs, (GLshort c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
190 |
SDL_PROC_UNUSED(void, glIndexsv, (const GLshort * c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
191 |
SDL_PROC_UNUSED(void, glIndexub, (GLubyte c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
192 |
SDL_PROC_UNUSED(void, glIndexubv, (const GLubyte * c)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
193 |
SDL_PROC_UNUSED(void, glInitNames, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
194 |
SDL_PROC_UNUSED(void, glInterleavedArrays, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
195 |
(GLenum format, GLsizei stride, const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
196 |
SDL_PROC_UNUSED(GLboolean, glIsEnabled, (GLenum cap)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
197 |
SDL_PROC_UNUSED(GLboolean, glIsList, (GLuint list)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
198 |
SDL_PROC_UNUSED(GLboolean, glIsTexture, (GLuint texture)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
199 |
SDL_PROC_UNUSED(void, glLightModelf, (GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
200 |
SDL_PROC_UNUSED(void, glLightModelfv, (GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
201 |
SDL_PROC_UNUSED(void, glLightModeli, (GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
202 |
SDL_PROC_UNUSED(void, glLightModeliv, (GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
203 |
SDL_PROC_UNUSED(void, glLightf, (GLenum light, GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
204 |
SDL_PROC_UNUSED(void, glLightfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
205 |
(GLenum light, GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
206 |
SDL_PROC_UNUSED(void, glLighti, (GLenum light, GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
207 |
SDL_PROC_UNUSED(void, glLightiv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
208 |
(GLenum light, GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
209 |
SDL_PROC_UNUSED(void, glLineStipple, (GLint factor, GLushort pattern)) |
2884
9dde605c7540
Date: Fri, 19 Dec 2008 20:17:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2835
diff
changeset
|
210 |
SDL_PROC(void, glLineWidth, (GLfloat width)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
211 |
SDL_PROC_UNUSED(void, glListBase, (GLuint base)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
212 |
SDL_PROC(void, glLoadIdentity, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
213 |
SDL_PROC_UNUSED(void, glLoadMatrixd, (const GLdouble * m)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
214 |
SDL_PROC_UNUSED(void, glLoadMatrixf, (const GLfloat * m)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
215 |
SDL_PROC_UNUSED(void, glLoadName, (GLuint name)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
216 |
SDL_PROC_UNUSED(void, glLogicOp, (GLenum opcode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
217 |
SDL_PROC_UNUSED(void, glMap1d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
218 |
(GLenum target, GLdouble u1, GLdouble u2, GLint stride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
219 |
GLint order, const GLdouble * points)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
220 |
SDL_PROC_UNUSED(void, glMap1f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
221 |
(GLenum target, GLfloat u1, GLfloat u2, GLint stride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
222 |
GLint order, const GLfloat * points)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
223 |
SDL_PROC_UNUSED(void, glMap2d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
224 |
(GLenum target, GLdouble u1, GLdouble u2, GLint ustride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
225 |
GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
226 |
GLint vorder, const GLdouble * points)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
227 |
SDL_PROC_UNUSED(void, glMap2f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
228 |
(GLenum target, GLfloat u1, GLfloat u2, GLint ustride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
229 |
GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
230 |
GLint vorder, const GLfloat * points)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
231 |
SDL_PROC_UNUSED(void, glMapGrid1d, (GLint un, GLdouble u1, GLdouble u2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
232 |
SDL_PROC_UNUSED(void, glMapGrid1f, (GLint un, GLfloat u1, GLfloat u2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
233 |
SDL_PROC_UNUSED(void, glMapGrid2d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
234 |
(GLint un, GLdouble u1, GLdouble u2, GLint vn, GLdouble v1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
235 |
GLdouble v2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
236 |
SDL_PROC_UNUSED(void, glMapGrid2f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
237 |
(GLint un, GLfloat u1, GLfloat u2, GLint vn, GLfloat v1, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
238 |
GLfloat v2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
239 |
SDL_PROC_UNUSED(void, glMaterialf, (GLenum face, GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
240 |
SDL_PROC_UNUSED(void, glMaterialfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
241 |
(GLenum face, GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
242 |
SDL_PROC_UNUSED(void, glMateriali, (GLenum face, GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
243 |
SDL_PROC_UNUSED(void, glMaterialiv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
244 |
(GLenum face, GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
245 |
SDL_PROC(void, glMatrixMode, (GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
246 |
SDL_PROC_UNUSED(void, glMultMatrixd, (const GLdouble * m)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
247 |
SDL_PROC_UNUSED(void, glMultMatrixf, (const GLfloat * m)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
248 |
SDL_PROC_UNUSED(void, glNewList, (GLuint list, GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
249 |
SDL_PROC_UNUSED(void, glNormal3b, (GLbyte nx, GLbyte ny, GLbyte nz)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
250 |
SDL_PROC_UNUSED(void, glNormal3bv, (const GLbyte * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
251 |
SDL_PROC_UNUSED(void, glNormal3d, (GLdouble nx, GLdouble ny, GLdouble nz)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
252 |
SDL_PROC_UNUSED(void, glNormal3dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
253 |
SDL_PROC_UNUSED(void, glNormal3f, (GLfloat nx, GLfloat ny, GLfloat nz)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
254 |
SDL_PROC_UNUSED(void, glNormal3fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
255 |
SDL_PROC_UNUSED(void, glNormal3i, (GLint nx, GLint ny, GLint nz)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
256 |
SDL_PROC_UNUSED(void, glNormal3iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
257 |
SDL_PROC_UNUSED(void, glNormal3s, (GLshort nx, GLshort ny, GLshort nz)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
258 |
SDL_PROC_UNUSED(void, glNormal3sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
259 |
SDL_PROC_UNUSED(void, glNormalPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
260 |
(GLenum type, GLsizei stride, const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
261 |
SDL_PROC(void, glOrtho, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
262 |
(GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
263 |
GLdouble zNear, GLdouble zFar)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
264 |
SDL_PROC_UNUSED(void, glPassThrough, (GLfloat token)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
265 |
SDL_PROC_UNUSED(void, glPixelMapfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
266 |
(GLenum map, GLsizei mapsize, const GLfloat * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
267 |
SDL_PROC_UNUSED(void, glPixelMapuiv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
268 |
(GLenum map, GLsizei mapsize, const GLuint * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
269 |
SDL_PROC_UNUSED(void, glPixelMapusv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
270 |
(GLenum map, GLsizei mapsize, const GLushort * values)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
271 |
SDL_PROC_UNUSED(void, glPixelStoref, (GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
272 |
SDL_PROC(void, glPixelStorei, (GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
273 |
SDL_PROC_UNUSED(void, glPixelTransferf, (GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
274 |
SDL_PROC_UNUSED(void, glPixelTransferi, (GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
275 |
SDL_PROC_UNUSED(void, glPixelZoom, (GLfloat xfactor, GLfloat yfactor)) |
2884
9dde605c7540
Date: Fri, 19 Dec 2008 20:17:35 +0100
Sam Lantinga <slouken@libsdl.org>
parents:
2835
diff
changeset
|
276 |
SDL_PROC(void, glPointSize, (GLfloat size)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
277 |
SDL_PROC_UNUSED(void, glPolygonMode, (GLenum face, GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
278 |
SDL_PROC_UNUSED(void, glPolygonOffset, (GLfloat factor, GLfloat units)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
279 |
SDL_PROC_UNUSED(void, glPolygonStipple, (const GLubyte * mask)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
280 |
SDL_PROC_UNUSED(void, glPopAttrib, (void)) |
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
281 |
SDL_PROC_UNUSED(void, glPopClientAttrib, (void)) |
6320
6077a1310907
RenderCopyEx,rotation and flipping for all hardware/software backends (#1308)
Gabriel Jacobo <gabomdq@gmail.com>
parents:
5224
diff
changeset
|
282 |
SDL_PROC(void, glPopMatrix, (void)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
283 |
SDL_PROC_UNUSED(void, glPopName, (void)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
284 |
SDL_PROC_UNUSED(void, glPrioritizeTextures, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
285 |
(GLsizei n, const GLuint * textures, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
286 |
const GLclampf * priorities)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
287 |
SDL_PROC_UNUSED(void, glPushAttrib, (GLbitfield mask)) |
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
288 |
SDL_PROC_UNUSED(void, glPushClientAttrib, (GLbitfield mask)) |
6320
6077a1310907
RenderCopyEx,rotation and flipping for all hardware/software backends (#1308)
Gabriel Jacobo <gabomdq@gmail.com>
parents:
5224
diff
changeset
|
289 |
SDL_PROC(void, glPushMatrix, (void)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
290 |
SDL_PROC_UNUSED(void, glPushName, (GLuint name)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
291 |
SDL_PROC_UNUSED(void, glRasterPos2d, (GLdouble x, GLdouble y)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
292 |
SDL_PROC_UNUSED(void, glRasterPos2dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
293 |
SDL_PROC_UNUSED(void, glRasterPos2f, (GLfloat x, GLfloat y)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
294 |
SDL_PROC_UNUSED(void, glRasterPos2fv, (const GLfloat * v)) |
3446
0f969d273f65
First pass (untested) at RenderWritePixels()
Sam Lantinga <slouken@libsdl.org>
parents:
3443
diff
changeset
|
295 |
SDL_PROC(void, glRasterPos2i, (GLint x, GLint y)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
296 |
SDL_PROC_UNUSED(void, glRasterPos2iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
297 |
SDL_PROC_UNUSED(void, glRasterPos2s, (GLshort x, GLshort y)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
298 |
SDL_PROC_UNUSED(void, glRasterPos2sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
299 |
SDL_PROC_UNUSED(void, glRasterPos3d, (GLdouble x, GLdouble y, GLdouble z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
300 |
SDL_PROC_UNUSED(void, glRasterPos3dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
301 |
SDL_PROC_UNUSED(void, glRasterPos3f, (GLfloat x, GLfloat y, GLfloat z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
302 |
SDL_PROC_UNUSED(void, glRasterPos3fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
303 |
SDL_PROC_UNUSED(void, glRasterPos3i, (GLint x, GLint y, GLint z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
304 |
SDL_PROC_UNUSED(void, glRasterPos3iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
305 |
SDL_PROC_UNUSED(void, glRasterPos3s, (GLshort x, GLshort y, GLshort z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
306 |
SDL_PROC_UNUSED(void, glRasterPos3sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
307 |
SDL_PROC_UNUSED(void, glRasterPos4d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
308 |
(GLdouble x, GLdouble y, GLdouble z, GLdouble w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
309 |
SDL_PROC_UNUSED(void, glRasterPos4dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
310 |
SDL_PROC_UNUSED(void, glRasterPos4f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
311 |
(GLfloat x, GLfloat y, GLfloat z, GLfloat w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
312 |
SDL_PROC_UNUSED(void, glRasterPos4fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
313 |
SDL_PROC_UNUSED(void, glRasterPos4i, (GLint x, GLint y, GLint z, GLint w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
314 |
SDL_PROC_UNUSED(void, glRasterPos4iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
315 |
SDL_PROC_UNUSED(void, glRasterPos4s, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
316 |
(GLshort x, GLshort y, GLshort z, GLshort w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
317 |
SDL_PROC_UNUSED(void, glRasterPos4sv, (const GLshort * v)) |
3443
7f477a22dff5
Trying to figure out why the OpenGL tests are failing...
Sam Lantinga <slouken@libsdl.org>
parents:
3433
diff
changeset
|
318 |
SDL_PROC(void, glReadBuffer, (GLenum mode)) |
3433
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
319 |
SDL_PROC(void, glReadPixels, |
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
320 |
(GLint x, GLint y, GLsizei width, GLsizei height, |
ad845d9835aa
Hmm, this isn't going to work, is it?
Sam Lantinga <slouken@libsdl.org>
parents:
2884
diff
changeset
|
321 |
GLenum format, GLenum type, GLvoid * pixels)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
322 |
SDL_PROC_UNUSED(void, glRectd, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
323 |
(GLdouble x1, GLdouble y1, GLdouble x2, GLdouble y2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
324 |
SDL_PROC_UNUSED(void, glRectdv, (const GLdouble * v1, const GLdouble * v2)) |
6528
e978048ced60
Added SDL_RenderSetScale() and SDL_RenderGetScale()
Sam Lantinga <slouken@libsdl.org>
parents:
6320
diff
changeset
|
325 |
SDL_PROC(void, glRectf, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
326 |
(GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
327 |
SDL_PROC_UNUSED(void, glRectfv, (const GLfloat * v1, const GLfloat * v2)) |
6528
e978048ced60
Added SDL_RenderSetScale() and SDL_RenderGetScale()
Sam Lantinga <slouken@libsdl.org>
parents:
6320
diff
changeset
|
328 |
SDL_PROC_UNUSED(void, glRecti, (GLint x1, GLint y1, GLint x2, GLint y2)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
329 |
SDL_PROC_UNUSED(void, glRectiv, (const GLint * v1, const GLint * v2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
330 |
SDL_PROC_UNUSED(void, glRects, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
331 |
(GLshort x1, GLshort y1, GLshort x2, GLshort y2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
332 |
SDL_PROC_UNUSED(void, glRectsv, (const GLshort * v1, const GLshort * v2)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
333 |
SDL_PROC_UNUSED(GLint, glRenderMode, (GLenum mode)) |
6320
6077a1310907
RenderCopyEx,rotation and flipping for all hardware/software backends (#1308)
Gabriel Jacobo <gabomdq@gmail.com>
parents:
5224
diff
changeset
|
334 |
SDL_PROC(void, glRotated, |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
335 |
(GLdouble angle, GLdouble x, GLdouble y, GLdouble z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
336 |
SDL_PROC_UNUSED(void, glRotatef, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
337 |
(GLfloat angle, GLfloat x, GLfloat y, GLfloat z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
338 |
SDL_PROC_UNUSED(void, glScaled, (GLdouble x, GLdouble y, GLdouble z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
339 |
SDL_PROC_UNUSED(void, glScalef, (GLfloat x, GLfloat y, GLfloat z)) |
5224
2178ffe17222
Added function SDL_RenderSetClipRect()
Sam Lantinga <slouken@libsdl.org>
parents:
5204
diff
changeset
|
340 |
SDL_PROC(void, glScissor, (GLint x, GLint y, GLsizei width, GLsizei height)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
341 |
SDL_PROC_UNUSED(void, glSelectBuffer, (GLsizei size, GLuint * buffer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
342 |
SDL_PROC_UNUSED(void, glShadeModel, (GLenum mode)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
343 |
SDL_PROC_UNUSED(void, glStencilFunc, (GLenum func, GLint ref, GLuint mask)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
344 |
SDL_PROC_UNUSED(void, glStencilMask, (GLuint mask)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
345 |
SDL_PROC_UNUSED(void, glStencilOp, (GLenum fail, GLenum zfail, GLenum zpass)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
346 |
SDL_PROC_UNUSED(void, glTexCoord1d, (GLdouble s)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
347 |
SDL_PROC_UNUSED(void, glTexCoord1dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
348 |
SDL_PROC_UNUSED(void, glTexCoord1f, (GLfloat s)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
349 |
SDL_PROC_UNUSED(void, glTexCoord1fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
350 |
SDL_PROC_UNUSED(void, glTexCoord1i, (GLint s)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
351 |
SDL_PROC_UNUSED(void, glTexCoord1iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
352 |
SDL_PROC_UNUSED(void, glTexCoord1s, (GLshort s)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
353 |
SDL_PROC_UNUSED(void, glTexCoord1sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
354 |
SDL_PROC_UNUSED(void, glTexCoord2d, (GLdouble s, GLdouble t)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
355 |
SDL_PROC_UNUSED(void, glTexCoord2dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
356 |
SDL_PROC(void, glTexCoord2f, (GLfloat s, GLfloat t)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
357 |
SDL_PROC_UNUSED(void, glTexCoord2fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
358 |
SDL_PROC_UNUSED(void, glTexCoord2i, (GLint s, GLint t)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
359 |
SDL_PROC_UNUSED(void, glTexCoord2iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
360 |
SDL_PROC_UNUSED(void, glTexCoord2s, (GLshort s, GLshort t)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
361 |
SDL_PROC_UNUSED(void, glTexCoord2sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
362 |
SDL_PROC_UNUSED(void, glTexCoord3d, (GLdouble s, GLdouble t, GLdouble r)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
363 |
SDL_PROC_UNUSED(void, glTexCoord3dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
364 |
SDL_PROC_UNUSED(void, glTexCoord3f, (GLfloat s, GLfloat t, GLfloat r)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
365 |
SDL_PROC_UNUSED(void, glTexCoord3fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
366 |
SDL_PROC_UNUSED(void, glTexCoord3i, (GLint s, GLint t, GLint r)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
367 |
SDL_PROC_UNUSED(void, glTexCoord3iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
368 |
SDL_PROC_UNUSED(void, glTexCoord3s, (GLshort s, GLshort t, GLshort r)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
369 |
SDL_PROC_UNUSED(void, glTexCoord3sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
370 |
SDL_PROC_UNUSED(void, glTexCoord4d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
371 |
(GLdouble s, GLdouble t, GLdouble r, GLdouble q)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
372 |
SDL_PROC_UNUSED(void, glTexCoord4dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
373 |
SDL_PROC_UNUSED(void, glTexCoord4f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
374 |
(GLfloat s, GLfloat t, GLfloat r, GLfloat q)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
375 |
SDL_PROC_UNUSED(void, glTexCoord4fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
376 |
SDL_PROC_UNUSED(void, glTexCoord4i, (GLint s, GLint t, GLint r, GLint q)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
377 |
SDL_PROC_UNUSED(void, glTexCoord4iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
378 |
SDL_PROC_UNUSED(void, glTexCoord4s, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
379 |
(GLshort s, GLshort t, GLshort r, GLshort q)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
380 |
SDL_PROC_UNUSED(void, glTexCoord4sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
381 |
SDL_PROC_UNUSED(void, glTexCoordPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
382 |
(GLint size, GLenum type, GLsizei stride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
383 |
const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
384 |
SDL_PROC(void, glTexEnvf, (GLenum target, GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
385 |
SDL_PROC_UNUSED(void, glTexEnvfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
386 |
(GLenum target, GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
387 |
SDL_PROC_UNUSED(void, glTexEnvi, (GLenum target, GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
388 |
SDL_PROC_UNUSED(void, glTexEnviv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
389 |
(GLenum target, GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
390 |
SDL_PROC_UNUSED(void, glTexGend, (GLenum coord, GLenum pname, GLdouble param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
391 |
SDL_PROC_UNUSED(void, glTexGendv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
392 |
(GLenum coord, GLenum pname, const GLdouble * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
393 |
SDL_PROC_UNUSED(void, glTexGenf, (GLenum coord, GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
394 |
SDL_PROC_UNUSED(void, glTexGenfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
395 |
(GLenum coord, GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
396 |
SDL_PROC_UNUSED(void, glTexGeni, (GLenum coord, GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
397 |
SDL_PROC_UNUSED(void, glTexGeniv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
398 |
(GLenum coord, GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
399 |
SDL_PROC_UNUSED(void, glTexImage1D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
400 |
(GLenum target, GLint level, GLint internalformat, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
401 |
GLsizei width, GLint border, GLenum format, GLenum type, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
402 |
const GLvoid * pixels)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
403 |
SDL_PROC(void, glTexImage2D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
404 |
(GLenum target, GLint level, GLint internalformat, GLsizei width, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
405 |
GLsizei height, GLint border, GLenum format, GLenum type, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
406 |
const GLvoid * pixels)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
407 |
SDL_PROC_UNUSED(void, glTexParameterf, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
408 |
(GLenum target, GLenum pname, GLfloat param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
409 |
SDL_PROC_UNUSED(void, glTexParameterfv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
410 |
(GLenum target, GLenum pname, const GLfloat * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
411 |
SDL_PROC(void, glTexParameteri, (GLenum target, GLenum pname, GLint param)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
412 |
SDL_PROC_UNUSED(void, glTexParameteriv, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
413 |
(GLenum target, GLenum pname, const GLint * params)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
414 |
SDL_PROC_UNUSED(void, glTexSubImage1D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
415 |
(GLenum target, GLint level, GLint xoffset, GLsizei width, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
416 |
GLenum format, GLenum type, const GLvoid * pixels)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
417 |
SDL_PROC(void, glTexSubImage2D, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
418 |
(GLenum target, GLint level, GLint xoffset, GLint yoffset, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
419 |
GLsizei width, GLsizei height, GLenum format, GLenum type, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
420 |
const GLvoid * pixels)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
421 |
SDL_PROC_UNUSED(void, glTranslated, (GLdouble x, GLdouble y, GLdouble z)) |
6320
6077a1310907
RenderCopyEx,rotation and flipping for all hardware/software backends (#1308)
Gabriel Jacobo <gabomdq@gmail.com>
parents:
5224
diff
changeset
|
422 |
SDL_PROC(void, glTranslatef, (GLfloat x, GLfloat y, GLfloat z)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
423 |
SDL_PROC_UNUSED(void, glVertex2d, (GLdouble x, GLdouble y)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
424 |
SDL_PROC_UNUSED(void, glVertex2dv, (const GLdouble * v)) |
3454
77366fae0094
Adjust the vertices to be over the texel center.
Sam Lantinga <slouken@libsdl.org>
parents:
3446
diff
changeset
|
425 |
SDL_PROC(void, glVertex2f, (GLfloat x, GLfloat y)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
426 |
SDL_PROC_UNUSED(void, glVertex2fv, (const GLfloat * v)) |
3454
77366fae0094
Adjust the vertices to be over the texel center.
Sam Lantinga <slouken@libsdl.org>
parents:
3446
diff
changeset
|
427 |
SDL_PROC_UNUSED(void, glVertex2i, (GLint x, GLint y)) |
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
428 |
SDL_PROC_UNUSED(void, glVertex2iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
429 |
SDL_PROC_UNUSED(void, glVertex2s, (GLshort x, GLshort y)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
430 |
SDL_PROC_UNUSED(void, glVertex2sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
431 |
SDL_PROC_UNUSED(void, glVertex3d, (GLdouble x, GLdouble y, GLdouble z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
432 |
SDL_PROC_UNUSED(void, glVertex3dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
433 |
SDL_PROC_UNUSED(void, glVertex3f, (GLfloat x, GLfloat y, GLfloat z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
434 |
SDL_PROC_UNUSED(void, glVertex3fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
435 |
SDL_PROC_UNUSED(void, glVertex3i, (GLint x, GLint y, GLint z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
436 |
SDL_PROC_UNUSED(void, glVertex3iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
437 |
SDL_PROC_UNUSED(void, glVertex3s, (GLshort x, GLshort y, GLshort z)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
438 |
SDL_PROC_UNUSED(void, glVertex3sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
439 |
SDL_PROC_UNUSED(void, glVertex4d, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
440 |
(GLdouble x, GLdouble y, GLdouble z, GLdouble w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
441 |
SDL_PROC_UNUSED(void, glVertex4dv, (const GLdouble * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
442 |
SDL_PROC_UNUSED(void, glVertex4f, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
443 |
(GLfloat x, GLfloat y, GLfloat z, GLfloat w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
444 |
SDL_PROC_UNUSED(void, glVertex4fv, (const GLfloat * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
445 |
SDL_PROC_UNUSED(void, glVertex4i, (GLint x, GLint y, GLint z, GLint w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
446 |
SDL_PROC_UNUSED(void, glVertex4iv, (const GLint * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
447 |
SDL_PROC_UNUSED(void, glVertex4s, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
448 |
(GLshort x, GLshort y, GLshort z, GLshort w)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
449 |
SDL_PROC_UNUSED(void, glVertex4sv, (const GLshort * v)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
450 |
SDL_PROC_UNUSED(void, glVertexPointer, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
451 |
(GLint size, GLenum type, GLsizei stride, |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
452 |
const GLvoid * pointer)) |
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
453 |
SDL_PROC(void, glViewport, (GLint x, GLint y, GLsizei width, GLsizei height)) |
1927
aeb8263d377a
OpenGL renderer is feature complete!
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
454 |
|
1895
c121d94672cb
SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
Sam Lantinga <slouken@libsdl.org>
parents:
1315
diff
changeset
|
455 |
/* vi: set ts=4 sw=4 expandtab: */ |