VirtualBox

source: vbox/trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_simpleget.py@ 33281

Last change on this file since 33281 was 31808, checked in by vboxsync, 14 years ago

crOpenGL: resource sharing between contexts

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1# Copyright (c) 2001, Stanford University
2# All rights reserved.
3#
4# See the file LICENSE.txt for information on redistributing this software.
5
6import sys
7
8import apiutil
9
10
11apiutil.CopyrightC()
12
13print """#include "cr_spu.h"
14#include "chromium.h"
15#include "cr_error.h"
16#include "cr_mem.h"
17#include "cr_net.h"
18#include "server_dispatch.h"
19#include "server.h"
20"""
21
22from get_sizes import *;
23
24
25funcs = [ 'GetIntegerv', 'GetFloatv', 'GetDoublev', 'GetBooleanv' ]
26types = [ 'GLint', 'GLfloat', 'GLdouble', 'GLboolean' ]
27
28for index in range(len(funcs)):
29 func_name = funcs[index]
30 params = apiutil.Parameters(func_name)
31 print 'void SERVER_DISPATCH_APIENTRY crServerDispatch%s( %s )' % ( func_name, apiutil.MakeDeclarationString(params))
32 print '{'
33 print '\t%s *get_values;' % types[index]
34 print '\tint tablesize;'
35 print """
36 #ifdef CR_ARB_texture_compression
37 if (GL_COMPRESSED_TEXTURE_FORMATS_ARB == pname)
38 {
39 GLint numtexfmts = 0;
40 cr_server.head_spu->dispatch_table.GetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB, &numtexfmts);
41 tablesize = numtexfmts * sizeof(%s);
42 }
43 else
44 #endif
45 {
46 tablesize = __numValues( pname ) * sizeof(%s);
47 }
48 """ % (types[index], types[index])
49 print '\t(void) params;'
50 print '\tget_values = (%s *) crAlloc( tablesize );' % types[index]
51 print '\tif (tablesize>0)'
52 print '\tcr_server.head_spu->dispatch_table.%s( pname, get_values );' % func_name
53 print """
54 if (GL_TEXTURE_BINDING_1D==pname
55 || GL_TEXTURE_BINDING_2D==pname
56 || GL_TEXTURE_BINDING_3D==pname
57 || GL_TEXTURE_BINDING_RECTANGLE_ARB==pname
58 || GL_TEXTURE_BINDING_CUBE_MAP_ARB==pname)
59 {
60 GLuint texid;
61 CRASSERT(tablesize/sizeof(%s)==1);
62 texid = (GLuint) *get_values;
63 *get_values = (%s) crStateTextureHWIDtoID(texid);
64 }
65 else if (GL_CURRENT_PROGRAM==pname)
66 {
67 GLuint programid;
68 CRASSERT(tablesize/sizeof(%s)==1);
69 programid = (GLuint) *get_values;
70 *get_values = (%s) crStateGLSLProgramHWIDtoID(programid);
71 }
72 else if (GL_FRAMEBUFFER_BINDING_EXT==pname
73 ||GL_READ_FRAMEBUFFER_BINDING==pname)
74 {
75 GLuint fboid;
76 CRASSERT(tablesize/sizeof(%s)==1);
77 fboid = crStateFBOHWIDtoID((GLuint) *get_values);
78 if (crServerIsRedirectedToFBO()
79 && fboid==cr_server.curClient->currentMural->idFBO)
80 {
81 fboid = 0;
82 }
83 *get_values = (%s) fboid;
84 }
85 else if (GL_RENDERBUFFER_BINDING_EXT==pname)
86 {
87 GLuint rbid;
88 CRASSERT(tablesize/sizeof(%s)==1);
89 rbid = (GLuint) *get_values;
90 *get_values = (%s) crStateRBOHWIDtoID(rbid);
91 }
92 else if (GL_ARRAY_BUFFER_BINDING_ARB==pname
93 || GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB==pname
94 || GL_VERTEX_ARRAY_BUFFER_BINDING_ARB==pname
95 || GL_NORMAL_ARRAY_BUFFER_BINDING_ARB==pname
96 || GL_COLOR_ARRAY_BUFFER_BINDING_ARB==pname
97 || GL_INDEX_ARRAY_BUFFER_BINDING_ARB==pname
98 || GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB==pname
99 || GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB==pname
100 || GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB==pname
101 || GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB==pname
102 || GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB==pname)
103 {
104 GLuint bufid;
105 CRASSERT(tablesize/sizeof(%s)==1);
106 bufid = (GLuint) *get_values;
107 *get_values = (%s) crStateBufferHWIDtoID(bufid);
108 }
109 """ % (types[index], types[index], types[index], types[index], types[index], types[index], types[index], types[index], types[index], types[index])
110 print '\tcrServerReturnValue( get_values, tablesize );'
111 print '\tcrFree(get_values);'
112 print '}\n'
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette