1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
/* $Id: server_glsl.c $ */
/** @file
* VBox OpenGL - GLSL related functions
*/
/*
* Copyright (C) 2009-2019 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
#include "cr_spu.h"
#include "chromium.h"
#include "cr_error.h"
#include "cr_mem.h"
#include "cr_net.h"
#include "server_dispatch.h"
#include "server.h"
#ifdef CR_OPENGL_VERSION_2_0
void SERVER_DISPATCH_APIENTRY crServerDispatchShaderSource(GLuint shader, GLsizei count, const char ** string, const GLint * length)
{
/*@todo?crStateShaderSource(shader...);*/
#ifdef DEBUG_misha
GLenum err = cr_server.head_spu->dispatch_table.GetError();
#endif
cr_server.head_spu->dispatch_table.ShaderSource(crStateGetShaderHWID(shader), count, string, length);
#ifdef DEBUG_misha
err = cr_server.head_spu->dispatch_table.GetError();
CRASSERT(err == GL_NO_ERROR);
#endif
CR_SERVER_DUMP_SHADER_SOURCE(shader);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchCompileShader(GLuint shader)
{
#ifdef DEBUG_misha
GLint iCompileStatus = GL_FALSE;
#endif
crStateCompileShader(shader);
cr_server.head_spu->dispatch_table.CompileShader(crStateGetShaderHWID(shader));
#ifdef DEBUG_misha
cr_server.head_spu->dispatch_table.GetShaderiv(crStateGetShaderHWID(shader), GL_COMPILE_STATUS, &iCompileStatus);
Assert(iCompileStatus == GL_TRUE);
#endif
CR_SERVER_DUMP_COMPILE_SHADER(shader);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchDeleteShader(GLuint shader)
{
GLuint shaderHW = crStateGetShaderHWID(shader);
crStateDeleteShader(shader);
if (shaderHW)
cr_server.head_spu->dispatch_table.DeleteShader(shaderHW);
else
crWarning("crServerDispatchDeleteShader: hwid not found for shader(%d)", shader);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchAttachShader(GLuint program, GLuint shader)
{
crStateAttachShader(program, shader);
cr_server.head_spu->dispatch_table.AttachShader(crStateGetProgramHWID(program), crStateGetShaderHWID(shader));
}
void SERVER_DISPATCH_APIENTRY crServerDispatchDetachShader(GLuint program, GLuint shader)
{
crStateDetachShader(program, shader);
cr_server.head_spu->dispatch_table.DetachShader(crStateGetProgramHWID(program), crStateGetShaderHWID(shader));
}
void SERVER_DISPATCH_APIENTRY crServerDispatchLinkProgram(GLuint program)
{
crStateLinkProgram(program);
cr_server.head_spu->dispatch_table.LinkProgram(crStateGetProgramHWID(program));
CR_SERVER_DUMP_LINK_PROGRAM(program);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchUseProgram(GLuint program)
{
crStateUseProgram(program);
cr_server.head_spu->dispatch_table.UseProgram(crStateGetProgramHWID(program));
}
void SERVER_DISPATCH_APIENTRY crServerDispatchDeleteProgram(GLuint program)
{
GLuint hwId = crStateGetProgramHWID(program);
crStateDeleteProgram(program);
if (hwId)
cr_server.head_spu->dispatch_table.DeleteProgram(hwId);
else
crWarning("crServerDispatchDeleteProgram: hwid not found for program(%d)", program);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchValidateProgram(GLuint program)
{
crStateValidateProgram(program);
cr_server.head_spu->dispatch_table.ValidateProgram(crStateGetProgramHWID(program));
}
void SERVER_DISPATCH_APIENTRY crServerDispatchBindAttribLocation(GLuint program, GLuint index, const char * name)
{
crStateBindAttribLocation(program, index, name);
cr_server.head_spu->dispatch_table.BindAttribLocation(crStateGetProgramHWID(program), index, name);
}
void SERVER_DISPATCH_APIENTRY crServerDispatchDeleteObjectARB(VBoxGLhandleARB obj)
{
GLuint hwid = crStateDeleteObjectARB(obj);
if (hwid)
cr_server.head_spu->dispatch_table.DeleteObjectARB(hwid);
else
crWarning("zero hwid for object %d", obj);
}
GLint SERVER_DISPATCH_APIENTRY crServerDispatchGetAttribLocation( GLuint program, const char * name )
{
GLint retval;
retval = cr_server.head_spu->dispatch_table.GetAttribLocation(crStateGetProgramHWID(program), name );
crServerReturnValue( &retval, sizeof(retval) );
return retval; /* WILL PROBABLY BE IGNORED */
}
VBoxGLhandleARB SERVER_DISPATCH_APIENTRY crServerDispatchGetHandleARB( GLenum pname )
{
VBoxGLhandleARB retval;
retval = cr_server.head_spu->dispatch_table.GetHandleARB(pname);
if (pname==GL_PROGRAM_OBJECT_ARB)
{
retval = crStateGLSLProgramHWIDtoID(retval);
}
crServerReturnValue( &retval, sizeof(retval) );
return retval; /* WILL PROBABLY BE IGNORED */
}
GLint SERVER_DISPATCH_APIENTRY crServerDispatchGetUniformLocation(GLuint program, const char * name)
{
GLint retval;
retval = cr_server.head_spu->dispatch_table.GetUniformLocation(crStateGetProgramHWID(program), name);
crServerReturnValue( &retval, sizeof(retval) );
return retval; /* WILL PROBABLY BE IGNORED */
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetProgramiv( GLuint program, GLenum pname, GLint * params )
{
GLint local_params[1];
(void) params;
cr_server.head_spu->dispatch_table.GetProgramiv(crStateGetProgramHWID(program), pname, local_params);
crServerReturnValue( &(local_params[0]), 1*sizeof(GLint) );
}
void SERVER_DISPATCH_APIENTRY crServerDispatchGetShaderiv( GLuint shader, GLenum pname, GLint * params )
{
GLint local_params[1];
(void) params;
cr_server.head_spu->dispatch_table.GetShaderiv( crStateGetShaderHWID(shader), pname, local_params );
crServerReturnValue( &(local_params[0]), 1*sizeof(GLint) );
}
#endif /* #ifdef CR_OPENGL_VERSION_2_0 */
/* XXXX Note: shared/separate Program ID numbers aren't totally implemented! */
GLuint crServerTranslateProgramID( GLuint id )
{
if (!cr_server.sharedPrograms && id) {
int client = cr_server.curClient->number;
return id + client * 100000;
}
return id;
}
void SERVER_DISPATCH_APIENTRY crServerDispatchDeleteProgramsARB(GLsizei n, const GLuint * programs)
{
GLuint *pLocalProgs;
GLint i;
if (n <= 0 || n >= INT32_MAX / sizeof(GLuint))
{
crError("crServerDispatchDeleteProgramsARB: parameter 'n' is out of range");
return;
}
pLocalProgs = (GLuint *)crAlloc(n * sizeof(GLuint));
if (!pLocalProgs) {
crError("crServerDispatchDeleteProgramsARB: out of memory");
return;
}
for (i = 0; i < n; i++) {
pLocalProgs[i] = crServerTranslateProgramID(programs[i]);
}
crStateDeleteProgramsARB(n, pLocalProgs);
cr_server.head_spu->dispatch_table.DeleteProgramsARB(n, pLocalProgs);
crFree(pLocalProgs);
}
/** @todo will fail for progs loaded from snapshot */
GLboolean SERVER_DISPATCH_APIENTRY crServerDispatchIsProgramARB( GLuint program )
{
GLboolean retval;
program = crServerTranslateProgramID(program);
retval = cr_server.head_spu->dispatch_table.IsProgramARB( program );
crServerReturnValue( &retval, sizeof(retval) );
return retval; /* WILL PROBABLY BE IGNORED */
}
GLboolean SERVER_DISPATCH_APIENTRY
crServerDispatchAreProgramsResidentNV(GLsizei n, const GLuint *programs,
GLboolean *residences)
{
GLboolean retval = GL_FALSE;
GLboolean *res;
GLsizei i;
(void) residences;
if (n <= 0 || n >= INT32_MAX / sizeof(GLuint))
{
crError("crServerDispatchAreProgramsResidentNV: parameter 'n' is out of range");
return GL_FALSE;
}
res = (GLboolean *)crCalloc(n * sizeof(GLboolean));
if (!res) {
crError("crServerDispatchAreProgramsResidentNV: out of memory");
return GL_FALSE;
}
if (!cr_server.sharedTextureObjects) {
GLuint *programs2 = (GLuint *) crCalloc(n * sizeof(GLuint));
if (programs2)
{
for (i = 0; i < n; i++)
programs2[i] = crServerTranslateProgramID(programs[i]);
retval = cr_server.head_spu->dispatch_table.AreProgramsResidentNV(n, programs2, res);
crFree(programs2);
}
else
{
crError("crServerDispatchAreProgramsResidentNV: out of memory");
}
}
else {
retval = cr_server.head_spu->dispatch_table.AreProgramsResidentNV(n, programs, res);
}
crServerReturnValue(res, n * sizeof(GLboolean));
crFree(res);
return retval; /* WILL PROBABLY BE IGNORED */
}
|