Merge branch 'mesa_7_5_branch'
[mesa.git] / src / mesa / main / context.h
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.1
4 *
5 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 */
24
25
26 /**
27 * \file context.h
28 * Mesa context and visual-related functions.
29 *
30 * There are three large Mesa data types/classes which are meant to be
31 * used by device drivers:
32 * - GLcontext: this contains the Mesa rendering state
33 * - GLvisual: this describes the color buffer (RGB vs. ci), whether or not
34 * there's a depth buffer, stencil buffer, etc.
35 * - GLframebuffer: contains pointers to the depth buffer, stencil buffer,
36 * accum buffer and alpha buffers.
37 *
38 * These types should be encapsulated by corresponding device driver
39 * data types. See xmesa.h and xmesaP.h for an example.
40 *
41 * In OOP terms, GLcontext, GLvisual, and GLframebuffer are base classes
42 * which the device driver must derive from.
43 *
44 * The following functions create and destroy these data types.
45 */
46
47
48 #ifndef CONTEXT_H
49 #define CONTEXT_H
50
51
52 #include "imports.h"
53 #include "mtypes.h"
54
55
56 struct _glapi_table;
57
58
59 /** \name Visual-related functions */
60 /*@{*/
61
62 extern GLvisual *
63 _mesa_create_visual( GLboolean rgbFlag,
64 GLboolean dbFlag,
65 GLboolean stereoFlag,
66 GLint redBits,
67 GLint greenBits,
68 GLint blueBits,
69 GLint alphaBits,
70 GLint indexBits,
71 GLint depthBits,
72 GLint stencilBits,
73 GLint accumRedBits,
74 GLint accumGreenBits,
75 GLint accumBlueBits,
76 GLint accumAlphaBits,
77 GLint numSamples );
78
79 extern GLboolean
80 _mesa_initialize_visual( GLvisual *v,
81 GLboolean rgbFlag,
82 GLboolean dbFlag,
83 GLboolean stereoFlag,
84 GLint redBits,
85 GLint greenBits,
86 GLint blueBits,
87 GLint alphaBits,
88 GLint indexBits,
89 GLint depthBits,
90 GLint stencilBits,
91 GLint accumRedBits,
92 GLint accumGreenBits,
93 GLint accumBlueBits,
94 GLint accumAlphaBits,
95 GLint numSamples );
96
97 extern void
98 _mesa_destroy_visual( GLvisual *vis );
99
100 /*@}*/
101
102
103 /** \name Context-related functions */
104 /*@{*/
105
106 extern GLcontext *
107 _mesa_create_context( const GLvisual *visual,
108 GLcontext *share_list,
109 const struct dd_function_table *driverFunctions,
110 void *driverContext );
111
112 extern GLboolean
113 _mesa_initialize_context( GLcontext *ctx,
114 const GLvisual *visual,
115 GLcontext *share_list,
116 const struct dd_function_table *driverFunctions,
117 void *driverContext );
118
119 extern void
120 _mesa_initialize_context_extra(GLcontext *ctx);
121
122 extern void
123 _mesa_free_context_data( GLcontext *ctx );
124
125 extern void
126 _mesa_destroy_context( GLcontext *ctx );
127
128
129 extern void
130 _mesa_copy_context(const GLcontext *src, GLcontext *dst, GLuint mask);
131
132
133 extern void
134 _mesa_make_current( GLcontext *ctx, GLframebuffer *drawBuffer,
135 GLframebuffer *readBuffer );
136
137 extern GLboolean
138 _mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare);
139
140 extern GLcontext *
141 _mesa_get_current_context(void);
142
143 /*@}*/
144
145
146 extern void
147 _mesa_notifySwapBuffers(__GLcontext *gc);
148
149
150 extern struct _glapi_table *
151 _mesa_get_dispatch(GLcontext *ctx);
152
153
154 void
155 _mesa_set_mvp_with_dp4( GLcontext *ctx,
156 GLboolean flag );
157
158
159 /** \name Miscellaneous */
160 /*@{*/
161
162 extern void
163 _mesa_record_error( GLcontext *ctx, GLenum error );
164
165 extern void GLAPIENTRY
166 _mesa_Finish( void );
167
168 extern void GLAPIENTRY
169 _mesa_Flush( void );
170
171 /*@}*/
172
173
174
175 /**
176 * \name Macros for flushing buffered rendering commands before state changes,
177 * checking if inside glBegin/glEnd, etc.
178 */
179 /*@{*/
180
181 /**
182 * Flush vertices.
183 *
184 * \param ctx GL context.
185 * \param newstate new state.
186 *
187 * Checks if dd_function_table::NeedFlush is marked to flush stored vertices,
188 * and calls dd_function_table::FlushVertices if so. Marks
189 * __GLcontextRec::NewState with \p newstate.
190 */
191 #define FLUSH_VERTICES(ctx, newstate) \
192 do { \
193 if (MESA_VERBOSE & VERBOSE_STATE) \
194 _mesa_debug(ctx, "FLUSH_VERTICES in %s\n", MESA_FUNCTION);\
195 if (ctx->Driver.NeedFlush & FLUSH_STORED_VERTICES) \
196 ctx->Driver.FlushVertices(ctx, FLUSH_STORED_VERTICES); \
197 ctx->NewState |= newstate; \
198 } while (0)
199
200 /**
201 * Flush current state.
202 *
203 * \param ctx GL context.
204 * \param newstate new state.
205 *
206 * Checks if dd_function_table::NeedFlush is marked to flush current state,
207 * and calls dd_function_table::FlushVertices if so. Marks
208 * __GLcontextRec::NewState with \p newstate.
209 */
210 #define FLUSH_CURRENT(ctx, newstate) \
211 do { \
212 if (MESA_VERBOSE & VERBOSE_STATE) \
213 _mesa_debug(ctx, "FLUSH_CURRENT in %s\n", MESA_FUNCTION); \
214 if (ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT) \
215 ctx->Driver.FlushVertices(ctx, FLUSH_UPDATE_CURRENT); \
216 ctx->NewState |= newstate; \
217 } while (0)
218
219 /**
220 * Macro to assert that the API call was made outside the
221 * glBegin()/glEnd() pair, with return value.
222 *
223 * \param ctx GL context.
224 * \param retval value to return value in case the assertion fails.
225 */
226 #define ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, retval) \
227 do { \
228 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \
229 _mesa_error(ctx, GL_INVALID_OPERATION, "Inside glBegin/glEnd"); \
230 return retval; \
231 } \
232 } while (0)
233
234 /**
235 * Macro to assert that the API call was made outside the
236 * glBegin()/glEnd() pair.
237 *
238 * \param ctx GL context.
239 */
240 #define ASSERT_OUTSIDE_BEGIN_END(ctx) \
241 do { \
242 if (ctx->Driver.CurrentExecPrimitive != PRIM_OUTSIDE_BEGIN_END) { \
243 _mesa_error(ctx, GL_INVALID_OPERATION, "Inside glBegin/glEnd"); \
244 return; \
245 } \
246 } while (0)
247
248 /**
249 * Macro to assert that the API call was made outside the
250 * glBegin()/glEnd() pair and flush the vertices.
251 *
252 * \param ctx GL context.
253 */
254 #define ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx) \
255 do { \
256 ASSERT_OUTSIDE_BEGIN_END(ctx); \
257 FLUSH_VERTICES(ctx, 0); \
258 } while (0)
259
260 /**
261 * Macro to assert that the API call was made outside the
262 * glBegin()/glEnd() pair and flush the vertices, with return value.
263 *
264 * \param ctx GL context.
265 * \param retval value to return value in case the assertion fails.
266 */
267 #define ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH_WITH_RETVAL(ctx, retval) \
268 do { \
269 ASSERT_OUTSIDE_BEGIN_END_WITH_RETVAL(ctx, retval); \
270 FLUSH_VERTICES(ctx, 0); \
271 } while (0)
272
273 /*@}*/
274
275
276
277 /**
278 * Is the secondary color needed?
279 */
280 #define NEED_SECONDARY_COLOR(CTX) \
281 (((CTX)->Light.Enabled && \
282 (CTX)->Light.Model.ColorControl == GL_SEPARATE_SPECULAR_COLOR) \
283 || (CTX)->Fog.ColorSumEnabled \
284 || ((CTX)->VertexProgram._Current && \
285 ((CTX)->VertexProgram._Current != (CTX)->VertexProgram._TnlProgram) && \
286 ((CTX)->VertexProgram._Current->Base.InputsRead & VERT_BIT_COLOR1)) \
287 || ((CTX)->FragmentProgram._Current && \
288 ((CTX)->FragmentProgram._Current != (CTX)->FragmentProgram._TexEnvProgram) && \
289 ((CTX)->FragmentProgram._Current->Base.InputsRead & FRAG_BIT_COL1)) \
290 )
291
292
293 /**
294 * Is RGBA LogicOp enabled?
295 */
296 #define RGBA_LOGICOP_ENABLED(CTX) \
297 ((CTX)->Color.ColorLogicOpEnabled || \
298 ((CTX)->Color.BlendEnabled && (CTX)->Color.BlendEquationRGB == GL_LOGIC_OP))
299
300
301 #endif /* CONTEXT_H */