blob: ae1c576248e9f65e62fe6bc73b5b942b285a7125 [file] [log] [blame]
Keith Whitwell6dc85572003-07-17 13:43:59 +00001/**
2 * \file context.c
3 * Mesa context/visual/framebuffer management functions.
4 * \author Brian Paul
5 */
6
jtgafb833d1999-08-19 00:55:39 +00007/*
8 * Mesa 3-D graphics library
Brian Paul363344f2005-09-13 14:48:28 +00009 * Version: 6.5
jtgafb833d1999-08-19 00:55:39 +000010 *
Brian Paul2aabdc72006-02-24 18:19:11 +000011 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
jtgafb833d1999-08-19 00:55:39 +000012 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included
21 * in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
27 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
Keith Whitwell6dc85572003-07-17 13:43:59 +000032/**
Brian Paul253204f2004-09-10 00:45:12 +000033 * \mainpage Mesa Main Module
Keith Whitwell6dc85572003-07-17 13:43:59 +000034 *
Brian Paul253204f2004-09-10 00:45:12 +000035 * \section MainIntroduction Introduction
Keith Whitwell6dc85572003-07-17 13:43:59 +000036 *
Brian Paul253204f2004-09-10 00:45:12 +000037 * The Mesa Main module consists of all the files in the main/ directory.
38 * Among the features of this module are:
39 * <UL>
40 * <LI> Structures to represent most GL state </LI>
41 * <LI> State set/get functions </LI>
42 * <LI> Display lists </LI>
43 * <LI> Texture unit, object and image handling </LI>
44 * <LI> Matrix and attribute stacks </LI>
45 * </UL>
Keith Whitwell6dc85572003-07-17 13:43:59 +000046 *
Brian Paul253204f2004-09-10 00:45:12 +000047 * Other modules are responsible for API dispatch, vertex transformation,
48 * point/line/triangle setup, rasterization, vertex array caching,
49 * vertex/fragment programs/shaders, etc.
Keith Whitwell6dc85572003-07-17 13:43:59 +000050 *
51 *
52 * \section AboutDoxygen About Doxygen
53 *
54 * If you're viewing this information as Doxygen-generated HTML you'll
55 * see the documentation index at the top of this page.
56 *
57 * The first line lists the Mesa source code modules.
58 * The second line lists the indexes available for viewing the documentation
59 * for each module.
60 *
61 * Selecting the <b>Main page</b> link will display a summary of the module
62 * (this page).
63 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000064 * Selecting <b>Data Structures</b> will list all C structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +000065 *
66 * Selecting the <b>File List</b> link will list all the source files in
67 * the module.
68 * Selecting a filename will show a list of all functions defined in that file.
69 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000070 * Selecting the <b>Data Fields</b> link will display a list of all
Keith Whitwell6dc85572003-07-17 13:43:59 +000071 * documented structure members.
72 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000073 * Selecting the <b>Globals</b> link will display a list
Keith Whitwell6dc85572003-07-17 13:43:59 +000074 * of all functions, structures, global variables and macros in the module.
75 *
76 */
77
78
Brian Paulfbd8f211999-11-11 01:22:25 +000079#include "glheader.h"
Brian Paul3c634522002-10-24 23:57:19 +000080#include "imports.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000081#include "accum.h"
Brian Paulc04bb512006-07-11 21:56:43 +000082#include "arrayobj.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000083#include "attrib.h"
84#include "blend.h"
Brian Paulb1394fa2000-09-26 20:53:53 +000085#include "buffers.h"
Brian Paul148a2842003-09-17 03:40:11 +000086#include "bufferobj.h"
Brian Paul4bdcfe52000-04-17 17:57:04 +000087#include "colortab.h"
jtgafb833d1999-08-19 00:55:39 +000088#include "context.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000089#include "debug.h"
90#include "depth.h"
jtgafb833d1999-08-19 00:55:39 +000091#include "dlist.h"
92#include "eval.h"
93#include "enums.h"
Brian Paul585a68c1999-09-11 11:31:34 +000094#include "extensions.h"
Brian Paule4b23562005-05-04 20:11:35 +000095#include "fbobject.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000096#include "feedback.h"
jtgafb833d1999-08-19 00:55:39 +000097#include "fog.h"
Briane6a93812007-02-26 11:37:37 -070098#include "framebuffer.h"
Brian Paulb7a43041999-11-30 20:34:51 +000099#include "get.h"
Brian Paul9560f052000-01-31 23:11:39 +0000100#include "glthread.h"
Brian Paulf44898c2003-07-18 15:44:57 +0000101#include "glapioffsets.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000102#include "histogram.h"
103#include "hint.h"
jtgafb833d1999-08-19 00:55:39 +0000104#include "hash.h"
Brian Paul63d68302005-11-19 16:43:04 +0000105#include "atifragshader.h"
jtgafb833d1999-08-19 00:55:39 +0000106#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000107#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000108#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000109#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000110#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000111#include "pixel.h"
112#include "points.h"
113#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000114#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
115#include "program.h"
116#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000117#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000118#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000119#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000120#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000121#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000122#include "teximage.h"
123#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000124#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000125#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000126#include "varray.h"
Brian Paul363344f2005-09-13 14:48:28 +0000127#include "version.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000128#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000129#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000130#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000131#include "math/m_matrix.h"
132#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000133#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000134#endif
Brian9e4bae92006-12-20 09:27:42 -0700135#include "shader_api.h"
jtgafb833d1999-08-19 00:55:39 +0000136
davem69775355a2001-06-05 23:54:00 +0000137#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000138#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000139#endif
jtgafb833d1999-08-19 00:55:39 +0000140
Keith Whitwell23caf202000-11-16 21:05:34 +0000141#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000142int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000143#endif
144
145#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000146int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000147#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000148
Brian Paul86b84272001-12-14 02:50:01 +0000149
Brian Paul27558a12003-03-01 01:50:20 +0000150/* ubyte -> float conversion */
151GLfloat _mesa_ubyte_to_float_color_tab[256];
152
Brian Paul9a33a112002-06-13 04:28:29 +0000153static void
154free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
155
Brian Paul86b84272001-12-14 02:50:01 +0000156
Brian Paulb1394fa2000-09-26 20:53:53 +0000157/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000158/** \name OpenGL SI-style interface (new in Mesa 3.5)
159 *
160 * \if subset
161 * \note Most of these functions are never called in the Mesa subset.
162 * \endif
163 */
164/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000165
Keith Whitwell6dc85572003-07-17 13:43:59 +0000166/**
167 * Destroy context callback.
168 *
169 * \param gc context.
170 * \return GL_TRUE on success, or GL_FALSE on failure.
171 *
172 * \ifnot subset
173 * Called by window system/device driver (via __GLexports::destroyCurrent) when
174 * the rendering context is to be destroyed.
175 * \endif
176 *
177 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000178 */
179GLboolean
180_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000181{
182 if (gc) {
183 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000184 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000185 }
186 return GL_TRUE;
187}
188
Keith Whitwell6dc85572003-07-17 13:43:59 +0000189/**
190 * Unbind context callback.
191 *
192 * \param gc context.
193 * \return GL_TRUE on success, or GL_FALSE on failure.
194 *
195 * \ifnot subset
196 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000197 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000198 * \endif
199 *
200 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000201 */
202GLboolean
203_mesa_loseCurrent(__GLcontext *gc)
204{
205 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000206 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000207 return GL_TRUE;
208}
209
Keith Whitwell6dc85572003-07-17 13:43:59 +0000210/**
211 * Bind context callback.
212 *
213 * \param gc context.
214 * \return GL_TRUE on success, or GL_FALSE on failure.
215 *
216 * \ifnot subset
217 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000218 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000219 * \endif
220 *
221 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000222 */
223GLboolean
224_mesa_makeCurrent(__GLcontext *gc)
225{
226 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000227 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000228 return GL_TRUE;
229}
230
Keith Whitwell6dc85572003-07-17 13:43:59 +0000231/**
232 * Share context callback.
233 *
234 * \param gc context.
235 * \param gcShare shared context.
236 * \return GL_TRUE on success, or GL_FALSE on failure.
237 *
238 * \ifnot subset
239 * Called by window system/device driver (via __GLexports::shareContext)
240 * \endif
241 *
242 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000243 */
244GLboolean
245_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
246{
247 if (gc && gcShare && gc->Shared && gcShare->Shared) {
248 gc->Shared->RefCount--;
249 if (gc->Shared->RefCount == 0) {
250 free_shared_state(gc, gc->Shared);
251 }
252 gc->Shared = gcShare->Shared;
253 gc->Shared->RefCount++;
254 return GL_TRUE;
255 }
256 else {
257 return GL_FALSE;
258 }
259}
260
Keith Whitwell6dc85572003-07-17 13:43:59 +0000261
262#if _HAVE_FULL_GL
263/**
264 * Copy context callback.
265 */
Brian Paul9a33a112002-06-13 04:28:29 +0000266GLboolean
267_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
268{
269 if (dst && src) {
270 _mesa_copy_context( src, dst, mask );
271 return GL_TRUE;
272 }
273 else {
274 return GL_FALSE;
275 }
276}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000277#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000278
Keith Whitwell6dc85572003-07-17 13:43:59 +0000279/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000280GLboolean
281_mesa_forceCurrent(__GLcontext *gc)
282{
Brian Paula6c423d2004-08-25 15:59:48 +0000283 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000284 return GL_TRUE;
285}
286
Keith Whitwell6dc85572003-07-17 13:43:59 +0000287/**
288 * Windows/buffer resizing notification callback.
289 *
290 * \param gc GL context.
291 * \return GL_TRUE on success, or GL_FALSE on failure.
292 */
Brian Paul9a33a112002-06-13 04:28:29 +0000293GLboolean
294_mesa_notifyResize(__GLcontext *gc)
295{
Brian Paul9a33a112002-06-13 04:28:29 +0000296 /* update viewport, resize software buffers, etc. */
George Sapountzisc9b33ec2006-12-06 06:43:23 +0200297 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000298 return GL_TRUE;
299}
300
Keith Whitwell6dc85572003-07-17 13:43:59 +0000301/**
302 * Window/buffer destruction notification callback.
303 *
304 * \param gc GL context.
305 *
306 * Called when the context's window/buffer is going to be destroyed.
307 *
308 * No-op
309 */
Brian Paul9a33a112002-06-13 04:28:29 +0000310void
311_mesa_notifyDestroy(__GLcontext *gc)
312{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000313 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000314 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000315}
316
Keith Whitwell6dc85572003-07-17 13:43:59 +0000317/**
318 * Swap buffers notification callback.
319 *
320 * \param gc GL context.
321 *
322 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000323 * We have to finish any pending rendering.
324 */
325void
326_mesa_notifySwapBuffers(__GLcontext *gc)
327{
328 FLUSH_VERTICES( gc, 0 );
329}
330
Keith Whitwell6dc85572003-07-17 13:43:59 +0000331/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000332struct __GLdispatchStateRec *
333_mesa_dispatchExec(__GLcontext *gc)
334{
Brian Paula6c423d2004-08-25 15:59:48 +0000335 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000336 return NULL;
337}
338
Keith Whitwell6dc85572003-07-17 13:43:59 +0000339/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000340void
341_mesa_beginDispatchOverride(__GLcontext *gc)
342{
Brian Paula6c423d2004-08-25 15:59:48 +0000343 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000344}
345
Keith Whitwell6dc85572003-07-17 13:43:59 +0000346/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000347void
348_mesa_endDispatchOverride(__GLcontext *gc)
349{
Brian Paula6c423d2004-08-25 15:59:48 +0000350 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000351}
352
Keith Whitwell6dc85572003-07-17 13:43:59 +0000353/**
354 * \ifnot subset
355 * Setup the exports.
356 *
357 * The window system will call these functions when it needs Mesa to do
358 * something.
359 *
360 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000361 * the Xlib driver should plug in the XMesa*-style functions into this
362 * structure. The XMesa-style functions should then call the _mesa_*
363 * version of these functions. This is an approximation to OO design
364 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000365 * \endif
366 *
367 * \if subset
368 * No-op.
369 *
370 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000371 */
372static void
373_mesa_init_default_exports(__GLexports *exports)
374{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000375#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000376 exports->destroyContext = _mesa_destroyContext;
377 exports->loseCurrent = _mesa_loseCurrent;
378 exports->makeCurrent = _mesa_makeCurrent;
379 exports->shareContext = _mesa_shareContext;
380 exports->copyContext = _mesa_copyContext;
381 exports->forceCurrent = _mesa_forceCurrent;
382 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000383 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000384 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
385 exports->dispatchExec = _mesa_dispatchExec;
386 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
387 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000388#else
389 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000390#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000391}
392
Keith Whitwell6dc85572003-07-17 13:43:59 +0000393/**
394 * Exported OpenGL SI interface.
395 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000396__GLcontext *
397__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
398{
399 GLcontext *ctx;
400
Brian Paul4753d602002-06-15 02:38:15 +0000401 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000402 if (ctx == NULL) {
403 return NULL;
404 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000405
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000406 /* XXX doesn't work at this time */
407 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000408 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000409
410 return ctx;
411}
412
Keith Whitwell6dc85572003-07-17 13:43:59 +0000413/**
414 * Exported OpenGL SI interface.
415 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000416void
417__glCoreNopDispatch(void)
418{
419#if 0
420 /* SI */
421 __gl_dispatch = __glNopDispatchState;
422#else
423 /* Mesa */
424 _glapi_set_dispatch(NULL);
425#endif
426}
427
Keith Whitwell6dc85572003-07-17 13:43:59 +0000428/*@}*/
429
Brian Paulb1394fa2000-09-26 20:53:53 +0000430
jtgafb833d1999-08-19 00:55:39 +0000431/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000432/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000433/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000434/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000435
Keith Whitwell6dc85572003-07-17 13:43:59 +0000436/**
Brian Paul894844a2004-03-21 17:05:03 +0000437 * Allocates a GLvisual structure and initializes it via
438 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000439 *
440 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
441 * \param dbFlag double buffering
442 * \param stereoFlag stereo buffer
443 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
444 * is acceptable but the actual depth type will be GLushort or GLuint as
445 * needed.
446 * \param stencilBits requested minimum bits per stencil buffer value
447 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
448 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
449 * \param redBits number of bits per color component in frame buffer for RGB(A)
450 * mode. We always use 8 in core Mesa though.
451 * \param greenBits same as above.
452 * \param blueBits same as above.
453 * \param alphaBits same as above.
454 * \param numSamples not really used.
455 *
456 * \return pointer to new GLvisual or NULL if requested parameters can't be
457 * met.
458 *
Brian Paul894844a2004-03-21 17:05:03 +0000459 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000460 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000461GLvisual *
462_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000463 GLboolean dbFlag,
464 GLboolean stereoFlag,
465 GLint redBits,
466 GLint greenBits,
467 GLint blueBits,
468 GLint alphaBits,
469 GLint indexBits,
470 GLint depthBits,
471 GLint stencilBits,
472 GLint accumRedBits,
473 GLint accumGreenBits,
474 GLint accumBlueBits,
475 GLint accumAlphaBits,
476 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000477{
Brian Paulc7e164f2006-06-30 15:44:30 +0000478 GLvisual *vis = (GLvisual *) _mesa_calloc(sizeof(GLvisual));
Brian Paul178a1c52000-04-22 01:05:00 +0000479 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000480 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000481 redBits, greenBits, blueBits, alphaBits,
482 indexBits, depthBits, stencilBits,
483 accumRedBits, accumGreenBits,
484 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000485 numSamples)) {
Brian Paulc7e164f2006-06-30 15:44:30 +0000486 _mesa_free(vis);
Brian Paul178a1c52000-04-22 01:05:00 +0000487 return NULL;
488 }
489 }
490 return vis;
491}
492
Keith Whitwell6dc85572003-07-17 13:43:59 +0000493/**
Brian Paul894844a2004-03-21 17:05:03 +0000494 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000495 * GLvisual object with the given parameters. If the caller needs
496 * to set additional fields, he should just probably init the whole GLvisual
497 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000498 * \return GL_TRUE on success, or GL_FALSE on failure.
499 *
500 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000501 */
502GLboolean
503_mesa_initialize_visual( GLvisual *vis,
504 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000505 GLboolean dbFlag,
506 GLboolean stereoFlag,
507 GLint redBits,
508 GLint greenBits,
509 GLint blueBits,
510 GLint alphaBits,
511 GLint indexBits,
512 GLint depthBits,
513 GLint stencilBits,
514 GLint accumRedBits,
515 GLint accumGreenBits,
516 GLint accumBlueBits,
517 GLint accumAlphaBits,
518 GLint numSamples )
519{
520 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000521
Brian Pauled30dfa2000-03-03 17:47:39 +0000522 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000523 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000524 }
Brian Paule4b23562005-05-04 20:11:35 +0000525 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000526 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000527 }
Brian Paul978ef2b2005-09-21 03:35:08 +0000528 assert(accumRedBits >= 0);
529 assert(accumGreenBits >= 0);
530 assert(accumBlueBits >= 0);
531 assert(accumAlphaBits >= 0);
Brian Paul4d053dd2000-01-14 04:45:47 +0000532
Brian Paulb6bcae52001-01-23 23:39:36 +0000533 vis->rgbMode = rgbFlag;
534 vis->doubleBufferMode = dbFlag;
535 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000536
Brian Paulb6bcae52001-01-23 23:39:36 +0000537 vis->redBits = redBits;
538 vis->greenBits = greenBits;
539 vis->blueBits = blueBits;
540 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000541 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000542
Brian Paulb6bcae52001-01-23 23:39:36 +0000543 vis->indexBits = indexBits;
544 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000545 vis->stencilBits = stencilBits;
546
547 vis->accumRedBits = accumRedBits;
548 vis->accumGreenBits = accumGreenBits;
549 vis->accumBlueBits = accumBlueBits;
550 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000551
Brian Paul153f1542002-10-29 15:04:35 +0000552 vis->haveAccumBuffer = accumRedBits > 0;
553 vis->haveDepthBuffer = depthBits > 0;
554 vis->haveStencilBuffer = stencilBits > 0;
555
556 vis->numAuxBuffers = 0;
557 vis->level = 0;
558 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000559 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000560 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000561
Brian Paul178a1c52000-04-22 01:05:00 +0000562 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000563}
564
Brian Paul894844a2004-03-21 17:05:03 +0000565
Keith Whitwell6dc85572003-07-17 13:43:59 +0000566/**
Brian Paul894844a2004-03-21 17:05:03 +0000567 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000568 *
569 * \param vis visual.
570 *
571 * Frees the visual structure.
572 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000573void
574_mesa_destroy_visual( GLvisual *vis )
575{
Brian Paulc7e164f2006-06-30 15:44:30 +0000576 _mesa_free(vis);
Brian Paulb371e0d2000-03-31 01:05:51 +0000577}
578
Keith Whitwell6dc85572003-07-17 13:43:59 +0000579/*@}*/
580
Brian Paulb371e0d2000-03-31 01:05:51 +0000581
Brian Paul4d053dd2000-01-14 04:45:47 +0000582/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000583/** \name Context allocation, initialization, destroying
584 *
585 * The purpose of the most initialization functions here is to provide the
586 * default state values according to the OpenGL specification.
587 */
jtgafb833d1999-08-19 00:55:39 +0000588/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000589/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000590
Keith Whitwell6dc85572003-07-17 13:43:59 +0000591/**
592 * One-time initialization mutex lock.
593 *
594 * \sa Used by one_time_init().
595 */
Brian Paul9560f052000-01-31 23:11:39 +0000596_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
597
Keith Whitwell6dc85572003-07-17 13:43:59 +0000598/**
599 * Calls all the various one-time-init functions in Mesa.
600 *
601 * While holding a global mutex lock, calls several initialization functions,
602 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
603 * defined.
604 *
Brian Paula764b7e2006-02-26 17:16:37 +0000605 * \sa _math_init().
jtgafb833d1999-08-19 00:55:39 +0000606 */
Brian Paul178a1c52000-04-22 01:05:00 +0000607static void
Brian Paul4753d602002-06-15 02:38:15 +0000608one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000609{
610 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000611 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000612 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000613 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000614 GLuint i;
615
Brian Paul4d053dd2000-01-14 04:45:47 +0000616 /* do some implementation tests */
617 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000618 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000619 assert( sizeof(GLshort) == 2 );
620 assert( sizeof(GLushort) == 2 );
621 assert( sizeof(GLint) == 4 );
622 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000623
Keith Whitwell6dc85572003-07-17 13:43:59 +0000624#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000625 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000626
627 for (i = 0; i < 256; i++) {
628 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
629 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000630#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000631
davem69775355a2001-06-05 23:54:00 +0000632#ifdef USE_SPARC_ASM
633 _mesa_init_sparc_glapi_relocs();
634#endif
Brian Paul3c634522002-10-24 23:57:19 +0000635 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000636 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000637 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000638 }
639 else {
640 _glapi_noop_enable_warnings(GL_FALSE);
641 }
642
jtgafb833d1999-08-19 00:55:39 +0000643#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000644 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
645 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000646#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000647
648 alreadyCalled = GL_TRUE;
649 }
Brian Paul9560f052000-01-31 23:11:39 +0000650 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000651}
652
Brian Paul894844a2004-03-21 17:05:03 +0000653
Keith Whitwell6dc85572003-07-17 13:43:59 +0000654/**
jtgafb833d1999-08-19 00:55:39 +0000655 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000656 * Initializes the display list, texture objects and vertex programs hash
657 * tables, allocates the texture objects. If it runs out of memory, frees
658 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000659 *
660 * \return pointer to a gl_shared_state structure on success, or NULL on
661 * failure.
jtgafb833d1999-08-19 00:55:39 +0000662 */
Brian Paula3f13702003-04-01 16:41:50 +0000663static GLboolean
664alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000665{
Brian Paula3f13702003-04-01 16:41:50 +0000666 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000667 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000668 return GL_FALSE;
669
670 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000671
Brian Paule4b684c2000-09-12 21:07:40 +0000672 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000673
Brian Paule4b684c2000-09-12 21:07:40 +0000674 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000675 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000676#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000677 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000678#endif
jtgafb833d1999-08-19 00:55:39 +0000679
Brian Paul451f3102003-04-17 01:48:19 +0000680#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000681 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000682 if (!ss->DefaultVertexProgram)
683 goto cleanup;
684#endif
685#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000686 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000687 if (!ss->DefaultFragmentProgram)
688 goto cleanup;
689#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000690#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000691 ss->ATIShaders = _mesa_NewHashTable();
692 ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000693 if (!ss->DefaultFragmentShader)
694 goto cleanup;
695#endif
Brian Paul451f3102003-04-17 01:48:19 +0000696
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000697#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulddc82ee2005-02-05 19:56:45 +0000698 ss->BufferObjects = _mesa_NewHashTable();
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000699#endif
700
Ian Romanickee34e6e2006-06-12 16:26:29 +0000701 ss->ArrayObjects = _mesa_NewHashTable();
Brian Paulddc82ee2005-02-05 19:56:45 +0000702
Michal Krol365582d2006-08-01 20:07:31 +0000703#if FEATURE_ARB_shader_objects
Briana90046f2006-12-15 10:07:26 -0700704 ss->ShaderObjects = _mesa_NewHashTable();
Michal Krol365582d2006-08-01 20:07:31 +0000705#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000706
Brian Paula3f13702003-04-01 16:41:50 +0000707 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
708 if (!ss->Default1D)
709 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000710
Brian Paula3f13702003-04-01 16:41:50 +0000711 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
712 if (!ss->Default2D)
713 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000714
Brian Paula3f13702003-04-01 16:41:50 +0000715 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
716 if (!ss->Default3D)
717 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000718
Brian Paula3f13702003-04-01 16:41:50 +0000719 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
720 if (!ss->DefaultCubeMap)
721 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000722
Brian Paula3f13702003-04-01 16:41:50 +0000723 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
724 if (!ss->DefaultRect)
725 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000726
Brian Paula3f13702003-04-01 16:41:50 +0000727 /* Effectively bind the default textures to all texture units */
728 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
729 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
730 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
731 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
732 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
733
Keith Whitwell5ac93f82006-11-01 14:21:57 +0000734 _glthread_INIT_MUTEX(ss->TexMutex);
735 ss->TextureStateStamp = 0;
736
737
Brian Paulddc82ee2005-02-05 19:56:45 +0000738#if FEATURE_EXT_framebuffer_object
739 ss->FrameBuffers = _mesa_NewHashTable();
740 if (!ss->FrameBuffers)
741 goto cleanup;
742 ss->RenderBuffers = _mesa_NewHashTable();
743 if (!ss->RenderBuffers)
744 goto cleanup;
745#endif
746
747
Brian Paula3f13702003-04-01 16:41:50 +0000748 return GL_TRUE;
749
750 cleanup:
751 /* Ran out of memory at some point. Free everything and return NULL */
752 if (ss->DisplayList)
753 _mesa_DeleteHashTable(ss->DisplayList);
754 if (ss->TexObjects)
755 _mesa_DeleteHashTable(ss->TexObjects);
756#if FEATURE_NV_vertex_program
757 if (ss->Programs)
758 _mesa_DeleteHashTable(ss->Programs);
759#endif
Brian Paul451f3102003-04-17 01:48:19 +0000760#if FEATURE_ARB_vertex_program
761 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000762 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000763#endif
764#if FEATURE_ARB_fragment_program
765 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000766 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000767#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000768#if FEATURE_ATI_fragment_shader
769 if (ss->DefaultFragmentShader)
Brian Paul63d68302005-11-19 16:43:04 +0000770 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000771#endif
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000772#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000773 if (ss->BufferObjects)
774 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000775#endif
776
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000777 if (ss->ArrayObjects)
778 _mesa_DeleteHashTable (ss->ArrayObjects);
779
Michal Krol365582d2006-08-01 20:07:31 +0000780#if FEATURE_ARB_shader_objects
Brian0bf5dbe2006-12-19 18:02:41 -0700781 if (ss->ShaderObjects)
Briana90046f2006-12-15 10:07:26 -0700782 _mesa_DeleteHashTable (ss->ShaderObjects);
Michal Krol365582d2006-08-01 20:07:31 +0000783#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000784
Brian Paulddc82ee2005-02-05 19:56:45 +0000785#if FEATURE_EXT_framebuffer_object
786 if (ss->FrameBuffers)
787 _mesa_DeleteHashTable(ss->FrameBuffers);
788 if (ss->RenderBuffers)
789 _mesa_DeleteHashTable(ss->RenderBuffers);
790#endif
791
Brian Paula3f13702003-04-01 16:41:50 +0000792 if (ss->Default1D)
793 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
794 if (ss->Default2D)
795 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
796 if (ss->Default3D)
797 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
798 if (ss->DefaultCubeMap)
799 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
800 if (ss->DefaultRect)
801 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
802 if (ss)
803 _mesa_free(ss);
804 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000805}
806
Brian Paulc7e164f2006-06-30 15:44:30 +0000807
Keith Whitwell6dc85572003-07-17 13:43:59 +0000808/**
Brian Paulc7e164f2006-06-30 15:44:30 +0000809 * Callback for deleting a display list. Called by _mesa_HashDeleteAll().
810 */
811static void
812delete_displaylist_cb(GLuint id, void *data, void *userData)
813{
814 struct mesa_display_list *list = (struct mesa_display_list *) data;
815 GLcontext *ctx = (GLcontext *) userData;
816 _mesa_delete_list(ctx, list);
817}
818
819/**
820 * Callback for deleting a texture object. Called by _mesa_HashDeleteAll().
821 */
822static void
823delete_texture_cb(GLuint id, void *data, void *userData)
824{
825 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
826 GLcontext *ctx = (GLcontext *) userData;
827 ctx->Driver.DeleteTexture(ctx, texObj);
828}
829
830/**
831 * Callback for deleting a program object. Called by _mesa_HashDeleteAll().
832 */
833static void
834delete_program_cb(GLuint id, void *data, void *userData)
835{
Brian Paul122629f2006-07-20 16:49:57 +0000836 struct gl_program *prog = (struct gl_program *) data;
Brian Paulc7e164f2006-06-30 15:44:30 +0000837 GLcontext *ctx = (GLcontext *) userData;
838 ctx->Driver.DeleteProgram(ctx, prog);
839}
840
841/**
842 * Callback for deleting an ATI fragment shader object.
843 * Called by _mesa_HashDeleteAll().
844 */
845static void
846delete_fragshader_cb(GLuint id, void *data, void *userData)
847{
848 struct ati_fragment_shader *shader = (struct ati_fragment_shader *) data;
849 GLcontext *ctx = (GLcontext *) userData;
850 _mesa_delete_ati_fragment_shader(ctx, shader);
851}
852
853/**
854 * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll().
855 */
856static void
857delete_bufferobj_cb(GLuint id, void *data, void *userData)
858{
859 struct gl_buffer_object *bufObj = (struct gl_buffer_object *) data;
860 GLcontext *ctx = (GLcontext *) userData;
861 ctx->Driver.DeleteBuffer(ctx, bufObj);
862}
863
Brian Paulc04bb512006-07-11 21:56:43 +0000864/**
865 * Callback for deleting an array object. Called by _mesa_HashDeleteAll().
866 */
867static void
868delete_arrayobj_cb(GLuint id, void *data, void *userData)
869{
870 struct gl_array_object *arrayObj = (struct gl_array_object *) data;
871 GLcontext *ctx = (GLcontext *) userData;
872 _mesa_delete_array_object(ctx, arrayObj);
873}
874
Brian Paul4d4373b2006-11-18 17:44:28 +0000875/**
Brian9e4bae92006-12-20 09:27:42 -0700876 * Callback for deleting shader and shader programs objects.
877 * Called by _mesa_HashDeleteAll().
Brian Paul4d4373b2006-11-18 17:44:28 +0000878 */
879static void
Brian9e4bae92006-12-20 09:27:42 -0700880delete_shader_cb(GLuint id, void *data, void *userData)
Brian Paul4d4373b2006-11-18 17:44:28 +0000881{
Brian9e4bae92006-12-20 09:27:42 -0700882 GLcontext *ctx = (GLcontext *) userData;
883 struct gl_shader *sh = (struct gl_shader *) data;
884 if (sh->Type == GL_FRAGMENT_SHADER || sh->Type == GL_VERTEX_SHADER) {
885 _mesa_free_shader(ctx, sh);
886 }
887 else {
888 struct gl_shader_program *shProg = (struct gl_shader_program *) data;
889 ASSERT(shProg->Type == GL_SHADER_PROGRAM);
890 _mesa_free_shader_program(ctx, shProg);
891 }
Brian Paul4d4373b2006-11-18 17:44:28 +0000892}
893
Brian Paulc7e164f2006-06-30 15:44:30 +0000894
895/**
896 * Deallocate a shared state object and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000897 *
898 * \param ctx GL context.
899 * \param ss shared state pointer.
900 *
901 * Frees the display lists, the texture objects (calling the driver texture
902 * deletion callback to free its private data) and the vertex programs, as well
903 * as their hash tables.
904 *
905 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000906 */
Brian Paul178a1c52000-04-22 01:05:00 +0000907static void
908free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000909{
Brian Paulc7e164f2006-06-30 15:44:30 +0000910 /*
911 * Free display lists
912 */
913 _mesa_HashDeleteAll(ss->DisplayList, delete_displaylist_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000914 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000915
Brian Paulc7e164f2006-06-30 15:44:30 +0000916 /*
917 * Free texture objects
918 */
Brian Paula3f13702003-04-01 16:41:50 +0000919 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000920 /* the default textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000921 ctx->Driver.DeleteTexture(ctx, ss->Default1D);
922 ctx->Driver.DeleteTexture(ctx, ss->Default2D);
923 ctx->Driver.DeleteTexture(ctx, ss->Default3D);
924 ctx->Driver.DeleteTexture(ctx, ss->DefaultCubeMap);
925 ctx->Driver.DeleteTexture(ctx, ss->DefaultRect);
Brian Paul21841f02004-08-14 14:28:11 +0000926 /* all other textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000927 _mesa_HashDeleteAll(ss->TexObjects, delete_texture_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000928 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000929
Brian Paul1096eae2006-01-16 16:35:13 +0000930#if defined(FEATURE_NV_vertex_program) || defined(FEATURE_NV_fragment_program)
Brian Paulc7e164f2006-06-30 15:44:30 +0000931 _mesa_HashDeleteAll(ss->Programs, delete_program_cb, ctx);
Brian Paul610d5992003-01-14 04:55:45 +0000932 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000933#endif
Brian Paul21841f02004-08-14 14:28:11 +0000934#if FEATURE_ARB_vertex_program
935 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
936#endif
937#if FEATURE_ARB_fragment_program
938 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
939#endif
Brian Paul1096eae2006-01-16 16:35:13 +0000940
Dave Airlie7f752fe2004-12-19 03:06:59 +0000941#if FEATURE_ATI_fragment_shader
Brian Paulc7e164f2006-06-30 15:44:30 +0000942 _mesa_HashDeleteAll(ss->ATIShaders, delete_fragshader_cb, ctx);
Brian Paul1096eae2006-01-16 16:35:13 +0000943 _mesa_DeleteHashTable(ss->ATIShaders);
944 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000945#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000946
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000947#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulc7e164f2006-06-30 15:44:30 +0000948 _mesa_HashDeleteAll(ss->BufferObjects, delete_bufferobj_cb, ctx);
Ian Romanick0207b472003-09-09 00:10:12 +0000949 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000950#endif
951
Brian Paulc04bb512006-07-11 21:56:43 +0000952 _mesa_HashDeleteAll(ss->ArrayObjects, delete_arrayobj_cb, ctx);
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000953 _mesa_DeleteHashTable(ss->ArrayObjects);
954
Michal Krol365582d2006-08-01 20:07:31 +0000955#if FEATURE_ARB_shader_objects
Brian9e4bae92006-12-20 09:27:42 -0700956 _mesa_HashDeleteAll(ss->ShaderObjects, delete_shader_cb, ctx);
957 _mesa_DeleteHashTable(ss->ShaderObjects);
Michal Krol365582d2006-08-01 20:07:31 +0000958#endif
Brian Paulddc82ee2005-02-05 19:56:45 +0000959
960#if FEATURE_EXT_framebuffer_object
961 _mesa_DeleteHashTable(ss->FrameBuffers);
962 _mesa_DeleteHashTable(ss->RenderBuffers);
963#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000964
Keith Whitwelle15fd852002-12-12 13:03:15 +0000965 _glthread_DESTROY_MUTEX(ss->Mutex);
966
Brian Paulc7e164f2006-06-30 15:44:30 +0000967 _mesa_free(ss);
jtgafb833d1999-08-19 00:55:39 +0000968}
969
970
Brian Paul4d859f72004-01-23 18:57:05 +0000971/**
972 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
973 */
974static void
Briand881a9c2006-12-20 09:31:07 -0700975_mesa_init_current(GLcontext *ctx)
jtgafb833d1999-08-19 00:55:39 +0000976{
Brian Paul88bf0382004-02-13 15:30:08 +0000977 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000978
Brian Paul94b30dc2006-04-25 00:53:25 +0000979 /* Init all to (0,0,0,1) */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000980 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
981 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000982 }
Brian Paul94b30dc2006-04-25 00:53:25 +0000983
984 /* redo special cases: */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000985 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
986 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
987 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000988 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwellfd275602006-10-30 20:16:35 +0000989 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX], 1.0, 0.0, 0.0, 1.0 );
990 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG], 1.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000991}
992
993
Brian Paul4d859f72004-01-23 18:57:05 +0000994/**
Brian Paul05051032005-11-01 04:36:33 +0000995 * Init vertex/fragment program native limits from logical limits.
996 */
997static void
998init_natives(struct gl_program_constants *prog)
999{
1000 prog->MaxNativeInstructions = prog->MaxInstructions;
1001 prog->MaxNativeAluInstructions = prog->MaxAluInstructions;
1002 prog->MaxNativeTexInstructions = prog->MaxTexInstructions;
1003 prog->MaxNativeTexIndirections = prog->MaxTexIndirections;
1004 prog->MaxNativeAttribs = prog->MaxAttribs;
1005 prog->MaxNativeTemps = prog->MaxTemps;
1006 prog->MaxNativeAddressRegs = prog->MaxAddressRegs;
1007 prog->MaxNativeParameters = prog->MaxParameters;
1008}
1009
1010
1011/**
Brian Paul4d859f72004-01-23 18:57:05 +00001012 * Initialize fields of gl_constants (aka ctx->Const.*).
1013 * Use defaults from config.h. The device drivers will often override
1014 * some of these values (such as number of texture units).
1015 */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001016static void
Briand881a9c2006-12-20 09:31:07 -07001017_mesa_init_constants(GLcontext *ctx)
jtgafb833d1999-08-19 00:55:39 +00001018{
Brian Paul4d053dd2000-01-14 04:45:47 +00001019 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +00001020
Brian Paulcd1cefa2001-06-13 14:56:14 +00001021 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
1022 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
1023
Brian Paulda238ee2006-04-13 19:21:58 +00001024 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_COORD_UNITS);
1025 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_IMAGE_UNITS);
1026
Brian Paul53f82c52004-10-02 16:39:09 +00001027 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +00001028 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +00001029 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
1030 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +00001031 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul610d5992003-01-14 04:55:45 +00001032 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
1033 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Brian Paulda238ee2006-04-13 19:21:58 +00001034 ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits,
1035 ctx->Const.MaxTextureImageUnits);
Gareth Hughes2c3d34c2001-03-18 08:53:49 +00001036 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +00001037 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +00001038 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +00001039 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
1040 ctx->Const.MinPointSize = MIN_POINT_SIZE;
1041 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
1042 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
1043 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001044 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +00001045 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
1046 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
1047 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
1048 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001049 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +00001050 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +00001051 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
1052 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +00001053 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
1054 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +00001055 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +00001056 ctx->Const.MaxSpotExponent = 128.0;
1057 ctx->Const.MaxViewportWidth = MAX_WIDTH;
1058 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +00001059#if FEATURE_ARB_vertex_program
Brian Paul05051032005-11-01 04:36:33 +00001060 ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
1061 ctx->Const.VertexProgram.MaxAluInstructions = 0;
1062 ctx->Const.VertexProgram.MaxTexInstructions = 0;
1063 ctx->Const.VertexProgram.MaxTexIndirections = 0;
1064 ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
1065 ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
1066 ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS;
1067 ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1068 ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
1069 ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
Briana90046f2006-12-15 10:07:26 -07001070 ctx->Const.VertexProgram.MaxUniformComponents = 4 * MAX_UNIFORMS;
Brian Paul05051032005-11-01 04:36:33 +00001071 init_natives(&ctx->Const.VertexProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001072#endif
Briana90046f2006-12-15 10:07:26 -07001073
Brian Pauld0492cf2003-04-11 01:20:06 +00001074#if FEATURE_ARB_fragment_program
Brian Paul05051032005-11-01 04:36:33 +00001075 ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
1076 ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
1077 ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
1078 ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
1079 ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
1080 ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
1081 ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1082 ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1083 ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1084 ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
Briana90046f2006-12-15 10:07:26 -07001085 ctx->Const.FragmentProgram.MaxUniformComponents = 4 * MAX_UNIFORMS;
Brian Paul05051032005-11-01 04:36:33 +00001086 init_natives(&ctx->Const.FragmentProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001087#endif
Brian Pauledd67742003-04-18 18:02:43 +00001088 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
1089 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +00001090
George Sapountzis507167d2006-12-06 06:54:13 +02001091 /* CheckArrayBounds is overriden by drivers/x11 for X server */
Brian Paula2b9bad2003-11-10 19:08:37 +00001092 ctx->Const.CheckArrayBounds = GL_FALSE;
Brian Paula2b9bad2003-11-10 19:08:37 +00001093
Brian Paul05051032005-11-01 04:36:33 +00001094 /* GL_ARB_draw_buffers */
Brian Paul53f82c52004-10-02 16:39:09 +00001095 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1096
Brian Paul3deaa012005-02-07 05:08:24 +00001097 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001098 ctx->Const.ColorReadFormat = GL_RGBA;
1099 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1100
Brian Paul3deaa012005-02-07 05:08:24 +00001101#if FEATURE_EXT_framebuffer_object
1102 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1103 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1104#endif
1105
Brian Paul90fcf6c2006-11-01 00:12:41 +00001106#if FEATURE_ARB_vertex_shader
1107 ctx->Const.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS;
Briana90046f2006-12-15 10:07:26 -07001108 ctx->Const.MaxVarying = MAX_VARYING;
Brian Paul90fcf6c2006-11-01 00:12:41 +00001109#endif
1110
Brian Paul53f82c52004-10-02 16:39:09 +00001111 /* sanity checks */
Brian Paulda238ee2006-04-13 19:21:58 +00001112 ASSERT(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.MaxTextureImageUnits,
1113 ctx->Const.MaxTextureCoordUnits));
Brian Paul05051032005-11-01 04:36:33 +00001114 ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
1115 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
Briana90046f2006-12-15 10:07:26 -07001116
1117 ASSERT(MAX_NV_FRAGMENT_PROGRAM_TEMPS <= MAX_PROGRAM_TEMPS);
1118 ASSERT(MAX_NV_VERTEX_PROGRAM_TEMPS <= MAX_PROGRAM_TEMPS);
1119 ASSERT(MAX_NV_VERTEX_PROGRAM_INPUTS <= VERT_ATTRIB_MAX);
1120 ASSERT(MAX_NV_VERTEX_PROGRAM_OUTPUTS <= VERT_RESULT_MAX);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001121}
jtgafb833d1999-08-19 00:55:39 +00001122
Brian Paul4d859f72004-01-23 18:57:05 +00001123
Keith Whitwell6dc85572003-07-17 13:43:59 +00001124/**
Brian Paul5e2e96b2006-05-15 15:26:04 +00001125 * Do some sanity checks on the limits/constants for the given context.
1126 * Only called the first time a context is bound.
1127 */
1128static void
1129check_context_limits(GLcontext *ctx)
1130{
1131 /* Many context limits/constants are limited by the size of
1132 * internal arrays.
1133 */
1134 assert(ctx->Const.MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS);
1135 assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS);
1136 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS);
1137 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS);
1138
1139 assert(ctx->Const.MaxViewportWidth <= MAX_WIDTH);
1140 assert(ctx->Const.MaxViewportHeight <= MAX_WIDTH);
1141
1142 /* make sure largest texture image is <= MAX_WIDTH in size */
1143 assert((1 << (ctx->Const.MaxTextureLevels -1 )) <= MAX_WIDTH);
1144 assert((1 << (ctx->Const.MaxCubeTextureLevels -1 )) <= MAX_WIDTH);
1145 assert((1 << (ctx->Const.Max3DTextureLevels -1 )) <= MAX_WIDTH);
1146
1147 assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS);
1148
1149 /* XXX probably add more tests */
1150}
1151
1152
1153/**
Keith Whitwell6dc85572003-07-17 13:43:59 +00001154 * Initialize the attribute groups in a GL context.
1155 *
1156 * \param ctx GL context.
1157 *
1158 * Initializes all the attributes, calling the respective <tt>init*</tt>
1159 * functions for the more complex data structures.
1160 */
1161static GLboolean
Briand881a9c2006-12-20 09:31:07 -07001162init_attrib_groups(GLcontext *ctx)
Keith Whitwell6dc85572003-07-17 13:43:59 +00001163{
1164 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001165
Keith Whitwell6dc85572003-07-17 13:43:59 +00001166 /* Constants */
1167 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001168
Brian Paul4d053dd2000-01-14 04:45:47 +00001169 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001170 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001171
Keith Whitwell6dc85572003-07-17 13:43:59 +00001172 /* Attribute Groups */
1173 _mesa_init_accum( ctx );
1174 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001175 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001176 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001177 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001178 _mesa_init_current( ctx );
1179 _mesa_init_depth( ctx );
1180 _mesa_init_debug( ctx );
1181 _mesa_init_display_list( ctx );
1182 _mesa_init_eval( ctx );
1183 _mesa_init_feedback( ctx );
1184 _mesa_init_fog( ctx );
1185 _mesa_init_histogram( ctx );
1186 _mesa_init_hint( ctx );
1187 _mesa_init_line( ctx );
1188 _mesa_init_lighting( ctx );
1189 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001190 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001191 _mesa_init_pixel( ctx );
1192 _mesa_init_point( ctx );
1193 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001194 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001195 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001196 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001197 _mesa_init_scissor( ctx );
Brian0bf5dbe2006-12-19 18:02:41 -07001198 _mesa_init_shader_state( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001199 _mesa_init_stencil( ctx );
1200 _mesa_init_transform( ctx );
1201 _mesa_init_varray( ctx );
1202 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001203
Keith Whitwell6dc85572003-07-17 13:43:59 +00001204 if (!_mesa_init_texture( ctx ))
1205 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001206
Brian Paul8f04c122004-04-27 13:39:20 +00001207 _mesa_init_texture_s3tc( ctx );
1208 _mesa_init_texture_fxt1( ctx );
1209
Brian Paul4d053dd2000-01-14 04:45:47 +00001210 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001211 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001212 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001213 ctx->_Facing = 0;
Brian Paul4d053dd2000-01-14 04:45:47 +00001214
Brian Paula3f13702003-04-01 16:41:50 +00001215 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001216}
1217
1218
Brian Paulf44898c2003-07-18 15:44:57 +00001219/**
Brian Paul21f69782004-11-27 05:05:32 +00001220 * This is the default function we plug into all dispatch table slots
1221 * This helps prevents a segfault when someone calls a GL function without
1222 * first checking if the extension's supported.
1223 */
1224static int
1225generic_nop(void)
1226{
1227 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1228 return 0;
1229}
1230
1231
1232/**
1233 * Allocate and initialize a new dispatch table.
1234 */
1235static struct _glapi_table *
1236alloc_dispatch_table(void)
1237{
1238 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1239 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1240 * Mesa we do this to accomodate different versions of libGL and various
1241 * DRI drivers.
1242 */
1243 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1244 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1245 struct _glapi_table *table =
1246 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1247 if (table) {
1248 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001249 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001250 for (i = 0; i < numEntries; i++) {
1251 entry[i] = (_glapi_proc) generic_nop;
1252 }
1253 }
1254 return table;
1255}
1256
1257
1258/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001259 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001260 *
1261 * This includes allocating all the other structs and arrays which hang off of
1262 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001263 * Note that the driver needs to pass in its dd_function_table here since
1264 * we need to at least call driverFunctions->NewTextureObject to create the
1265 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001266 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001267 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001268 *
1269 * Performs the imports and exports callback tables initialization, and
1270 * miscellaneous one-time initializations. If no shared context is supplied one
1271 * is allocated, and increase its reference count. Setups the GL API dispatch
1272 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1273 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1274 * for debug flags.
1275 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001276 * \param ctx the context to initialize
1277 * \param visual describes the visual attributes for this context
1278 * \param share_list points to context to share textures, display lists,
1279 * etc with, or NULL
1280 * \param driverFunctions table of device driver functions for this context
1281 * to use
1282 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001283 */
Brian Paul178a1c52000-04-22 01:05:00 +00001284GLboolean
Briand881a9c2006-12-20 09:31:07 -07001285_mesa_initialize_context(GLcontext *ctx,
1286 const GLvisual *visual,
1287 GLcontext *share_list,
1288 const struct dd_function_table *driverFunctions,
1289 void *driverContext)
jtgafb833d1999-08-19 00:55:39 +00001290{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001291 ASSERT(driverContext);
1292 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001293 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001294
Brian Paul3c634522002-10-24 23:57:19 +00001295 /* If the driver wants core Mesa to use special imports, it'll have to
1296 * override these defaults.
1297 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001298 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001299
Brian Paul9a33a112002-06-13 04:28:29 +00001300 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001301 _mesa_init_default_exports( &(ctx->exports) );
1302
1303 /* misc one-time initializations */
1304 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001305
Brian Paulb1394fa2000-09-26 20:53:53 +00001306 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001307 ctx->DrawBuffer = NULL;
1308 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001309 ctx->WinSysDrawBuffer = NULL;
1310 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001311
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001312 /* Plug in driver functions and context pointer here.
1313 * This is important because when we call alloc_shared_state() below
1314 * we'll call ctx->Driver.NewTextureObject() to create the default
1315 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001316 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001317 ctx->Driver = *driverFunctions;
1318 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001319
jtgafb833d1999-08-19 00:55:39 +00001320 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001321 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001322 ctx->Shared = share_list->Shared;
1323 }
1324 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001325 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001326 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001327 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001328 }
1329 }
Brian Paul9560f052000-01-31 23:11:39 +00001330 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001331 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001332 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001333
Keith Whitwell6dc85572003-07-17 13:43:59 +00001334 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001335 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001336 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001337 }
jtgafb833d1999-08-19 00:55:39 +00001338
Brian Paul21f69782004-11-27 05:05:32 +00001339 /* setup the API dispatch tables */
1340 ctx->Exec = alloc_dispatch_table();
1341 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001342 if (!ctx->Exec || !ctx->Save) {
1343 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001344 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001345 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001346 }
Brian Paul21f69782004-11-27 05:05:32 +00001347 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001348 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001349#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001350 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001351 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001352 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001353 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001354 ctx->TnlModule.Current = NULL;
1355 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001356#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001357
Brian3e45db62007-03-27 09:51:52 -06001358 ctx->FragmentProgram._MaintainTexEnvProgram
1359 = (_mesa_getenv("MESA_TEX_PROG") != NULL);
1360 ctx->FragmentProgram._UseTexEnvProgram = ctx->FragmentProgram._MaintainTexEnvProgram;
1361
Briana90046f2006-12-15 10:07:26 -07001362 ctx->VertexProgram._MaintainTnlProgram
1363 = (_mesa_getenv("MESA_TNL_PROG") != NULL);
Brian3e45db62007-03-27 09:51:52 -06001364 if (ctx->VertexProgram._MaintainTnlProgram) {
Briana90046f2006-12-15 10:07:26 -07001365 /* this is required... */
1366 ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
Brian3e45db62007-03-27 09:51:52 -06001367 }
Keith Whitwell47b29f52005-05-04 11:44:44 +00001368
Brian Paula96f8892005-09-13 01:19:29 +00001369 ctx->FirstTimeCurrent = GL_TRUE;
1370
Brian Paul4d053dd2000-01-14 04:45:47 +00001371 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001372}
1373
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001374
Brian Paulde4f4602003-07-03 02:15:06 +00001375/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001376 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001377 * Note that the driver needs to pass in its dd_function_table here since
1378 * we need to at least call driverFunctions->NewTextureObject to initialize
1379 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001380 *
1381 * \param visual a GLvisual pointer (we copy the struct contents)
1382 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001383 * \param driverFunctions points to the dd_function_table into which the
1384 * driver has plugged in all its special functions.
1385 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001386 *
1387 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001388 */
Brian Paul178a1c52000-04-22 01:05:00 +00001389GLcontext *
Briand881a9c2006-12-20 09:31:07 -07001390_mesa_create_context(const GLvisual *visual,
1391 GLcontext *share_list,
1392 const struct dd_function_table *driverFunctions,
1393 void *driverContext)
Brian Paul4d053dd2000-01-14 04:45:47 +00001394{
Brian Paul4753d602002-06-15 02:38:15 +00001395 GLcontext *ctx;
1396
1397 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001398 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001399
Brian Paul3c634522002-10-24 23:57:19 +00001400 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001401 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001402 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001403
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001404 if (_mesa_initialize_context(ctx, visual, share_list,
1405 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001406 return ctx;
1407 }
1408 else {
Brian Paul3c634522002-10-24 23:57:19 +00001409 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001410 return NULL;
1411 }
1412}
1413
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001414
Keith Whitwell6dc85572003-07-17 13:43:59 +00001415/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001416 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001417 *
1418 * But doesn't free the GLcontext struct itself.
1419 *
1420 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001421 */
Brian Paul178a1c52000-04-22 01:05:00 +00001422void
Brian Paulb1394fa2000-09-26 20:53:53 +00001423_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001424{
Brian Paul4d053dd2000-01-14 04:45:47 +00001425 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001426 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001427 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001428 }
Briana510bc32007-03-06 10:07:59 -07001429 else {
1430 /* unreference WinSysDraw/Read buffers */
1431 _mesa_unreference_framebuffer(&ctx->WinSysDrawBuffer);
1432 _mesa_unreference_framebuffer(&ctx->WinSysReadBuffer);
1433 _mesa_unreference_framebuffer(&ctx->DrawBuffer);
1434 _mesa_unreference_framebuffer(&ctx->ReadBuffer);
1435 }
Brian Paul4d053dd2000-01-14 04:45:47 +00001436
Keith Whitwell6dc85572003-07-17 13:43:59 +00001437 _mesa_free_lighting_data( ctx );
1438 _mesa_free_eval_data( ctx );
1439 _mesa_free_texture_data( ctx );
1440 _mesa_free_matrix_data( ctx );
1441 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001442 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001443 _mesa_free_program_data(ctx);
Brian935f93f2007-03-24 16:20:02 -06001444 _mesa_free_shader_state(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001445 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001446
1447#if FEATURE_ARB_vertex_buffer_object
1448 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001449#endif
Brian Paulc04bb512006-07-11 21:56:43 +00001450 _mesa_delete_array_object(ctx, ctx->Array.DefaultArrayObj);
Brian Paulfd284452001-07-19 15:54:34 +00001451
Brian Paul65a66f52004-11-27 22:47:59 +00001452 /* free dispatch tables */
1453 _mesa_free(ctx->Exec);
1454 _mesa_free(ctx->Save);
1455
Brian Paul30f51ae2001-12-18 04:06:44 +00001456 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001457 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001458 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001459 assert(ctx->Shared->RefCount >= 0);
1460 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1461 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001462 /* free shared state */
1463 free_shared_state( ctx, ctx->Shared );
1464 }
1465
Brian Paul702ca202003-07-18 15:22:16 +00001466 if (ctx->Extensions.String)
Brian Paulc7e164f2006-06-30 15:44:30 +00001467 _mesa_free((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001468}
1469
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001470
Keith Whitwell6dc85572003-07-17 13:43:59 +00001471/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001472 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001473 *
1474 * \param ctx GL context.
1475 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001476 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001477 */
Brian Paul178a1c52000-04-22 01:05:00 +00001478void
Brian Paulb1394fa2000-09-26 20:53:53 +00001479_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001480{
1481 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001482 _mesa_free_context_data(ctx);
Brian Paulc7e164f2006-06-30 15:44:30 +00001483 _mesa_free( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001484 }
1485}
1486
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001487
Keith Whitwell6dc85572003-07-17 13:43:59 +00001488#if _HAVE_FULL_GL
1489/**
jtgafb833d1999-08-19 00:55:39 +00001490 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001491 *
1492 * \param src source context
1493 * \param dst destination context
1494 * \param mask bitwise OR of GL_*_BIT flags
1495 *
1496 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001497 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001498 * memcpy is not enough due to the existence of internal pointers in their data
1499 * structures.
jtgafb833d1999-08-19 00:55:39 +00001500 */
Brian Paul178a1c52000-04-22 01:05:00 +00001501void
Brian Paulb1394fa2000-09-26 20:53:53 +00001502_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001503{
1504 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001505 /* OK to memcpy */
1506 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001507 }
1508 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001509 /* OK to memcpy */
1510 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001511 }
1512 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001513 /* OK to memcpy */
1514 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001515 }
1516 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001517 /* OK to memcpy */
1518 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001519 }
1520 if (mask & GL_ENABLE_BIT) {
1521 /* no op */
1522 }
1523 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001524 /* OK to memcpy */
1525 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001526 }
1527 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001528 /* OK to memcpy */
1529 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001530 }
1531 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001532 /* OK to memcpy */
1533 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001534 }
1535 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001536 GLuint i;
1537 /* begin with memcpy */
Brian Paul2aabdc72006-02-24 18:19:11 +00001538 dst->Light = src->Light;
Brian Paul85d81602002-06-17 23:36:31 +00001539 /* fixup linked lists to prevent pointer insanity */
1540 make_empty_list( &(dst->Light.EnabledList) );
1541 for (i = 0; i < MAX_LIGHTS; i++) {
1542 if (dst->Light.Light[i].Enabled) {
1543 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1544 }
1545 }
jtgafb833d1999-08-19 00:55:39 +00001546 }
1547 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001548 /* OK to memcpy */
1549 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001550 }
1551 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001552 /* OK to memcpy */
1553 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001554 }
1555 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001556 /* OK to memcpy */
1557 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001558 }
1559 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001560 /* OK to memcpy */
1561 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001562 }
1563 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001564 /* OK to memcpy */
1565 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001566 }
1567 if (mask & GL_POLYGON_STIPPLE_BIT) {
1568 /* Use loop instead of MEMCPY due to problem with Portland Group's
1569 * C compiler. Reported by John Stone.
1570 */
Brian Paul85d81602002-06-17 23:36:31 +00001571 GLuint i;
1572 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001573 dst->PolygonStipple[i] = src->PolygonStipple[i];
1574 }
1575 }
1576 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001577 /* OK to memcpy */
1578 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001579 }
1580 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001581 /* OK to memcpy */
1582 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001583 }
1584 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001585 /* Cannot memcpy because of pointers */
1586 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001587 }
1588 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001589 /* OK to memcpy */
1590 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001591 }
1592 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001593 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1594 dst->Viewport.X = src->Viewport.X;
1595 dst->Viewport.Y = src->Viewport.Y;
1596 dst->Viewport.Width = src->Viewport.Width;
1597 dst->Viewport.Height = src->Viewport.Height;
1598 dst->Viewport.Near = src->Viewport.Near;
1599 dst->Viewport.Far = src->Viewport.Far;
1600 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001601 }
Brian Paul85d81602002-06-17 23:36:31 +00001602
Keith Whitwella96308c2000-10-30 13:31:59 +00001603 /* XXX FIXME: Call callbacks?
1604 */
1605 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001606}
Keith Whitwell23caf202000-11-16 21:05:34 +00001607#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001608
1609
Brian Paulb1d53d92003-06-11 18:48:19 +00001610/**
1611 * Check if the given context can render into the given framebuffer
1612 * by checking visual attributes.
Brian Paulca007cb2006-03-07 03:01:26 +00001613 *
1614 * XXX this may go away someday because we're moving toward more freedom
1615 * in binding contexts to drawables with different visual attributes.
1616 * The GL_EXT_f_b_o extension is prompting some of that.
1617 *
Brian Paulb1d53d92003-06-11 18:48:19 +00001618 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1619 */
1620static GLboolean
1621check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1622{
1623 const GLvisual *ctxvis = &ctx->Visual;
1624 const GLvisual *bufvis = &buffer->Visual;
1625
1626 if (ctxvis == bufvis)
1627 return GL_TRUE;
1628
1629 if (ctxvis->rgbMode != bufvis->rgbMode)
1630 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001631#if 0
1632 /* disabling this fixes the fgl_glxgears pbuffer demo */
Brian Paulb1d53d92003-06-11 18:48:19 +00001633 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1634 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001635#endif
Brian Paulb1d53d92003-06-11 18:48:19 +00001636 if (ctxvis->stereoMode && !bufvis->stereoMode)
1637 return GL_FALSE;
1638 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1639 return GL_FALSE;
1640 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1641 return GL_FALSE;
1642 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1643 return GL_FALSE;
1644 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1645 return GL_FALSE;
1646 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1647 return GL_FALSE;
1648 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1649 return GL_FALSE;
1650 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1651 return GL_FALSE;
1652 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1653 return GL_FALSE;
1654
1655 return GL_TRUE;
1656}
1657
1658
Keith Whitwell6dc85572003-07-17 13:43:59 +00001659/**
Brian Paula702bbf2005-09-14 03:11:36 +00001660 * Do one-time initialization for the given framebuffer. Specifically,
1661 * ask the driver for the window's current size and update the framebuffer
1662 * object to match.
1663 * Really, the device driver should totally take care of this.
1664 */
1665static void
1666initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1667{
1668 GLuint width, height;
Brian Paul55e42e52006-10-17 17:43:47 +00001669 if (ctx->Driver.GetBufferSize) {
1670 ctx->Driver.GetBufferSize(fb, &width, &height);
1671 if (ctx->Driver.ResizeBuffers)
1672 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1673 fb->Initialized = GL_TRUE;
1674 }
Brian Paula702bbf2005-09-14 03:11:36 +00001675}
1676
1677
1678/**
1679 * Bind the given context to the given drawBuffer and readBuffer and
1680 * make it the current context for the calling thread.
1681 * We'll render into the drawBuffer and read pixels from the
1682 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001683 *
Brian Paula702bbf2005-09-14 03:11:36 +00001684 * We check that the context's and framebuffer's visuals are compatible
1685 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001686 *
Brian Paula702bbf2005-09-14 03:11:36 +00001687 * \param newCtx the new GL context. If NULL then there will be no current GL
1688 * context.
1689 * \param drawBuffer the drawing framebuffer
1690 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001691 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001692void
Brian Paule4b23562005-05-04 20:11:35 +00001693_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1694 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001695{
Briana90046f2006-12-15 10:07:26 -07001696 GET_CURRENT_CONTEXT(oldCtx);
Briana90046f2006-12-15 10:07:26 -07001697
Keith Whitwell5c728372005-05-12 10:22:29 +00001698 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001699 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001700
Brian Paulbe3602d2001-02-28 00:27:48 +00001701 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001702 */
Brian Paulf1038f82006-03-20 15:20:57 +00001703 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001704 if (!check_compatible(newCtx, drawBuffer)) {
1705 _mesa_warning(newCtx,
1706 "MakeCurrent: incompatible visuals for context and drawbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001707 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001708 }
Brian Paulb1d53d92003-06-11 18:48:19 +00001709 }
Brian Paulf1038f82006-03-20 15:20:57 +00001710 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001711 if (!check_compatible(newCtx, readBuffer)) {
1712 _mesa_warning(newCtx,
1713 "MakeCurrent: incompatible visuals for context and readbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001714 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001715 }
Brian Paulbe3602d2001-02-28 00:27:48 +00001716 }
1717
Briana90046f2006-12-15 10:07:26 -07001718#if 0 /** XXX enable this someday */
1719 if (oldCtx && oldCtx != newCtx) {
1720 /* unbind old context's draw/read buffers */
1721 if (oldCtx->DrawBuffer && oldCtx->DrawBuffer->Name == 0) {
1722 oldCtx->DrawBuffer->RefCount--;
1723 oldCtx->DrawBuffer = NULL;
1724 }
1725 if (oldCtx->ReadBuffer && oldCtx->ReadBuffer->Name == 0) {
1726 oldCtx->ReadBuffer->RefCount--;
1727 oldCtx->ReadBuffer = NULL;
1728 }
1729 if (oldCtx->WinSysDrawBuffer) {
1730 ASSERT(oldCtx->WinSysDrawBuffer->Name == 0);
1731 oldCtx->WinSysDrawBuffer->RefCount--;
1732 oldCtx->WinSysDrawBuffer = NULL;
1733 }
1734 if (oldCtx->WinSysReadBuffer) {
1735 ASSERT(oldCtx->WinSysReadBuffer->Name == 0);
1736 oldCtx->WinSysReadBuffer->RefCount--;
1737 oldCtx->WinSysReadBuffer = NULL;
1738 }
1739 }
1740#endif
1741
Brian Paulc6c0f942006-03-16 18:05:25 +00001742 /* We used to call _glapi_check_multithread() here. Now do it in drivers */
Brian Paulf9b97d92000-01-28 20:17:42 +00001743 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001744 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001745
Briane6a93812007-02-26 11:37:37 -07001746 if (oldCtx) {
Briana510bc32007-03-06 10:07:59 -07001747 _mesa_unreference_framebuffer(&oldCtx->WinSysDrawBuffer);
1748 _mesa_unreference_framebuffer(&oldCtx->WinSysReadBuffer);
Briane6a93812007-02-26 11:37:37 -07001749 }
1750
Keith Whitwell23caf202000-11-16 21:05:34 +00001751 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001752 _glapi_set_dispatch(NULL); /* none current */
1753 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001754 else {
1755 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001756
Keith Whitwell23caf202000-11-16 21:05:34 +00001757 if (drawBuffer && readBuffer) {
1758 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001759
Brian Paule4b23562005-05-04 20:11:35 +00001760 ASSERT(drawBuffer->Name == 0);
1761 ASSERT(readBuffer->Name == 0);
Briana510bc32007-03-06 10:07:59 -07001762 _mesa_reference_framebuffer(&newCtx->WinSysDrawBuffer, drawBuffer);
1763 _mesa_reference_framebuffer(&newCtx->WinSysReadBuffer, readBuffer);
Brian Paulf1038f82006-03-20 15:20:57 +00001764
1765 /*
1766 * Only set the context's Draw/ReadBuffer fields if they're NULL
1767 * or not bound to a user-created FBO.
1768 */
Brian Paule4b23562005-05-04 20:11:35 +00001769 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
Briana510bc32007-03-06 10:07:59 -07001770 _mesa_reference_framebuffer(&newCtx->DrawBuffer, drawBuffer);
Brian Paulf1038f82006-03-20 15:20:57 +00001771 }
1772 if (!newCtx->ReadBuffer || newCtx->ReadBuffer->Name == 0) {
Briana510bc32007-03-06 10:07:59 -07001773 _mesa_reference_framebuffer(&newCtx->ReadBuffer, readBuffer);
Brian Paule4b23562005-05-04 20:11:35 +00001774 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001775
Keith Whitwell23caf202000-11-16 21:05:34 +00001776 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001777
Brian Paul4d4add02006-10-15 19:26:43 +00001778#if 1
1779 /* We want to get rid of these lines: */
1780
Keith Whitwell6dc85572003-07-17 13:43:59 +00001781#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001782 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001783 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001784 }
Brian Paul65a66f52004-11-27 22:47:59 +00001785 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001786 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001787 }
Keith Whitwellf9bfdb12006-09-22 11:36:30 +00001788
1789 _mesa_resizebuffers(newCtx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001790#endif
Brian Paul4d4add02006-10-15 19:26:43 +00001791
1792#else
1793 /* We want the drawBuffer and readBuffer to be initialized by
1794 * the driver.
1795 * This generally means the Width and Height match the actual
1796 * window size and the renderbuffers (both hardware and software
1797 * based) are allocated to match. The later can generally be
1798 * done with a call to _mesa_resize_framebuffer().
1799 *
1800 * It's theoretically possible for a buffer to have zero width
1801 * or height, but for now, assert check that the driver did what's
1802 * expected of it.
1803 */
1804 ASSERT(drawBuffer->Width > 0);
1805 ASSERT(drawBuffer->Height > 0);
1806#endif
1807
Brian Paul65a66f52004-11-27 22:47:59 +00001808 if (newCtx->FirstTimeCurrent) {
1809 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001810 _mesa_set_viewport(newCtx, 0, 0,
1811 drawBuffer->Width, drawBuffer->Height);
Brian Pauldb79d2a2006-03-29 18:41:19 +00001812 _mesa_set_scissor(newCtx, 0, 0,
1813 drawBuffer->Width, drawBuffer->Height );
Brian Paul5e2e96b2006-05-15 15:26:04 +00001814 check_context_limits(newCtx);
Brian Paul65a66f52004-11-27 22:47:59 +00001815 }
Brian Paul00037781999-12-17 14:52:35 +00001816 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001817
Keith Whitwell23caf202000-11-16 21:05:34 +00001818 /* We can use this to help debug user's problems. Tell them to set
1819 * the MESA_INFO env variable before running their app. Then the
1820 * first time each context is made current we'll print some useful
1821 * information.
1822 */
1823 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001824 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001825 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001826 }
1827 newCtx->FirstTimeCurrent = GL_FALSE;
1828 }
Brian Paul00037781999-12-17 14:52:35 +00001829 }
1830}
1831
Brian Paul635ee2d2005-04-15 17:25:07 +00001832
1833/**
1834 * Make context 'ctx' share the display lists, textures and programs
1835 * that are associated with 'ctxToShare'.
1836 * Any display lists, textures or programs associated with 'ctx' will
1837 * be deleted if nobody else is sharing them.
1838 */
1839GLboolean
1840_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1841{
1842 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1843 ctx->Shared->RefCount--;
1844 if (ctx->Shared->RefCount == 0) {
1845 free_shared_state(ctx, ctx->Shared);
1846 }
1847 ctx->Shared = ctxToShare->Shared;
1848 ctx->Shared->RefCount++;
1849 return GL_TRUE;
1850 }
1851 else {
1852 return GL_FALSE;
1853 }
1854}
1855
1856
1857
Keith Whitwell6dc85572003-07-17 13:43:59 +00001858/**
Briand881a9c2006-12-20 09:31:07 -07001859 * \return pointer to the current GL context for this thread.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001860 *
1861 * Calls _glapi_get_context(). This isn't the fastest way to get the current
Briand881a9c2006-12-20 09:31:07 -07001862 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in
1863 * context.h.
Brian Paul00037781999-12-17 14:52:35 +00001864 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001865GLcontext *
1866_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001867{
Brian Paulf9b97d92000-01-28 20:17:42 +00001868 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001869}
1870
Briand881a9c2006-12-20 09:31:07 -07001871
Keith Whitwell6dc85572003-07-17 13:43:59 +00001872/**
1873 * Get context's current API dispatch table.
1874 *
1875 * It'll either be the immediate-mode execute dispatcher or the display list
1876 * compile dispatcher.
1877 *
1878 * \param ctx GL context.
1879 *
1880 * \return pointer to dispatch_table.
1881 *
1882 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001883 */
1884struct _glapi_table *
1885_mesa_get_dispatch(GLcontext *ctx)
1886{
1887 return ctx->CurrentDispatch;
1888}
1889
Keith Whitwell6dc85572003-07-17 13:43:59 +00001890/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001891
1892
jtgafb833d1999-08-19 00:55:39 +00001893/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001894/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001895/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001896/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001897
Keith Whitwell6dc85572003-07-17 13:43:59 +00001898/**
1899 * Record an error.
1900 *
1901 * \param ctx GL context.
1902 * \param error error code.
1903 *
1904 * Records the given error code and call the driver's dd_function_table::Error
1905 * function if defined.
1906 *
1907 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001908 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001909 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001910void
Briand881a9c2006-12-20 09:31:07 -07001911_mesa_record_error(GLcontext *ctx, GLenum error)
jtgafb833d1999-08-19 00:55:39 +00001912{
Brian Paul18a285a2002-03-16 00:53:15 +00001913 if (!ctx)
1914 return;
1915
Brian Paul7eb06032000-07-14 04:13:40 +00001916 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001917 ctx->ErrorValue = error;
1918 }
1919
1920 /* Call device driver's error handler, if any. This is used on the Mac. */
1921 if (ctx->Driver.Error) {
Briand881a9c2006-12-20 09:31:07 -07001922 ctx->Driver.Error(ctx);
jtgafb833d1999-08-19 00:55:39 +00001923 }
1924}
1925
Briand881a9c2006-12-20 09:31:07 -07001926
Keith Whitwell6dc85572003-07-17 13:43:59 +00001927/**
1928 * Execute glFinish().
1929 *
1930 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1931 * dd_function_table::Finish driver callback, if not NULL.
1932 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001933void GLAPIENTRY
Briand881a9c2006-12-20 09:31:07 -07001934_mesa_Finish(void)
jtgafb833d1999-08-19 00:55:39 +00001935{
Brian Paulfa9df402000-02-02 19:16:46 +00001936 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001937 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001938 if (ctx->Driver.Finish) {
Briand881a9c2006-12-20 09:31:07 -07001939 ctx->Driver.Finish(ctx);
jtgafb833d1999-08-19 00:55:39 +00001940 }
1941}
1942
Briand881a9c2006-12-20 09:31:07 -07001943
Keith Whitwell6dc85572003-07-17 13:43:59 +00001944/**
1945 * Execute glFlush().
1946 *
1947 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1948 * dd_function_table::Flush driver callback, if not NULL.
1949 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001950void GLAPIENTRY
Briand881a9c2006-12-20 09:31:07 -07001951_mesa_Flush(void)
jtgafb833d1999-08-19 00:55:39 +00001952{
Brian Paulfa9df402000-02-02 19:16:46 +00001953 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001954 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001955 if (ctx->Driver.Flush) {
Briand881a9c2006-12-20 09:31:07 -07001956 ctx->Driver.Flush(ctx);
jtgafb833d1999-08-19 00:55:39 +00001957 }
jtgafb833d1999-08-19 00:55:39 +00001958}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001959
1960
Keith Whitwell6dc85572003-07-17 13:43:59 +00001961/*@}*/