1 | /** @file
|
---|
2 | * OpenGL:
|
---|
3 | * Common header for host service and guest clients.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | #ifndef ___VBox_HostService_VBoxOpenGLSvc_h
|
---|
28 | #define ___VBox_HostService_VBoxOpenGLSvc_h
|
---|
29 |
|
---|
30 | #include <VBox/types.h>
|
---|
31 | #include <VBox/VBoxGuest.h>
|
---|
32 | #include <VBox/hgcmsvc.h>
|
---|
33 |
|
---|
34 | /* OpenGL command buffer size */
|
---|
35 | #define VBOX_OGL_MAX_CMD_BUFFER (128*1024)
|
---|
36 | #define VBOX_OGL_CMD_ALIGN 4
|
---|
37 | #define VBOX_OGL_CMD_ALIGN_MASK (VBOX_OGL_CMD_ALIGN-1)
|
---|
38 | #define VBOX_OGL_CMD_MAGIC 0x1234ABCD
|
---|
39 |
|
---|
40 | /* for debugging */
|
---|
41 | #define VBOX_OGL_CMD_STRICT
|
---|
42 |
|
---|
43 | /* OpenGL command block */
|
---|
44 | typedef struct
|
---|
45 | {
|
---|
46 | #ifdef VBOX_OGL_CMD_STRICT
|
---|
47 | uint32_t Magic;
|
---|
48 | #endif
|
---|
49 | uint32_t enmOp;
|
---|
50 | uint32_t cbCmd;
|
---|
51 | uint32_t cParams;
|
---|
52 | /* start of variable size parameter array */
|
---|
53 | } VBOX_OGL_CMD, *PVBOX_OGL_CMD;
|
---|
54 |
|
---|
55 | typedef struct
|
---|
56 | {
|
---|
57 | #ifdef VBOX_OGL_CMD_STRICT
|
---|
58 | uint32_t Magic;
|
---|
59 | #endif
|
---|
60 | uint32_t cbParam;
|
---|
61 | /* start of variable size parameter */
|
---|
62 | } VBOX_OGL_VAR_PARAM, *PVBOX_OGL_VAR_PARAM;
|
---|
63 |
|
---|
64 | /** OpenGL Folders service functions. (guest)
|
---|
65 | * @{
|
---|
66 | */
|
---|
67 |
|
---|
68 | /** Query mappings changes. */
|
---|
69 | #define VBOXOGL_FN_GLGETSTRING (1)
|
---|
70 | #define VBOXOGL_FN_GLFLUSH (2)
|
---|
71 | #define VBOXOGL_FN_GLFLUSHPTR (3)
|
---|
72 | #define VBOXOGL_FN_GLCHECKEXT (4)
|
---|
73 |
|
---|
74 | /** @} */
|
---|
75 |
|
---|
76 | /** Function parameter structures.
|
---|
77 | * @{
|
---|
78 | */
|
---|
79 |
|
---|
80 | /**
|
---|
81 | * VBOXOGL_FN_GLGETSTRING
|
---|
82 | */
|
---|
83 |
|
---|
84 | /** Parameters structure. */
|
---|
85 | typedef struct
|
---|
86 | {
|
---|
87 | VBoxGuestHGCMCallInfo hdr;
|
---|
88 |
|
---|
89 | /** 32bit, in: name
|
---|
90 | * GLenum name parameter
|
---|
91 | */
|
---|
92 | HGCMFunctionParameter name;
|
---|
93 |
|
---|
94 | /** pointer, in/out
|
---|
95 | * Buffer for requested string
|
---|
96 | */
|
---|
97 | HGCMFunctionParameter pString;
|
---|
98 | } VBoxOGLglGetString;
|
---|
99 |
|
---|
100 | /** Number of parameters */
|
---|
101 | #define VBOXOGL_CPARMS_GLGETSTRING (2)
|
---|
102 |
|
---|
103 |
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * VBOXOGL_FN_GLFLUSH
|
---|
107 | */
|
---|
108 |
|
---|
109 | /** Parameters structure. */
|
---|
110 | typedef struct
|
---|
111 | {
|
---|
112 | VBoxGuestHGCMCallInfo hdr;
|
---|
113 |
|
---|
114 | /** pointer, in
|
---|
115 | * Command buffer
|
---|
116 | */
|
---|
117 | HGCMFunctionParameter pCmdBuffer;
|
---|
118 |
|
---|
119 | /** 32bit, out: cCommands
|
---|
120 | * Number of commands in the buffer
|
---|
121 | */
|
---|
122 | HGCMFunctionParameter cCommands;
|
---|
123 |
|
---|
124 | /** 64bit, out: retval
|
---|
125 | * uint64_t return code of last command
|
---|
126 | */
|
---|
127 | HGCMFunctionParameter retval;
|
---|
128 |
|
---|
129 | /** 32bit, out: lasterror
|
---|
130 | * GLenum current last error
|
---|
131 | */
|
---|
132 | HGCMFunctionParameter lasterror;
|
---|
133 |
|
---|
134 | } VBoxOGLglFlush;
|
---|
135 |
|
---|
136 | /** Number of parameters */
|
---|
137 | #define VBOXOGL_CPARMS_GLFLUSH (4)
|
---|
138 |
|
---|
139 | /**
|
---|
140 | * VBOXOGL_FN_GLFLUSHPTR
|
---|
141 | */
|
---|
142 |
|
---|
143 | /** Parameters structure. */
|
---|
144 | typedef struct
|
---|
145 | {
|
---|
146 | VBoxGuestHGCMCallInfo hdr;
|
---|
147 |
|
---|
148 | /** pointer, in
|
---|
149 | * Command buffer
|
---|
150 | */
|
---|
151 | HGCMFunctionParameter pCmdBuffer;
|
---|
152 |
|
---|
153 | /** 32bit, out: cCommands
|
---|
154 | * Number of commands in the buffer
|
---|
155 | */
|
---|
156 | HGCMFunctionParameter cCommands;
|
---|
157 |
|
---|
158 | /** pointer, in
|
---|
159 | * Last command's final parameter memory block
|
---|
160 | */
|
---|
161 | HGCMFunctionParameter pLastParam;
|
---|
162 |
|
---|
163 | /** 64bit, out: retval
|
---|
164 | * uint64_t return code of last command
|
---|
165 | */
|
---|
166 | HGCMFunctionParameter retval;
|
---|
167 |
|
---|
168 | /** 32bit, out: lasterror
|
---|
169 | * GLenum current last error
|
---|
170 | */
|
---|
171 | HGCMFunctionParameter lasterror;
|
---|
172 |
|
---|
173 | } VBoxOGLglFlushPtr;
|
---|
174 |
|
---|
175 | /** Number of parameters */
|
---|
176 | #define VBOXOGL_CPARMS_GLFLUSHPTR (5)
|
---|
177 |
|
---|
178 |
|
---|
179 | /**
|
---|
180 | * VBOXOGL_FN_GLCHECKEXT
|
---|
181 | */
|
---|
182 |
|
---|
183 | /** Parameters structure. */
|
---|
184 | typedef struct
|
---|
185 | {
|
---|
186 | VBoxGuestHGCMCallInfo hdr;
|
---|
187 |
|
---|
188 | /** pointer, in
|
---|
189 | * Extension function name
|
---|
190 | */
|
---|
191 | HGCMFunctionParameter pszExtFnName;
|
---|
192 |
|
---|
193 | } VBoxOGLglCheckExt;
|
---|
194 |
|
---|
195 | /** Number of parameters */
|
---|
196 | #define VBOXOGL_CPARMS_GLCHECKEXT (1)
|
---|
197 |
|
---|
198 | /** @} */
|
---|
199 |
|
---|
200 |
|
---|
201 | #endif
|
---|