1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox OpenGL
|
---|
4 | *
|
---|
5 | * Simple buffered OpenGL functions
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #include "vboxgl.h"
|
---|
25 |
|
---|
26 |
|
---|
27 | void vboxglReadPixels (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
28 | {
|
---|
29 | VBOX_OGL_GEN_SYNC_OP7_PASS_PTR(ReadPixels, GLint, GLint, GLsizei, GLsizei, GLenum, GLenum, GLvoid);
|
---|
30 | }
|
---|
31 |
|
---|
32 | /** @todo */
|
---|
33 | void vboxglFeedbackBuffer (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
34 | {
|
---|
35 | AssertFailed();
|
---|
36 | // VBOX_OGL_GEN_SYNC_OP3_PTR(FeedbackBuffer, GLsizei, GLenum, GLfloat);
|
---|
37 | }
|
---|
38 |
|
---|
39 | /** @todo */
|
---|
40 | void vboxglSelectBuffer (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
41 | {
|
---|
42 | AssertFailed();
|
---|
43 | // VBOX_OGL_GEN_SYNC_OP2_PTR(SelectBuffer, GLsizei, GLuint);
|
---|
44 | }
|
---|
45 |
|
---|
46 | /* Note: when in GL_FEEDBACK or GL_SELECT mode -> fill those buffers
|
---|
47 | * when switching to GL_FEEDBACK or GL_SELECT mode -> pass pointers
|
---|
48 | */
|
---|
49 | void vboxglRenderMode (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
50 | {
|
---|
51 | /** @todo */
|
---|
52 | AssertFailed();
|
---|
53 | VBOX_OGL_GEN_SYNC_OP1_RET(GLint, RenderMode, GLenum);
|
---|
54 | }
|
---|
55 |
|
---|
56 | void vboxglGenTextures (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
57 | {
|
---|
58 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GenTextures, GLsizei, GLuint);
|
---|
59 | }
|
---|
60 |
|
---|
61 | void vboxglGetBooleanv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
62 | {
|
---|
63 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetBooleanv, GLenum, GLboolean);
|
---|
64 | }
|
---|
65 |
|
---|
66 | void vboxglGetDoublev (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
67 | {
|
---|
68 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetDoublev, GLenum, GLdouble);
|
---|
69 | }
|
---|
70 |
|
---|
71 | void vboxglGetFloatv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
72 | {
|
---|
73 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetFloatv, GLenum, GLfloat);
|
---|
74 | }
|
---|
75 |
|
---|
76 | void vboxglGetIntegerv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
77 | {
|
---|
78 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetIntegerv, GLenum, GLint);
|
---|
79 | }
|
---|
80 |
|
---|
81 | void vboxglGetLightfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
82 | {
|
---|
83 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetLightfv, GLenum ,GLenum, GLfloat);
|
---|
84 | }
|
---|
85 |
|
---|
86 | void vboxglGetLightiv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
87 | {
|
---|
88 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetLightiv, GLenum ,GLenum, GLint);
|
---|
89 | }
|
---|
90 |
|
---|
91 | void vboxglGetMaterialfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
92 | {
|
---|
93 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetMaterialfv, GLenum ,GLenum, GLfloat);
|
---|
94 | }
|
---|
95 |
|
---|
96 | void vboxglGetMaterialiv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
97 | {
|
---|
98 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetMaterialiv, GLenum ,GLenum, GLint);
|
---|
99 | }
|
---|
100 |
|
---|
101 | void vboxglGetPixelMapfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
102 | {
|
---|
103 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetPixelMapfv, GLenum, GLfloat);
|
---|
104 | }
|
---|
105 |
|
---|
106 | void vboxglGetPixelMapuiv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
107 | {
|
---|
108 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetPixelMapuiv, GLenum, GLuint);
|
---|
109 | }
|
---|
110 |
|
---|
111 | void vboxglGetPixelMapusv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
112 | {
|
---|
113 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetPixelMapusv, GLenum, GLushort);
|
---|
114 | }
|
---|
115 |
|
---|
116 | void vboxglGetTexEnviv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
117 | {
|
---|
118 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexEnviv, GLenum, GLenum, GLint);
|
---|
119 | }
|
---|
120 |
|
---|
121 | void vboxglGetTexEnvfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
122 | {
|
---|
123 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexEnvfv, GLenum, GLenum, GLfloat);
|
---|
124 | }
|
---|
125 |
|
---|
126 | void vboxglGetTexGendv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
127 | {
|
---|
128 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexGendv, GLenum, GLenum, GLdouble);
|
---|
129 | }
|
---|
130 |
|
---|
131 | void vboxglGetTexGenfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
132 | {
|
---|
133 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexGenfv, GLenum, GLenum, GLfloat);
|
---|
134 | }
|
---|
135 |
|
---|
136 | void vboxglGetTexGeniv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
137 | {
|
---|
138 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexGeniv, GLenum, GLenum, GLint);
|
---|
139 | }
|
---|
140 |
|
---|
141 | void vboxglGetTexParameterfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
142 | {
|
---|
143 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexParameterfv, GLenum, GLenum, GLfloat);
|
---|
144 | }
|
---|
145 |
|
---|
146 | void vboxglGetTexParameteriv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
147 | {
|
---|
148 | VBOX_OGL_GEN_SYNC_OP3_PASS_PTR(GetTexParameteriv, GLenum, GLenum, GLint);
|
---|
149 | }
|
---|
150 |
|
---|
151 | void vboxglGetClipPlane (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
152 | {
|
---|
153 | VBOX_OGL_GEN_SYNC_OP2_PASS_PTR(GetClipPlane, GLenum, GLdouble);
|
---|
154 | }
|
---|
155 |
|
---|
156 | void vboxglGetPolygonStipple (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
157 | {
|
---|
158 | VBOX_OGL_GEN_SYNC_OP1_PASS_PTR(GetPolygonStipple, GLubyte);
|
---|
159 | }
|
---|
160 |
|
---|
161 | void vboxglGetTexLevelParameterfv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
162 | {
|
---|
163 | VBOX_OGL_GEN_SYNC_OP4_PASS_PTR(GetTexLevelParameterfv, GLenum, GLint, GLenum, GLfloat);
|
---|
164 | }
|
---|
165 |
|
---|
166 | void vboxglGetTexLevelParameteriv (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
167 | {
|
---|
168 | VBOX_OGL_GEN_SYNC_OP4_PASS_PTR(GetTexLevelParameteriv, GLenum, GLint, GLenum, GLint);
|
---|
169 | }
|
---|
170 |
|
---|
171 | void vboxglGetTexImage (VBOXOGLCTX *pClient, uint8_t *pCmdBuffer)
|
---|
172 | {
|
---|
173 | VBOX_OGL_GEN_SYNC_OP5_PASS_PTR(GetTexImage, GLenum, GLint, GLenum, GLenum, GLvoid);
|
---|
174 | }
|
---|