blob: f51adb59dade49bf124f1d7050a00ab6ebcdc3f3 [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 *
Michal Krol9b3752c2005-01-13 14:08:47 +000011 * Copyright (C) 1999-2005 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"
82#include "attrib.h"
83#include "blend.h"
Brian Paulb1394fa2000-09-26 20:53:53 +000084#include "buffers.h"
Brian Paul148a2842003-09-17 03:40:11 +000085#include "bufferobj.h"
Brian Paul4bdcfe52000-04-17 17:57:04 +000086#include "colortab.h"
jtgafb833d1999-08-19 00:55:39 +000087#include "context.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000088#include "debug.h"
89#include "depth.h"
jtgafb833d1999-08-19 00:55:39 +000090#include "dlist.h"
91#include "eval.h"
92#include "enums.h"
Brian Paul585a68c1999-09-11 11:31:34 +000093#include "extensions.h"
Brian Paule4b23562005-05-04 20:11:35 +000094#include "fbobject.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000095#include "feedback.h"
jtgafb833d1999-08-19 00:55:39 +000096#include "fog.h"
Brian Paulb7a43041999-11-30 20:34:51 +000097#include "get.h"
Brian Paul9560f052000-01-31 23:11:39 +000098#include "glthread.h"
Brian Paulf44898c2003-07-18 15:44:57 +000099#include "glapioffsets.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000100#include "histogram.h"
101#include "hint.h"
jtgafb833d1999-08-19 00:55:39 +0000102#include "hash.h"
103#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000104#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000105#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000106#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000107#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000108#include "pixel.h"
109#include "points.h"
110#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000111#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
112#include "program.h"
113#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000114#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000115#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000116#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000117#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000118#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000119#include "teximage.h"
120#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000121#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000122#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000123#include "varray.h"
Brian Paul363344f2005-09-13 14:48:28 +0000124#include "version.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000125#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000126#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000127#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000128#include "math/m_matrix.h"
129#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000130#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000131#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000132#include "shaderobjects.h"
jtgafb833d1999-08-19 00:55:39 +0000133
davem69775355a2001-06-05 23:54:00 +0000134#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000135#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000136#endif
jtgafb833d1999-08-19 00:55:39 +0000137
Keith Whitwell23caf202000-11-16 21:05:34 +0000138#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000139int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000140#endif
141
142#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000143int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000144#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000145
Brian Paul86b84272001-12-14 02:50:01 +0000146
Brian Paul27558a12003-03-01 01:50:20 +0000147/* ubyte -> float conversion */
148GLfloat _mesa_ubyte_to_float_color_tab[256];
149
Brian Paul9a33a112002-06-13 04:28:29 +0000150static void
151free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
152
Brian Paul86b84272001-12-14 02:50:01 +0000153
Brian Paulb1394fa2000-09-26 20:53:53 +0000154/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000155/** \name OpenGL SI-style interface (new in Mesa 3.5)
156 *
157 * \if subset
158 * \note Most of these functions are never called in the Mesa subset.
159 * \endif
160 */
161/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000162
Keith Whitwell6dc85572003-07-17 13:43:59 +0000163/**
164 * Destroy context callback.
165 *
166 * \param gc context.
167 * \return GL_TRUE on success, or GL_FALSE on failure.
168 *
169 * \ifnot subset
170 * Called by window system/device driver (via __GLexports::destroyCurrent) when
171 * the rendering context is to be destroyed.
172 * \endif
173 *
174 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000175 */
176GLboolean
177_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000178{
179 if (gc) {
180 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000181 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000182 }
183 return GL_TRUE;
184}
185
Keith Whitwell6dc85572003-07-17 13:43:59 +0000186/**
187 * Unbind context callback.
188 *
189 * \param gc context.
190 * \return GL_TRUE on success, or GL_FALSE on failure.
191 *
192 * \ifnot subset
193 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000194 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000195 * \endif
196 *
197 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000198 */
199GLboolean
200_mesa_loseCurrent(__GLcontext *gc)
201{
202 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000203 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000204 return GL_TRUE;
205}
206
Keith Whitwell6dc85572003-07-17 13:43:59 +0000207/**
208 * Bind context callback.
209 *
210 * \param gc context.
211 * \return GL_TRUE on success, or GL_FALSE on failure.
212 *
213 * \ifnot subset
214 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000215 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000216 * \endif
217 *
218 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000219 */
220GLboolean
221_mesa_makeCurrent(__GLcontext *gc)
222{
223 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000224 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000225 return GL_TRUE;
226}
227
Keith Whitwell6dc85572003-07-17 13:43:59 +0000228/**
229 * Share context callback.
230 *
231 * \param gc context.
232 * \param gcShare shared context.
233 * \return GL_TRUE on success, or GL_FALSE on failure.
234 *
235 * \ifnot subset
236 * Called by window system/device driver (via __GLexports::shareContext)
237 * \endif
238 *
239 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000240 */
241GLboolean
242_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
243{
244 if (gc && gcShare && gc->Shared && gcShare->Shared) {
245 gc->Shared->RefCount--;
246 if (gc->Shared->RefCount == 0) {
247 free_shared_state(gc, gc->Shared);
248 }
249 gc->Shared = gcShare->Shared;
250 gc->Shared->RefCount++;
251 return GL_TRUE;
252 }
253 else {
254 return GL_FALSE;
255 }
256}
257
Keith Whitwell6dc85572003-07-17 13:43:59 +0000258
259#if _HAVE_FULL_GL
260/**
261 * Copy context callback.
262 */
Brian Paul9a33a112002-06-13 04:28:29 +0000263GLboolean
264_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
265{
266 if (dst && src) {
267 _mesa_copy_context( src, dst, mask );
268 return GL_TRUE;
269 }
270 else {
271 return GL_FALSE;
272 }
273}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000274#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000275
Keith Whitwell6dc85572003-07-17 13:43:59 +0000276/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000277GLboolean
278_mesa_forceCurrent(__GLcontext *gc)
279{
Brian Paula6c423d2004-08-25 15:59:48 +0000280 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000281 return GL_TRUE;
282}
283
Keith Whitwell6dc85572003-07-17 13:43:59 +0000284/**
285 * Windows/buffer resizing notification callback.
286 *
287 * \param gc GL context.
288 * \return GL_TRUE on success, or GL_FALSE on failure.
289 */
Brian Paul9a33a112002-06-13 04:28:29 +0000290GLboolean
291_mesa_notifyResize(__GLcontext *gc)
292{
293 GLint x, y;
294 GLuint width, height;
295 __GLdrawablePrivate *d = gc->imports.getDrawablePrivate(gc);
296 if (!d || !d->getDrawableSize)
297 return GL_FALSE;
298 d->getDrawableSize( d, &x, &y, &width, &height );
299 /* update viewport, resize software buffers, etc. */
300 return GL_TRUE;
301}
302
Keith Whitwell6dc85572003-07-17 13:43:59 +0000303/**
304 * Window/buffer destruction notification callback.
305 *
306 * \param gc GL context.
307 *
308 * Called when the context's window/buffer is going to be destroyed.
309 *
310 * No-op
311 */
Brian Paul9a33a112002-06-13 04:28:29 +0000312void
313_mesa_notifyDestroy(__GLcontext *gc)
314{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000315 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000316 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000317}
318
Keith Whitwell6dc85572003-07-17 13:43:59 +0000319/**
320 * Swap buffers notification callback.
321 *
322 * \param gc GL context.
323 *
324 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000325 * We have to finish any pending rendering.
326 */
327void
328_mesa_notifySwapBuffers(__GLcontext *gc)
329{
330 FLUSH_VERTICES( gc, 0 );
331}
332
Keith Whitwell6dc85572003-07-17 13:43:59 +0000333/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000334struct __GLdispatchStateRec *
335_mesa_dispatchExec(__GLcontext *gc)
336{
Brian Paula6c423d2004-08-25 15:59:48 +0000337 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000338 return NULL;
339}
340
Keith Whitwell6dc85572003-07-17 13:43:59 +0000341/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000342void
343_mesa_beginDispatchOverride(__GLcontext *gc)
344{
Brian Paula6c423d2004-08-25 15:59:48 +0000345 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000346}
347
Keith Whitwell6dc85572003-07-17 13:43:59 +0000348/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000349void
350_mesa_endDispatchOverride(__GLcontext *gc)
351{
Brian Paula6c423d2004-08-25 15:59:48 +0000352 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000353}
354
Keith Whitwell6dc85572003-07-17 13:43:59 +0000355/**
356 * \ifnot subset
357 * Setup the exports.
358 *
359 * The window system will call these functions when it needs Mesa to do
360 * something.
361 *
362 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000363 * the Xlib driver should plug in the XMesa*-style functions into this
364 * structure. The XMesa-style functions should then call the _mesa_*
365 * version of these functions. This is an approximation to OO design
366 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000367 * \endif
368 *
369 * \if subset
370 * No-op.
371 *
372 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000373 */
374static void
375_mesa_init_default_exports(__GLexports *exports)
376{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000377#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000378 exports->destroyContext = _mesa_destroyContext;
379 exports->loseCurrent = _mesa_loseCurrent;
380 exports->makeCurrent = _mesa_makeCurrent;
381 exports->shareContext = _mesa_shareContext;
382 exports->copyContext = _mesa_copyContext;
383 exports->forceCurrent = _mesa_forceCurrent;
384 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000385 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000386 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
387 exports->dispatchExec = _mesa_dispatchExec;
388 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
389 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000390#else
391 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000392#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000393}
394
Keith Whitwell6dc85572003-07-17 13:43:59 +0000395/**
396 * Exported OpenGL SI interface.
397 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000398__GLcontext *
399__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
400{
401 GLcontext *ctx;
402
Brian Paul4753d602002-06-15 02:38:15 +0000403 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000404 if (ctx == NULL) {
405 return NULL;
406 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000407
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000408 /* XXX doesn't work at this time */
409 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000410 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000411
412 return ctx;
413}
414
Keith Whitwell6dc85572003-07-17 13:43:59 +0000415/**
416 * Exported OpenGL SI interface.
417 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000418void
419__glCoreNopDispatch(void)
420{
421#if 0
422 /* SI */
423 __gl_dispatch = __glNopDispatchState;
424#else
425 /* Mesa */
426 _glapi_set_dispatch(NULL);
427#endif
428}
429
Keith Whitwell6dc85572003-07-17 13:43:59 +0000430/*@}*/
431
Brian Paulb1394fa2000-09-26 20:53:53 +0000432
jtgafb833d1999-08-19 00:55:39 +0000433/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000434/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000435/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000436/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000437
Keith Whitwell6dc85572003-07-17 13:43:59 +0000438/**
Brian Paul894844a2004-03-21 17:05:03 +0000439 * Allocates a GLvisual structure and initializes it via
440 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000441 *
442 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
443 * \param dbFlag double buffering
444 * \param stereoFlag stereo buffer
445 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
446 * is acceptable but the actual depth type will be GLushort or GLuint as
447 * needed.
448 * \param stencilBits requested minimum bits per stencil buffer value
449 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
450 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
451 * \param redBits number of bits per color component in frame buffer for RGB(A)
452 * mode. We always use 8 in core Mesa though.
453 * \param greenBits same as above.
454 * \param blueBits same as above.
455 * \param alphaBits same as above.
456 * \param numSamples not really used.
457 *
458 * \return pointer to new GLvisual or NULL if requested parameters can't be
459 * met.
460 *
Brian Paul894844a2004-03-21 17:05:03 +0000461 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000462 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000463GLvisual *
464_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000465 GLboolean dbFlag,
466 GLboolean stereoFlag,
467 GLint redBits,
468 GLint greenBits,
469 GLint blueBits,
470 GLint alphaBits,
471 GLint indexBits,
472 GLint depthBits,
473 GLint stencilBits,
474 GLint accumRedBits,
475 GLint accumGreenBits,
476 GLint accumBlueBits,
477 GLint accumAlphaBits,
478 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000479{
Brian Paul178a1c52000-04-22 01:05:00 +0000480 GLvisual *vis = (GLvisual *) CALLOC( sizeof(GLvisual) );
481 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000482 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000483 redBits, greenBits, blueBits, alphaBits,
484 indexBits, depthBits, stencilBits,
485 accumRedBits, accumGreenBits,
486 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000487 numSamples)) {
Brian Paul178a1c52000-04-22 01:05:00 +0000488 FREE(vis);
489 return NULL;
490 }
491 }
492 return vis;
493}
494
Keith Whitwell6dc85572003-07-17 13:43:59 +0000495/**
Brian Paul894844a2004-03-21 17:05:03 +0000496 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000497 * GLvisual object with the given parameters. If the caller needs
498 * to set additional fields, he should just probably init the whole GLvisual
499 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000500 * \return GL_TRUE on success, or GL_FALSE on failure.
501 *
502 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000503 */
504GLboolean
505_mesa_initialize_visual( GLvisual *vis,
506 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000507 GLboolean dbFlag,
508 GLboolean stereoFlag,
509 GLint redBits,
510 GLint greenBits,
511 GLint blueBits,
512 GLint alphaBits,
513 GLint indexBits,
514 GLint depthBits,
515 GLint stencilBits,
516 GLint accumRedBits,
517 GLint accumGreenBits,
518 GLint accumBlueBits,
519 GLint accumAlphaBits,
520 GLint numSamples )
521{
522 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000523
Brian Pauled30dfa2000-03-03 17:47:39 +0000524 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000525 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000526 }
Brian Paule4b23562005-05-04 20:11:35 +0000527 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000528 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000529 }
Brian Paule4b23562005-05-04 20:11:35 +0000530 if (accumRedBits < 0 || accumRedBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000531 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000532 }
Brian Paule4b23562005-05-04 20:11:35 +0000533 if (accumGreenBits < 0 || accumGreenBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000534 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000535 }
Brian Paule4b23562005-05-04 20:11:35 +0000536 if (accumBlueBits < 0 || accumBlueBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000537 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000538 }
Brian Paule4b23562005-05-04 20:11:35 +0000539 if (accumAlphaBits < 0 || accumAlphaBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000540 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000541 }
542
Brian Paulb6bcae52001-01-23 23:39:36 +0000543 vis->rgbMode = rgbFlag;
544 vis->doubleBufferMode = dbFlag;
545 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000546
Brian Paulb6bcae52001-01-23 23:39:36 +0000547 vis->redBits = redBits;
548 vis->greenBits = greenBits;
549 vis->blueBits = blueBits;
550 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000551 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000552
Brian Paulb6bcae52001-01-23 23:39:36 +0000553 vis->indexBits = indexBits;
554 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000555 vis->stencilBits = stencilBits;
556
557 vis->accumRedBits = accumRedBits;
558 vis->accumGreenBits = accumGreenBits;
559 vis->accumBlueBits = accumBlueBits;
560 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000561
Brian Paul153f1542002-10-29 15:04:35 +0000562 vis->haveAccumBuffer = accumRedBits > 0;
563 vis->haveDepthBuffer = depthBits > 0;
564 vis->haveStencilBuffer = stencilBits > 0;
565
566 vis->numAuxBuffers = 0;
567 vis->level = 0;
568 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000569 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000570 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000571
Brian Paul178a1c52000-04-22 01:05:00 +0000572 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000573}
574
Brian Paul894844a2004-03-21 17:05:03 +0000575
Keith Whitwell6dc85572003-07-17 13:43:59 +0000576/**
Brian Paul894844a2004-03-21 17:05:03 +0000577 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000578 *
579 * \param vis visual.
580 *
581 * Frees the visual structure.
582 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000583void
584_mesa_destroy_visual( GLvisual *vis )
585{
586 FREE(vis);
587}
588
Keith Whitwell6dc85572003-07-17 13:43:59 +0000589/*@}*/
590
Brian Paulb371e0d2000-03-31 01:05:51 +0000591
Brian Paul4d053dd2000-01-14 04:45:47 +0000592/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000593/** \name Context allocation, initialization, destroying
594 *
595 * The purpose of the most initialization functions here is to provide the
596 * default state values according to the OpenGL specification.
597 */
jtgafb833d1999-08-19 00:55:39 +0000598/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000599/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000600
Keith Whitwell6dc85572003-07-17 13:43:59 +0000601/**
602 * One-time initialization mutex lock.
603 *
604 * \sa Used by one_time_init().
605 */
Brian Paul9560f052000-01-31 23:11:39 +0000606_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
607
Keith Whitwell6dc85572003-07-17 13:43:59 +0000608/**
609 * Calls all the various one-time-init functions in Mesa.
610 *
611 * While holding a global mutex lock, calls several initialization functions,
612 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
613 * defined.
614 *
615 * \sa _mesa_init_lists(), _math_init().
jtgafb833d1999-08-19 00:55:39 +0000616 */
Brian Paul178a1c52000-04-22 01:05:00 +0000617static void
Brian Paul4753d602002-06-15 02:38:15 +0000618one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000619{
620 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000621 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000622 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000623 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000624 GLuint i;
625
Brian Paul4d053dd2000-01-14 04:45:47 +0000626 /* do some implementation tests */
627 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000628 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000629 assert( sizeof(GLshort) == 2 );
630 assert( sizeof(GLushort) == 2 );
631 assert( sizeof(GLint) == 4 );
632 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000633
Brian Paul08836342001-03-03 20:33:27 +0000634 _mesa_init_lists();
Keith Whitwell23caf202000-11-16 21:05:34 +0000635
Keith Whitwell6dc85572003-07-17 13:43:59 +0000636#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000637 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000638
639 for (i = 0; i < 256; i++) {
640 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
641 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000642#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000643
davem69775355a2001-06-05 23:54:00 +0000644#ifdef USE_SPARC_ASM
645 _mesa_init_sparc_glapi_relocs();
646#endif
Brian Paul3c634522002-10-24 23:57:19 +0000647 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000648 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000649 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000650 }
651 else {
652 _glapi_noop_enable_warnings(GL_FALSE);
653 }
654
jtgafb833d1999-08-19 00:55:39 +0000655#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000656 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
657 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000658#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000659
660 alreadyCalled = GL_TRUE;
661 }
Brian Paul9560f052000-01-31 23:11:39 +0000662 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000663}
664
Brian Paul894844a2004-03-21 17:05:03 +0000665
Keith Whitwell6dc85572003-07-17 13:43:59 +0000666/**
jtgafb833d1999-08-19 00:55:39 +0000667 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000668 * Initializes the display list, texture objects and vertex programs hash
669 * tables, allocates the texture objects. If it runs out of memory, frees
670 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000671 *
672 * \return pointer to a gl_shared_state structure on success, or NULL on
673 * failure.
jtgafb833d1999-08-19 00:55:39 +0000674 */
Brian Paula3f13702003-04-01 16:41:50 +0000675static GLboolean
676alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000677{
Brian Paula3f13702003-04-01 16:41:50 +0000678 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000679 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000680 return GL_FALSE;
681
682 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000683
Brian Paule4b684c2000-09-12 21:07:40 +0000684 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000685
Brian Paule4b684c2000-09-12 21:07:40 +0000686 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000687 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000688#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000689 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000690#endif
jtgafb833d1999-08-19 00:55:39 +0000691
Brian Paul451f3102003-04-17 01:48:19 +0000692#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000693 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000694 if (!ss->DefaultVertexProgram)
695 goto cleanup;
696#endif
697#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000698 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000699 if (!ss->DefaultFragmentProgram)
700 goto cleanup;
701#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000702#if FEATURE_ATI_fragment_shader
703 ss->DefaultFragmentShader = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_SHADER_ATI, 0);
704 if (!ss->DefaultFragmentShader)
705 goto cleanup;
706#endif
Brian Paul451f3102003-04-17 01:48:19 +0000707
Brian Paulddc82ee2005-02-05 19:56:45 +0000708 ss->BufferObjects = _mesa_NewHashTable();
709
Michal Krol9b3752c2005-01-13 14:08:47 +0000710 ss->GL2Objects = _mesa_NewHashTable ();
Ian Romanick0207b472003-09-09 00:10:12 +0000711
Brian Paula3f13702003-04-01 16:41:50 +0000712 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
713 if (!ss->Default1D)
714 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000715
Brian Paula3f13702003-04-01 16:41:50 +0000716 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
717 if (!ss->Default2D)
718 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000719
Brian Paula3f13702003-04-01 16:41:50 +0000720 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
721 if (!ss->Default3D)
722 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000723
Brian Paula3f13702003-04-01 16:41:50 +0000724 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
725 if (!ss->DefaultCubeMap)
726 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000727
Brian Paula3f13702003-04-01 16:41:50 +0000728 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
729 if (!ss->DefaultRect)
730 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000731
Brian Paula3f13702003-04-01 16:41:50 +0000732 /* Effectively bind the default textures to all texture units */
733 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
734 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
735 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
736 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
737 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
738
Brian Paulddc82ee2005-02-05 19:56:45 +0000739#if FEATURE_EXT_framebuffer_object
740 ss->FrameBuffers = _mesa_NewHashTable();
741 if (!ss->FrameBuffers)
742 goto cleanup;
743 ss->RenderBuffers = _mesa_NewHashTable();
744 if (!ss->RenderBuffers)
745 goto cleanup;
746#endif
747
748
Brian Paula3f13702003-04-01 16:41:50 +0000749 return GL_TRUE;
750
751 cleanup:
752 /* Ran out of memory at some point. Free everything and return NULL */
753 if (ss->DisplayList)
754 _mesa_DeleteHashTable(ss->DisplayList);
755 if (ss->TexObjects)
756 _mesa_DeleteHashTable(ss->TexObjects);
757#if FEATURE_NV_vertex_program
758 if (ss->Programs)
759 _mesa_DeleteHashTable(ss->Programs);
760#endif
Brian Paul451f3102003-04-17 01:48:19 +0000761#if FEATURE_ARB_vertex_program
762 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000763 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000764#endif
765#if FEATURE_ARB_fragment_program
766 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000767 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000768#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000769#if FEATURE_ATI_fragment_shader
770 if (ss->DefaultFragmentShader)
771 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentShader);
772#endif
Brian Paul21841f02004-08-14 14:28:11 +0000773#if FEATURE_ARB_vertex_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000774 if (ss->BufferObjects)
775 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000776#endif
777
778 if (ss->GL2Objects)
Michal Krol9b3752c2005-01-13 14:08:47 +0000779 _mesa_DeleteHashTable (ss->GL2Objects);
Ian Romanick0207b472003-09-09 00:10:12 +0000780
Brian Paulddc82ee2005-02-05 19:56:45 +0000781#if FEATURE_EXT_framebuffer_object
782 if (ss->FrameBuffers)
783 _mesa_DeleteHashTable(ss->FrameBuffers);
784 if (ss->RenderBuffers)
785 _mesa_DeleteHashTable(ss->RenderBuffers);
786#endif
787
Brian Paula3f13702003-04-01 16:41:50 +0000788 if (ss->Default1D)
789 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
790 if (ss->Default2D)
791 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
792 if (ss->Default3D)
793 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
794 if (ss->DefaultCubeMap)
795 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
796 if (ss->DefaultRect)
797 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
798 if (ss)
799 _mesa_free(ss);
800 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000801}
802
Keith Whitwell6dc85572003-07-17 13:43:59 +0000803/**
jtgafb833d1999-08-19 00:55:39 +0000804 * Deallocate a shared state context and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000805 *
806 * \param ctx GL context.
807 * \param ss shared state pointer.
808 *
809 * Frees the display lists, the texture objects (calling the driver texture
810 * deletion callback to free its private data) and the vertex programs, as well
811 * as their hash tables.
812 *
813 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000814 */
Brian Paul178a1c52000-04-22 01:05:00 +0000815static void
816free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000817{
818 /* Free display lists */
819 while (1) {
Brian Paulbb797902000-01-24 16:19:54 +0000820 GLuint list = _mesa_HashFirstEntry(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000821 if (list) {
Brian Paul08836342001-03-03 20:33:27 +0000822 _mesa_destroy_list(ctx, list);
jtgafb833d1999-08-19 00:55:39 +0000823 }
824 else {
825 break;
826 }
827 }
Brian Paulbb797902000-01-24 16:19:54 +0000828 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000829
830 /* Free texture objects */
Brian Paula3f13702003-04-01 16:41:50 +0000831 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000832 /* the default textures */
833 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
834 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
835 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
836 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
837 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
838 /* all other textures */
Brian Paula3f13702003-04-01 16:41:50 +0000839 while (1) {
840 GLuint texName = _mesa_HashFirstEntry(ss->TexObjects);
841 if (texName) {
842 struct gl_texture_object *texObj = (struct gl_texture_object *)
843 _mesa_HashLookup(ss->TexObjects, texName);
844 ASSERT(texObj);
845 (*ctx->Driver.DeleteTexture)(ctx, texObj);
846 _mesa_HashRemove(ss->TexObjects, texName);
847 }
848 else {
849 break;
850 }
jtgafb833d1999-08-19 00:55:39 +0000851 }
Brian Paulbb797902000-01-24 16:19:54 +0000852 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000853
Brian Paul8dfc5b92002-10-16 17:57:51 +0000854#if FEATURE_NV_vertex_program
Brian Paul30f51ae2001-12-18 04:06:44 +0000855 /* Free vertex programs */
856 while (1) {
Brian Paul610d5992003-01-14 04:55:45 +0000857 GLuint prog = _mesa_HashFirstEntry(ss->Programs);
Brian Paul30f51ae2001-12-18 04:06:44 +0000858 if (prog) {
Brian Paul451f3102003-04-17 01:48:19 +0000859 struct program *p = (struct program *) _mesa_HashLookup(ss->Programs,
860 prog);
861 ASSERT(p);
Brian Paul4d859f72004-01-23 18:57:05 +0000862 ctx->Driver.DeleteProgram(ctx, p);
Brian Paul451f3102003-04-17 01:48:19 +0000863 _mesa_HashRemove(ss->Programs, prog);
Brian Paul30f51ae2001-12-18 04:06:44 +0000864 }
865 else {
866 break;
867 }
868 }
Brian Paul610d5992003-01-14 04:55:45 +0000869 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000870#endif
Brian Paul21841f02004-08-14 14:28:11 +0000871#if FEATURE_ARB_vertex_program
872 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
873#endif
874#if FEATURE_ARB_fragment_program
875 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
876#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000877#if FEATURE_ATI_fragment_shader
878 _mesa_delete_program(ctx, ss->DefaultFragmentShader);
879#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000880
Brian Paul21841f02004-08-14 14:28:11 +0000881#if FEATURE_ARB_vertex_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000882 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000883#endif
884
885 _mesa_DeleteHashTable (ss->GL2Objects);
886
887#if FEATURE_EXT_framebuffer_object
888 _mesa_DeleteHashTable(ss->FrameBuffers);
889 _mesa_DeleteHashTable(ss->RenderBuffers);
890#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000891
Keith Whitwelle15fd852002-12-12 13:03:15 +0000892 _glthread_DESTROY_MUTEX(ss->Mutex);
893
Brian Paulbd5cdaf1999-10-13 18:42:49 +0000894 FREE(ss);
jtgafb833d1999-08-19 00:55:39 +0000895}
896
897
Brian Paul4d859f72004-01-23 18:57:05 +0000898/**
899 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
900 */
901static void
902_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000903{
Brian Paul88bf0382004-02-13 15:30:08 +0000904 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000905
Keith Whitwell6dc85572003-07-17 13:43:59 +0000906 /* Current group */
907 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
908 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000909 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000910 /* special cases: */
911 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
912 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
913 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000914 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000915 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000916
Keith Whitwell6dc85572003-07-17 13:43:59 +0000917 ctx->Current.Index = 1;
918 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000919}
920
921
Brian Paul4d859f72004-01-23 18:57:05 +0000922/**
923 * Initialize fields of gl_constants (aka ctx->Const.*).
924 * Use defaults from config.h. The device drivers will often override
925 * some of these values (such as number of texture units).
926 */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000927static void
928_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000929{
Brian Paul4d053dd2000-01-14 04:45:47 +0000930 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +0000931
Brian Paulcd1cefa2001-06-13 14:56:14 +0000932 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
933 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
934
Brian Paul53f82c52004-10-02 16:39:09 +0000935 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +0000936 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +0000937 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
938 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +0000939 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000940 ctx->Const.MaxTextureUnits = MAX_TEXTURE_UNITS;
Brian Paul610d5992003-01-14 04:55:45 +0000941 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
942 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Gareth Hughes2c3d34c2001-03-18 08:53:49 +0000943 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +0000944 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +0000945 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +0000946 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
947 ctx->Const.MinPointSize = MIN_POINT_SIZE;
948 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
949 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
950 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000951 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +0000952 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
953 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
954 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
955 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000956 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +0000957 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +0000958 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
959 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +0000960 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
961 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +0000962 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +0000963 ctx->Const.MaxSpotExponent = 128.0;
964 ctx->Const.MaxViewportWidth = MAX_WIDTH;
965 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +0000966#if FEATURE_ARB_vertex_program
Brian Pauld0492cf2003-04-11 01:20:06 +0000967 ctx->Const.MaxVertexProgramInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
Brian Paul451f3102003-04-17 01:48:19 +0000968 ctx->Const.MaxVertexProgramAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
969 ctx->Const.MaxVertexProgramTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
970 ctx->Const.MaxVertexProgramLocalParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
971 ctx->Const.MaxVertexProgramEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;/*XXX*/
972 ctx->Const.MaxVertexProgramAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
Brian Pauld0492cf2003-04-11 01:20:06 +0000973#endif
974#if FEATURE_ARB_fragment_program
Brian Pauld0492cf2003-04-11 01:20:06 +0000975 ctx->Const.MaxFragmentProgramInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
Brian Paul451f3102003-04-17 01:48:19 +0000976 ctx->Const.MaxFragmentProgramAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
977 ctx->Const.MaxFragmentProgramTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
978 ctx->Const.MaxFragmentProgramLocalParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
979 ctx->Const.MaxFragmentProgramEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;/*XXX*/
980 ctx->Const.MaxFragmentProgramAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
981 ctx->Const.MaxFragmentProgramAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
982 ctx->Const.MaxFragmentProgramTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
983 ctx->Const.MaxFragmentProgramTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
Brian Pauld0492cf2003-04-11 01:20:06 +0000984#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000985
Brian Pauledd67742003-04-18 18:02:43 +0000986 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
987 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +0000988
Brian Paula2b9bad2003-11-10 19:08:37 +0000989 /* If we're running in the X server, do bounds checking to prevent
990 * segfaults and server crashes!
991 */
992#if defined(XFree86LOADER) && defined(IN_MODULE)
993 ctx->Const.CheckArrayBounds = GL_TRUE;
994#else
995 ctx->Const.CheckArrayBounds = GL_FALSE;
996#endif
997
Brian Paul53f82c52004-10-02 16:39:09 +0000998 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
999
Brian Paul3deaa012005-02-07 05:08:24 +00001000 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001001 ctx->Const.ColorReadFormat = GL_RGBA;
1002 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1003
Brian Paul3deaa012005-02-07 05:08:24 +00001004#if FEATURE_EXT_framebuffer_object
1005 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1006 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1007#endif
1008
Brian Paul53f82c52004-10-02 16:39:09 +00001009 /* sanity checks */
Brian Paul92f97852003-05-01 22:44:02 +00001010 ASSERT(ctx->Const.MaxTextureUnits == MAX2(ctx->Const.MaxTextureImageUnits, ctx->Const.MaxTextureCoordUnits));
Keith Whitwell6dc85572003-07-17 13:43:59 +00001011}
jtgafb833d1999-08-19 00:55:39 +00001012
Brian Paul4d859f72004-01-23 18:57:05 +00001013
Keith Whitwell6dc85572003-07-17 13:43:59 +00001014/**
1015 * Initialize the attribute groups in a GL context.
1016 *
1017 * \param ctx GL context.
1018 *
1019 * Initializes all the attributes, calling the respective <tt>init*</tt>
1020 * functions for the more complex data structures.
1021 */
1022static GLboolean
1023init_attrib_groups( GLcontext *ctx )
1024{
1025 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001026
Keith Whitwell6dc85572003-07-17 13:43:59 +00001027 /* Constants */
1028 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001029
Brian Paul4d053dd2000-01-14 04:45:47 +00001030 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001031 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001032
Keith Whitwell6dc85572003-07-17 13:43:59 +00001033 /* Attribute Groups */
1034 _mesa_init_accum( ctx );
1035 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001036 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001037 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001038 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001039 _mesa_init_current( ctx );
1040 _mesa_init_depth( ctx );
1041 _mesa_init_debug( ctx );
1042 _mesa_init_display_list( ctx );
1043 _mesa_init_eval( ctx );
1044 _mesa_init_feedback( ctx );
1045 _mesa_init_fog( ctx );
1046 _mesa_init_histogram( ctx );
1047 _mesa_init_hint( ctx );
1048 _mesa_init_line( ctx );
1049 _mesa_init_lighting( ctx );
1050 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001051 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001052 _mesa_init_pixel( ctx );
1053 _mesa_init_point( ctx );
1054 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001055 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001056 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001057 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001058 _mesa_init_scissor( ctx );
Michal Krol9b3752c2005-01-13 14:08:47 +00001059 _mesa_init_shaderobjects (ctx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001060 _mesa_init_stencil( ctx );
1061 _mesa_init_transform( ctx );
1062 _mesa_init_varray( ctx );
1063 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001064
Keith Whitwell6dc85572003-07-17 13:43:59 +00001065 if (!_mesa_init_texture( ctx ))
1066 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001067
Brian Paul8f04c122004-04-27 13:39:20 +00001068 _mesa_init_texture_s3tc( ctx );
1069 _mesa_init_texture_fxt1( ctx );
1070
Brian Paul4d053dd2000-01-14 04:45:47 +00001071 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001072 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001073 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001074 ctx->_Facing = 0;
Brian Paul4923e192004-02-28 22:30:58 +00001075#if CHAN_TYPE == GL_FLOAT
1076 ctx->ClampFragmentColors = GL_FALSE; /* XXX temporary */
1077#else
1078 ctx->ClampFragmentColors = GL_TRUE;
1079#endif
1080 ctx->ClampVertexColors = GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +00001081
Brian Paula3f13702003-04-01 16:41:50 +00001082 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001083}
1084
1085
Brian Paulf44898c2003-07-18 15:44:57 +00001086/**
Brian Paul21f69782004-11-27 05:05:32 +00001087 * This is the default function we plug into all dispatch table slots
1088 * This helps prevents a segfault when someone calls a GL function without
1089 * first checking if the extension's supported.
1090 */
1091static int
1092generic_nop(void)
1093{
1094 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1095 return 0;
1096}
1097
1098
1099/**
1100 * Allocate and initialize a new dispatch table.
1101 */
1102static struct _glapi_table *
1103alloc_dispatch_table(void)
1104{
1105 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1106 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1107 * Mesa we do this to accomodate different versions of libGL and various
1108 * DRI drivers.
1109 */
1110 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1111 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1112 struct _glapi_table *table =
1113 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1114 if (table) {
1115 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001116 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001117 for (i = 0; i < numEntries; i++) {
1118 entry[i] = (_glapi_proc) generic_nop;
1119 }
1120 }
1121 return table;
1122}
1123
1124
1125/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001126 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001127 *
1128 * This includes allocating all the other structs and arrays which hang off of
1129 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001130 * Note that the driver needs to pass in its dd_function_table here since
1131 * we need to at least call driverFunctions->NewTextureObject to create the
1132 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001133 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001134 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001135 *
1136 * Performs the imports and exports callback tables initialization, and
1137 * miscellaneous one-time initializations. If no shared context is supplied one
1138 * is allocated, and increase its reference count. Setups the GL API dispatch
1139 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1140 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1141 * for debug flags.
1142 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001143 * \param ctx the context to initialize
1144 * \param visual describes the visual attributes for this context
1145 * \param share_list points to context to share textures, display lists,
1146 * etc with, or NULL
1147 * \param driverFunctions table of device driver functions for this context
1148 * to use
1149 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001150 */
Brian Paul178a1c52000-04-22 01:05:00 +00001151GLboolean
1152_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001153 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001154 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001155 const struct dd_function_table *driverFunctions,
1156 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001157{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001158 ASSERT(driverContext);
1159 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001160 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001161
Brian Paul3c634522002-10-24 23:57:19 +00001162 /* If the driver wants core Mesa to use special imports, it'll have to
1163 * override these defaults.
1164 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001165 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001166
Brian Paul9a33a112002-06-13 04:28:29 +00001167 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001168 _mesa_init_default_exports( &(ctx->exports) );
1169
1170 /* misc one-time initializations */
1171 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001172
Brian Paulb1394fa2000-09-26 20:53:53 +00001173 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001174 ctx->DrawBuffer = NULL;
1175 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001176 ctx->WinSysDrawBuffer = NULL;
1177 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001178
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001179 /* Plug in driver functions and context pointer here.
1180 * This is important because when we call alloc_shared_state() below
1181 * we'll call ctx->Driver.NewTextureObject() to create the default
1182 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001183 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001184 ctx->Driver = *driverFunctions;
1185 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001186
jtgafb833d1999-08-19 00:55:39 +00001187 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001188 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001189 ctx->Shared = share_list->Shared;
1190 }
1191 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001192 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001193 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001194 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001195 }
1196 }
Brian Paul9560f052000-01-31 23:11:39 +00001197 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001198 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001199 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001200
Keith Whitwell6dc85572003-07-17 13:43:59 +00001201 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001202 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001203 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001204 }
jtgafb833d1999-08-19 00:55:39 +00001205
Brian Paul21f69782004-11-27 05:05:32 +00001206 /* setup the API dispatch tables */
1207 ctx->Exec = alloc_dispatch_table();
1208 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001209 if (!ctx->Exec || !ctx->Save) {
1210 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001211 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001212 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001213 }
Brian Paul21f69782004-11-27 05:05:32 +00001214 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001215 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001216#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001217 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001218 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001219 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001220 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001221 ctx->TnlModule.Current = NULL;
1222 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001223#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001224
Keith Whitwell47b29f52005-05-04 11:44:44 +00001225 ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL);
1226 ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL);
1227
Brian Paula96f8892005-09-13 01:19:29 +00001228 ctx->FirstTimeCurrent = GL_TRUE;
1229
Brian Paul4d053dd2000-01-14 04:45:47 +00001230 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001231}
1232
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001233
Brian Paulde4f4602003-07-03 02:15:06 +00001234/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001235 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001236 * Note that the driver needs to pass in its dd_function_table here since
1237 * we need to at least call driverFunctions->NewTextureObject to initialize
1238 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001239 *
1240 * \param visual a GLvisual pointer (we copy the struct contents)
1241 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001242 * \param driverFunctions points to the dd_function_table into which the
1243 * driver has plugged in all its special functions.
1244 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001245 *
1246 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001247 */
Brian Paul178a1c52000-04-22 01:05:00 +00001248GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001249_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001250 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001251 const struct dd_function_table *driverFunctions,
1252 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001253
Brian Paul4d053dd2000-01-14 04:45:47 +00001254{
Brian Paul4753d602002-06-15 02:38:15 +00001255 GLcontext *ctx;
1256
1257 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001258 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001259
Brian Paul3c634522002-10-24 23:57:19 +00001260 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001261 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001262 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001263
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001264 if (_mesa_initialize_context(ctx, visual, share_list,
1265 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001266 return ctx;
1267 }
1268 else {
Brian Paul3c634522002-10-24 23:57:19 +00001269 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001270 return NULL;
1271 }
1272}
1273
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001274
Keith Whitwell6dc85572003-07-17 13:43:59 +00001275/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001276 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001277 *
1278 * But doesn't free the GLcontext struct itself.
1279 *
1280 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001281 */
Brian Paul178a1c52000-04-22 01:05:00 +00001282void
Brian Paulb1394fa2000-09-26 20:53:53 +00001283_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001284{
Brian Paul4d053dd2000-01-14 04:45:47 +00001285 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001286 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001287 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001288 }
1289
Keith Whitwell6dc85572003-07-17 13:43:59 +00001290 _mesa_free_lighting_data( ctx );
1291 _mesa_free_eval_data( ctx );
1292 _mesa_free_texture_data( ctx );
1293 _mesa_free_matrix_data( ctx );
1294 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001295 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001296 _mesa_free_program_data(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001297 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001298
1299#if FEATURE_ARB_vertex_buffer_object
1300 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001301#endif
Brian Paulfd284452001-07-19 15:54:34 +00001302
Brian Paul65a66f52004-11-27 22:47:59 +00001303 /* free dispatch tables */
1304 _mesa_free(ctx->Exec);
1305 _mesa_free(ctx->Save);
1306
Brian Paul30f51ae2001-12-18 04:06:44 +00001307 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001308 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001309 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001310 assert(ctx->Shared->RefCount >= 0);
1311 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1312 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001313 /* free shared state */
1314 free_shared_state( ctx, ctx->Shared );
1315 }
1316
Brian Paul702ca202003-07-18 15:22:16 +00001317 if (ctx->Extensions.String)
1318 FREE((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001319}
1320
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001321
Keith Whitwell6dc85572003-07-17 13:43:59 +00001322/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001323 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001324 *
1325 * \param ctx GL context.
1326 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001327 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001328 */
Brian Paul178a1c52000-04-22 01:05:00 +00001329void
Brian Paulb1394fa2000-09-26 20:53:53 +00001330_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001331{
1332 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001333 _mesa_free_context_data(ctx);
Brian Paulbd5cdaf1999-10-13 18:42:49 +00001334 FREE( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001335 }
1336}
1337
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001338
Keith Whitwell6dc85572003-07-17 13:43:59 +00001339#if _HAVE_FULL_GL
1340/**
jtgafb833d1999-08-19 00:55:39 +00001341 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001342 *
1343 * \param src source context
1344 * \param dst destination context
1345 * \param mask bitwise OR of GL_*_BIT flags
1346 *
1347 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001348 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001349 * memcpy is not enough due to the existence of internal pointers in their data
1350 * structures.
jtgafb833d1999-08-19 00:55:39 +00001351 */
Brian Paul178a1c52000-04-22 01:05:00 +00001352void
Brian Paulb1394fa2000-09-26 20:53:53 +00001353_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001354{
1355 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001356 /* OK to memcpy */
1357 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001358 }
1359 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001360 /* OK to memcpy */
1361 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001362 }
1363 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001364 /* OK to memcpy */
1365 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001366 }
1367 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001368 /* OK to memcpy */
1369 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001370 }
1371 if (mask & GL_ENABLE_BIT) {
1372 /* no op */
1373 }
1374 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001375 /* OK to memcpy */
1376 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001377 }
1378 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001379 /* OK to memcpy */
1380 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001381 }
1382 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001383 /* OK to memcpy */
1384 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001385 }
1386 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001387 GLuint i;
1388 /* begin with memcpy */
1389 MEMCPY( &dst->Light, &src->Light, sizeof(struct gl_light) );
1390 /* fixup linked lists to prevent pointer insanity */
1391 make_empty_list( &(dst->Light.EnabledList) );
1392 for (i = 0; i < MAX_LIGHTS; i++) {
1393 if (dst->Light.Light[i].Enabled) {
1394 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1395 }
1396 }
jtgafb833d1999-08-19 00:55:39 +00001397 }
1398 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001399 /* OK to memcpy */
1400 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001401 }
1402 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001403 /* OK to memcpy */
1404 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001405 }
1406 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001407 /* OK to memcpy */
1408 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001409 }
1410 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001411 /* OK to memcpy */
1412 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001413 }
1414 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001415 /* OK to memcpy */
1416 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001417 }
1418 if (mask & GL_POLYGON_STIPPLE_BIT) {
1419 /* Use loop instead of MEMCPY due to problem with Portland Group's
1420 * C compiler. Reported by John Stone.
1421 */
Brian Paul85d81602002-06-17 23:36:31 +00001422 GLuint i;
1423 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001424 dst->PolygonStipple[i] = src->PolygonStipple[i];
1425 }
1426 }
1427 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001428 /* OK to memcpy */
1429 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001430 }
1431 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001432 /* OK to memcpy */
1433 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001434 }
1435 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001436 /* Cannot memcpy because of pointers */
1437 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001438 }
1439 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001440 /* OK to memcpy */
1441 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001442 }
1443 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001444 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1445 dst->Viewport.X = src->Viewport.X;
1446 dst->Viewport.Y = src->Viewport.Y;
1447 dst->Viewport.Width = src->Viewport.Width;
1448 dst->Viewport.Height = src->Viewport.Height;
1449 dst->Viewport.Near = src->Viewport.Near;
1450 dst->Viewport.Far = src->Viewport.Far;
1451 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001452 }
Brian Paul85d81602002-06-17 23:36:31 +00001453
Keith Whitwella96308c2000-10-30 13:31:59 +00001454 /* XXX FIXME: Call callbacks?
1455 */
1456 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001457}
Keith Whitwell23caf202000-11-16 21:05:34 +00001458#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001459
1460
Brian Paulb1d53d92003-06-11 18:48:19 +00001461/**
1462 * Check if the given context can render into the given framebuffer
1463 * by checking visual attributes.
1464 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1465 */
1466static GLboolean
1467check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1468{
1469 const GLvisual *ctxvis = &ctx->Visual;
1470 const GLvisual *bufvis = &buffer->Visual;
1471
1472 if (ctxvis == bufvis)
1473 return GL_TRUE;
1474
1475 if (ctxvis->rgbMode != bufvis->rgbMode)
1476 return GL_FALSE;
1477 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1478 return GL_FALSE;
1479 if (ctxvis->stereoMode && !bufvis->stereoMode)
1480 return GL_FALSE;
1481 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1482 return GL_FALSE;
1483 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1484 return GL_FALSE;
1485 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1486 return GL_FALSE;
1487 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1488 return GL_FALSE;
1489 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1490 return GL_FALSE;
1491 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1492 return GL_FALSE;
1493 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1494 return GL_FALSE;
1495 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1496 return GL_FALSE;
1497
1498 return GL_TRUE;
1499}
1500
1501
Keith Whitwell6dc85572003-07-17 13:43:59 +00001502/**
Brian Paula702bbf2005-09-14 03:11:36 +00001503 * Do one-time initialization for the given framebuffer. Specifically,
1504 * ask the driver for the window's current size and update the framebuffer
1505 * object to match.
1506 * Really, the device driver should totally take care of this.
1507 */
1508static void
1509initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1510{
1511 GLuint width, height;
1512 ASSERT(ctx->Driver.GetBufferSize);
1513 ctx->Driver.GetBufferSize(fb, &width, &height);
1514 if (ctx->Driver.ResizeBuffers)
1515 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1516 fb->Initialized = GL_TRUE;
1517}
1518
1519
1520/**
1521 * Bind the given context to the given drawBuffer and readBuffer and
1522 * make it the current context for the calling thread.
1523 * We'll render into the drawBuffer and read pixels from the
1524 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001525 *
Brian Paula702bbf2005-09-14 03:11:36 +00001526 * We check that the context's and framebuffer's visuals are compatible
1527 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001528 *
Brian Paula702bbf2005-09-14 03:11:36 +00001529 * \param newCtx the new GL context. If NULL then there will be no current GL
1530 * context.
1531 * \param drawBuffer the drawing framebuffer
1532 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001533 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001534void
Brian Paule4b23562005-05-04 20:11:35 +00001535_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1536 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001537{
Keith Whitwell5c728372005-05-12 10:22:29 +00001538 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001539 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001540
Brian Paulbe3602d2001-02-28 00:27:48 +00001541 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001542 */
Brian Paulb1d53d92003-06-11 18:48:19 +00001543 if (newCtx && drawBuffer && newCtx->DrawBuffer != drawBuffer) {
1544 if (!check_compatible(newCtx, drawBuffer))
1545 return;
1546 }
1547 if (newCtx && readBuffer && newCtx->ReadBuffer != readBuffer) {
1548 if (!check_compatible(newCtx, readBuffer))
1549 return;
Brian Paulbe3602d2001-02-28 00:27:48 +00001550 }
1551
Ian Romanick967b0062005-08-10 23:54:15 +00001552#if !defined(IN_DRI_DRIVER)
Brian Paul00037781999-12-17 14:52:35 +00001553 /* We call this function periodically (just here for now) in
Ian Romanick967b0062005-08-10 23:54:15 +00001554 * order to detect when multithreading has begun. In a DRI driver, this
1555 * step is done by the driver loader (e.g., libGL).
Brian Paul00037781999-12-17 14:52:35 +00001556 */
1557 _glapi_check_multithread();
Ian Romanick967b0062005-08-10 23:54:15 +00001558#endif /* !defined(IN_DRI_DRIVER) */
Brian Paul00037781999-12-17 14:52:35 +00001559
Brian Paulf9b97d92000-01-28 20:17:42 +00001560 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001561 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001562
Keith Whitwell23caf202000-11-16 21:05:34 +00001563 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001564 _glapi_set_dispatch(NULL); /* none current */
1565 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001566 else {
1567 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001568
Keith Whitwell23caf202000-11-16 21:05:34 +00001569 if (drawBuffer && readBuffer) {
1570 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001571
Brian Paule4b23562005-05-04 20:11:35 +00001572 ASSERT(drawBuffer->Name == 0);
1573 ASSERT(readBuffer->Name == 0);
1574 newCtx->WinSysDrawBuffer = drawBuffer;
1575 newCtx->WinSysReadBuffer = readBuffer;
1576 /* don't replace user-buffer bindings with window system buffer */
1577 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1578 newCtx->DrawBuffer = drawBuffer;
1579 newCtx->ReadBuffer = readBuffer;
1580 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001581
Keith Whitwell23caf202000-11-16 21:05:34 +00001582 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001583
Keith Whitwell6dc85572003-07-17 13:43:59 +00001584#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001585 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001586 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001587 }
Brian Paul65a66f52004-11-27 22:47:59 +00001588 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001589 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001590 }
Keith Whitwell6dc85572003-07-17 13:43:59 +00001591#endif
Brian Paul65a66f52004-11-27 22:47:59 +00001592 if (newCtx->FirstTimeCurrent) {
1593 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001594 _mesa_set_viewport(newCtx, 0, 0,
1595 drawBuffer->Width, drawBuffer->Height);
Brian Paul65a66f52004-11-27 22:47:59 +00001596 newCtx->Scissor.Width = drawBuffer->Width;
1597 newCtx->Scissor.Height = drawBuffer->Height;
1598 }
Brian Paul00037781999-12-17 14:52:35 +00001599 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001600
Keith Whitwell6dc85572003-07-17 13:43:59 +00001601 /* Alert the driver - usually passed on to the sw t&l module,
1602 * but also used to detect threaded cases in the radeon codegen
1603 * hw t&l module.
1604 */
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001605 if (newCtx->Driver.MakeCurrent)
Keith Whitwell23caf202000-11-16 21:05:34 +00001606 newCtx->Driver.MakeCurrent( newCtx, drawBuffer, readBuffer );
1607
1608 /* We can use this to help debug user's problems. Tell them to set
1609 * the MESA_INFO env variable before running their app. Then the
1610 * first time each context is made current we'll print some useful
1611 * information.
1612 */
1613 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001614 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001615 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001616 }
1617 newCtx->FirstTimeCurrent = GL_FALSE;
1618 }
Brian Paul00037781999-12-17 14:52:35 +00001619 }
1620}
1621
Brian Paul635ee2d2005-04-15 17:25:07 +00001622
1623/**
1624 * Make context 'ctx' share the display lists, textures and programs
1625 * that are associated with 'ctxToShare'.
1626 * Any display lists, textures or programs associated with 'ctx' will
1627 * be deleted if nobody else is sharing them.
1628 */
1629GLboolean
1630_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1631{
1632 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1633 ctx->Shared->RefCount--;
1634 if (ctx->Shared->RefCount == 0) {
1635 free_shared_state(ctx, ctx->Shared);
1636 }
1637 ctx->Shared = ctxToShare->Shared;
1638 ctx->Shared->RefCount++;
1639 return GL_TRUE;
1640 }
1641 else {
1642 return GL_FALSE;
1643 }
1644}
1645
1646
1647
Keith Whitwell6dc85572003-07-17 13:43:59 +00001648/**
1649 * Get current context for the calling thread.
1650 *
1651 * \return pointer to the current GL context.
1652 *
1653 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1654 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001655 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001656GLcontext *
1657_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001658{
Brian Paulf9b97d92000-01-28 20:17:42 +00001659 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001660}
1661
Keith Whitwell6dc85572003-07-17 13:43:59 +00001662/**
1663 * Get context's current API dispatch table.
1664 *
1665 * It'll either be the immediate-mode execute dispatcher or the display list
1666 * compile dispatcher.
1667 *
1668 * \param ctx GL context.
1669 *
1670 * \return pointer to dispatch_table.
1671 *
1672 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001673 */
1674struct _glapi_table *
1675_mesa_get_dispatch(GLcontext *ctx)
1676{
1677 return ctx->CurrentDispatch;
1678}
1679
Keith Whitwell6dc85572003-07-17 13:43:59 +00001680/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001681
1682
jtgafb833d1999-08-19 00:55:39 +00001683/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001684/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001685/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001686/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001687
Keith Whitwell6dc85572003-07-17 13:43:59 +00001688/**
1689 * Record an error.
1690 *
1691 * \param ctx GL context.
1692 * \param error error code.
1693 *
1694 * Records the given error code and call the driver's dd_function_table::Error
1695 * function if defined.
1696 *
1697 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001698 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001699 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001700void
Brian Paul4e9676f2002-06-29 19:48:15 +00001701_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001702{
Brian Paul18a285a2002-03-16 00:53:15 +00001703 if (!ctx)
1704 return;
1705
Brian Paul7eb06032000-07-14 04:13:40 +00001706 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001707 ctx->ErrorValue = error;
1708 }
1709
1710 /* Call device driver's error handler, if any. This is used on the Mac. */
1711 if (ctx->Driver.Error) {
1712 (*ctx->Driver.Error)( ctx );
1713 }
1714}
1715
Keith Whitwell6dc85572003-07-17 13:43:59 +00001716/**
1717 * Execute glFinish().
1718 *
1719 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1720 * dd_function_table::Finish driver callback, if not NULL.
1721 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001722void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001723_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001724{
Brian Paulfa9df402000-02-02 19:16:46 +00001725 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001726 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001727 if (ctx->Driver.Finish) {
1728 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001729 }
1730}
1731
Keith Whitwell6dc85572003-07-17 13:43:59 +00001732/**
1733 * Execute glFlush().
1734 *
1735 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1736 * dd_function_table::Flush driver callback, if not NULL.
1737 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001738void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001739_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001740{
Brian Paulfa9df402000-02-02 19:16:46 +00001741 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001742 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001743 if (ctx->Driver.Flush) {
1744 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001745 }
jtgafb833d1999-08-19 00:55:39 +00001746}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001747
1748
Keith Whitwell6dc85572003-07-17 13:43:59 +00001749/*@}*/