blob: b2bd1d8a8e91ba4bf270a0fa7c0a06753563c46d [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"
Brian Paulb7a43041999-11-30 20:34:51 +000098#include "get.h"
Brian Paul9560f052000-01-31 23:11:39 +000099#include "glthread.h"
Brian Paulf44898c2003-07-18 15:44:57 +0000100#include "glapioffsets.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000101#include "histogram.h"
102#include "hint.h"
jtgafb833d1999-08-19 00:55:39 +0000103#include "hash.h"
Brian Paul63d68302005-11-19 16:43:04 +0000104#include "atifragshader.h"
jtgafb833d1999-08-19 00:55:39 +0000105#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000106#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000107#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000108#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000109#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000110#include "pixel.h"
111#include "points.h"
112#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000113#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
114#include "program.h"
115#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000116#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000117#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000118#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000119#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000120#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000121#include "teximage.h"
122#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000123#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000124#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000125#include "varray.h"
Brian Paul363344f2005-09-13 14:48:28 +0000126#include "version.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000127#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000128#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000129#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000130#include "math/m_matrix.h"
131#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000132#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000133#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000134#include "shaderobjects.h"
jtgafb833d1999-08-19 00:55:39 +0000135
davem69775355a2001-06-05 23:54:00 +0000136#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000137#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000138#endif
jtgafb833d1999-08-19 00:55:39 +0000139
Keith Whitwell23caf202000-11-16 21:05:34 +0000140#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000141int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000142#endif
143
144#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000145int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000146#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000147
Brian Paul86b84272001-12-14 02:50:01 +0000148
Brian Paul27558a12003-03-01 01:50:20 +0000149/* ubyte -> float conversion */
150GLfloat _mesa_ubyte_to_float_color_tab[256];
151
Brian Paul9a33a112002-06-13 04:28:29 +0000152static void
153free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
154
Brian Paul86b84272001-12-14 02:50:01 +0000155
Brian Paulb1394fa2000-09-26 20:53:53 +0000156/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000157/** \name OpenGL SI-style interface (new in Mesa 3.5)
158 *
159 * \if subset
160 * \note Most of these functions are never called in the Mesa subset.
161 * \endif
162 */
163/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000164
Keith Whitwell6dc85572003-07-17 13:43:59 +0000165/**
166 * Destroy context callback.
167 *
168 * \param gc context.
169 * \return GL_TRUE on success, or GL_FALSE on failure.
170 *
171 * \ifnot subset
172 * Called by window system/device driver (via __GLexports::destroyCurrent) when
173 * the rendering context is to be destroyed.
174 * \endif
175 *
176 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000177 */
178GLboolean
179_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000180{
181 if (gc) {
182 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000183 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000184 }
185 return GL_TRUE;
186}
187
Keith Whitwell6dc85572003-07-17 13:43:59 +0000188/**
189 * Unbind context callback.
190 *
191 * \param gc context.
192 * \return GL_TRUE on success, or GL_FALSE on failure.
193 *
194 * \ifnot subset
195 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000196 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000197 * \endif
198 *
199 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000200 */
201GLboolean
202_mesa_loseCurrent(__GLcontext *gc)
203{
204 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000205 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000206 return GL_TRUE;
207}
208
Keith Whitwell6dc85572003-07-17 13:43:59 +0000209/**
210 * Bind context callback.
211 *
212 * \param gc context.
213 * \return GL_TRUE on success, or GL_FALSE on failure.
214 *
215 * \ifnot subset
216 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000217 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000218 * \endif
219 *
220 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000221 */
222GLboolean
223_mesa_makeCurrent(__GLcontext *gc)
224{
225 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000226 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000227 return GL_TRUE;
228}
229
Keith Whitwell6dc85572003-07-17 13:43:59 +0000230/**
231 * Share context callback.
232 *
233 * \param gc context.
234 * \param gcShare shared context.
235 * \return GL_TRUE on success, or GL_FALSE on failure.
236 *
237 * \ifnot subset
238 * Called by window system/device driver (via __GLexports::shareContext)
239 * \endif
240 *
241 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000242 */
243GLboolean
244_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
245{
246 if (gc && gcShare && gc->Shared && gcShare->Shared) {
247 gc->Shared->RefCount--;
248 if (gc->Shared->RefCount == 0) {
249 free_shared_state(gc, gc->Shared);
250 }
251 gc->Shared = gcShare->Shared;
252 gc->Shared->RefCount++;
253 return GL_TRUE;
254 }
255 else {
256 return GL_FALSE;
257 }
258}
259
Keith Whitwell6dc85572003-07-17 13:43:59 +0000260
261#if _HAVE_FULL_GL
262/**
263 * Copy context callback.
264 */
Brian Paul9a33a112002-06-13 04:28:29 +0000265GLboolean
266_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
267{
268 if (dst && src) {
269 _mesa_copy_context( src, dst, mask );
270 return GL_TRUE;
271 }
272 else {
273 return GL_FALSE;
274 }
275}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000276#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000277
Keith Whitwell6dc85572003-07-17 13:43:59 +0000278/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000279GLboolean
280_mesa_forceCurrent(__GLcontext *gc)
281{
Brian Paula6c423d2004-08-25 15:59:48 +0000282 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000283 return GL_TRUE;
284}
285
Keith Whitwell6dc85572003-07-17 13:43:59 +0000286/**
287 * Windows/buffer resizing notification callback.
288 *
289 * \param gc GL context.
290 * \return GL_TRUE on success, or GL_FALSE on failure.
291 */
Brian Paul9a33a112002-06-13 04:28:29 +0000292GLboolean
293_mesa_notifyResize(__GLcontext *gc)
294{
Brian Paul9a33a112002-06-13 04:28:29 +0000295 /* update viewport, resize software buffers, etc. */
George Sapountzisc9b33ec2006-12-06 06:43:23 +0200296 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000297 return GL_TRUE;
298}
299
Keith Whitwell6dc85572003-07-17 13:43:59 +0000300/**
301 * Window/buffer destruction notification callback.
302 *
303 * \param gc GL context.
304 *
305 * Called when the context's window/buffer is going to be destroyed.
306 *
307 * No-op
308 */
Brian Paul9a33a112002-06-13 04:28:29 +0000309void
310_mesa_notifyDestroy(__GLcontext *gc)
311{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000312 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000313 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000314}
315
Keith Whitwell6dc85572003-07-17 13:43:59 +0000316/**
317 * Swap buffers notification callback.
318 *
319 * \param gc GL context.
320 *
321 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000322 * We have to finish any pending rendering.
323 */
324void
325_mesa_notifySwapBuffers(__GLcontext *gc)
326{
327 FLUSH_VERTICES( gc, 0 );
328}
329
Keith Whitwell6dc85572003-07-17 13:43:59 +0000330/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000331struct __GLdispatchStateRec *
332_mesa_dispatchExec(__GLcontext *gc)
333{
Brian Paula6c423d2004-08-25 15:59:48 +0000334 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000335 return NULL;
336}
337
Keith Whitwell6dc85572003-07-17 13:43:59 +0000338/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000339void
340_mesa_beginDispatchOverride(__GLcontext *gc)
341{
Brian Paula6c423d2004-08-25 15:59:48 +0000342 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000343}
344
Keith Whitwell6dc85572003-07-17 13:43:59 +0000345/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000346void
347_mesa_endDispatchOverride(__GLcontext *gc)
348{
Brian Paula6c423d2004-08-25 15:59:48 +0000349 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000350}
351
Keith Whitwell6dc85572003-07-17 13:43:59 +0000352/**
353 * \ifnot subset
354 * Setup the exports.
355 *
356 * The window system will call these functions when it needs Mesa to do
357 * something.
358 *
359 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000360 * the Xlib driver should plug in the XMesa*-style functions into this
361 * structure. The XMesa-style functions should then call the _mesa_*
362 * version of these functions. This is an approximation to OO design
363 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000364 * \endif
365 *
366 * \if subset
367 * No-op.
368 *
369 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000370 */
371static void
372_mesa_init_default_exports(__GLexports *exports)
373{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000374#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000375 exports->destroyContext = _mesa_destroyContext;
376 exports->loseCurrent = _mesa_loseCurrent;
377 exports->makeCurrent = _mesa_makeCurrent;
378 exports->shareContext = _mesa_shareContext;
379 exports->copyContext = _mesa_copyContext;
380 exports->forceCurrent = _mesa_forceCurrent;
381 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000382 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000383 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
384 exports->dispatchExec = _mesa_dispatchExec;
385 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
386 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000387#else
388 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000389#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000390}
391
Keith Whitwell6dc85572003-07-17 13:43:59 +0000392/**
393 * Exported OpenGL SI interface.
394 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000395__GLcontext *
396__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
397{
398 GLcontext *ctx;
399
Brian Paul4753d602002-06-15 02:38:15 +0000400 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000401 if (ctx == NULL) {
402 return NULL;
403 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000404
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000405 /* XXX doesn't work at this time */
406 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000407 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000408
409 return ctx;
410}
411
Keith Whitwell6dc85572003-07-17 13:43:59 +0000412/**
413 * Exported OpenGL SI interface.
414 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000415void
416__glCoreNopDispatch(void)
417{
418#if 0
419 /* SI */
420 __gl_dispatch = __glNopDispatchState;
421#else
422 /* Mesa */
423 _glapi_set_dispatch(NULL);
424#endif
425}
426
Keith Whitwell6dc85572003-07-17 13:43:59 +0000427/*@}*/
428
Brian Paulb1394fa2000-09-26 20:53:53 +0000429
jtgafb833d1999-08-19 00:55:39 +0000430/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000431/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000432/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000433/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000434
Keith Whitwell6dc85572003-07-17 13:43:59 +0000435/**
Brian Paul894844a2004-03-21 17:05:03 +0000436 * Allocates a GLvisual structure and initializes it via
437 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000438 *
439 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
440 * \param dbFlag double buffering
441 * \param stereoFlag stereo buffer
442 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
443 * is acceptable but the actual depth type will be GLushort or GLuint as
444 * needed.
445 * \param stencilBits requested minimum bits per stencil buffer value
446 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
447 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
448 * \param redBits number of bits per color component in frame buffer for RGB(A)
449 * mode. We always use 8 in core Mesa though.
450 * \param greenBits same as above.
451 * \param blueBits same as above.
452 * \param alphaBits same as above.
453 * \param numSamples not really used.
454 *
455 * \return pointer to new GLvisual or NULL if requested parameters can't be
456 * met.
457 *
Brian Paul894844a2004-03-21 17:05:03 +0000458 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000459 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000460GLvisual *
461_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000462 GLboolean dbFlag,
463 GLboolean stereoFlag,
464 GLint redBits,
465 GLint greenBits,
466 GLint blueBits,
467 GLint alphaBits,
468 GLint indexBits,
469 GLint depthBits,
470 GLint stencilBits,
471 GLint accumRedBits,
472 GLint accumGreenBits,
473 GLint accumBlueBits,
474 GLint accumAlphaBits,
475 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000476{
Brian Paulc7e164f2006-06-30 15:44:30 +0000477 GLvisual *vis = (GLvisual *) _mesa_calloc(sizeof(GLvisual));
Brian Paul178a1c52000-04-22 01:05:00 +0000478 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000479 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000480 redBits, greenBits, blueBits, alphaBits,
481 indexBits, depthBits, stencilBits,
482 accumRedBits, accumGreenBits,
483 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000484 numSamples)) {
Brian Paulc7e164f2006-06-30 15:44:30 +0000485 _mesa_free(vis);
Brian Paul178a1c52000-04-22 01:05:00 +0000486 return NULL;
487 }
488 }
489 return vis;
490}
491
Keith Whitwell6dc85572003-07-17 13:43:59 +0000492/**
Brian Paul894844a2004-03-21 17:05:03 +0000493 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000494 * GLvisual object with the given parameters. If the caller needs
495 * to set additional fields, he should just probably init the whole GLvisual
496 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000497 * \return GL_TRUE on success, or GL_FALSE on failure.
498 *
499 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000500 */
501GLboolean
502_mesa_initialize_visual( GLvisual *vis,
503 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000504 GLboolean dbFlag,
505 GLboolean stereoFlag,
506 GLint redBits,
507 GLint greenBits,
508 GLint blueBits,
509 GLint alphaBits,
510 GLint indexBits,
511 GLint depthBits,
512 GLint stencilBits,
513 GLint accumRedBits,
514 GLint accumGreenBits,
515 GLint accumBlueBits,
516 GLint accumAlphaBits,
517 GLint numSamples )
518{
519 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000520
Brian Pauled30dfa2000-03-03 17:47:39 +0000521 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000522 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000523 }
Brian Paule4b23562005-05-04 20:11:35 +0000524 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000525 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000526 }
Brian Paul978ef2b2005-09-21 03:35:08 +0000527 assert(accumRedBits >= 0);
528 assert(accumGreenBits >= 0);
529 assert(accumBlueBits >= 0);
530 assert(accumAlphaBits >= 0);
Brian Paul4d053dd2000-01-14 04:45:47 +0000531
Brian Paulb6bcae52001-01-23 23:39:36 +0000532 vis->rgbMode = rgbFlag;
533 vis->doubleBufferMode = dbFlag;
534 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000535
Brian Paulb6bcae52001-01-23 23:39:36 +0000536 vis->redBits = redBits;
537 vis->greenBits = greenBits;
538 vis->blueBits = blueBits;
539 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000540 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000541
Brian Paulb6bcae52001-01-23 23:39:36 +0000542 vis->indexBits = indexBits;
543 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000544 vis->stencilBits = stencilBits;
545
546 vis->accumRedBits = accumRedBits;
547 vis->accumGreenBits = accumGreenBits;
548 vis->accumBlueBits = accumBlueBits;
549 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000550
Brian Paul153f1542002-10-29 15:04:35 +0000551 vis->haveAccumBuffer = accumRedBits > 0;
552 vis->haveDepthBuffer = depthBits > 0;
553 vis->haveStencilBuffer = stencilBits > 0;
554
555 vis->numAuxBuffers = 0;
556 vis->level = 0;
557 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000558 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000559 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000560
Brian Paul178a1c52000-04-22 01:05:00 +0000561 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000562}
563
Brian Paul894844a2004-03-21 17:05:03 +0000564
Keith Whitwell6dc85572003-07-17 13:43:59 +0000565/**
Brian Paul894844a2004-03-21 17:05:03 +0000566 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000567 *
568 * \param vis visual.
569 *
570 * Frees the visual structure.
571 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000572void
573_mesa_destroy_visual( GLvisual *vis )
574{
Brian Paulc7e164f2006-06-30 15:44:30 +0000575 _mesa_free(vis);
Brian Paulb371e0d2000-03-31 01:05:51 +0000576}
577
Keith Whitwell6dc85572003-07-17 13:43:59 +0000578/*@}*/
579
Brian Paulb371e0d2000-03-31 01:05:51 +0000580
Brian Paul4d053dd2000-01-14 04:45:47 +0000581/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000582/** \name Context allocation, initialization, destroying
583 *
584 * The purpose of the most initialization functions here is to provide the
585 * default state values according to the OpenGL specification.
586 */
jtgafb833d1999-08-19 00:55:39 +0000587/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000588/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000589
Keith Whitwell6dc85572003-07-17 13:43:59 +0000590/**
591 * One-time initialization mutex lock.
592 *
593 * \sa Used by one_time_init().
594 */
Brian Paul9560f052000-01-31 23:11:39 +0000595_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
596
Keith Whitwell6dc85572003-07-17 13:43:59 +0000597/**
598 * Calls all the various one-time-init functions in Mesa.
599 *
600 * While holding a global mutex lock, calls several initialization functions,
601 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
602 * defined.
603 *
Brian Paula764b7e2006-02-26 17:16:37 +0000604 * \sa _math_init().
jtgafb833d1999-08-19 00:55:39 +0000605 */
Brian Paul178a1c52000-04-22 01:05:00 +0000606static void
Brian Paul4753d602002-06-15 02:38:15 +0000607one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000608{
609 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000610 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000611 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000612 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000613 GLuint i;
614
Brian Paul4d053dd2000-01-14 04:45:47 +0000615 /* do some implementation tests */
616 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000617 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000618 assert( sizeof(GLshort) == 2 );
619 assert( sizeof(GLushort) == 2 );
620 assert( sizeof(GLint) == 4 );
621 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000622
Keith Whitwell6dc85572003-07-17 13:43:59 +0000623#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000624 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000625
626 for (i = 0; i < 256; i++) {
627 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
628 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000629#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000630
davem69775355a2001-06-05 23:54:00 +0000631#ifdef USE_SPARC_ASM
632 _mesa_init_sparc_glapi_relocs();
633#endif
Brian Paul3c634522002-10-24 23:57:19 +0000634 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000635 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000636 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000637 }
638 else {
639 _glapi_noop_enable_warnings(GL_FALSE);
640 }
641
jtgafb833d1999-08-19 00:55:39 +0000642#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000643 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
644 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000645#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000646
647 alreadyCalled = GL_TRUE;
648 }
Brian Paul9560f052000-01-31 23:11:39 +0000649 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000650}
651
Brian Paul894844a2004-03-21 17:05:03 +0000652
Keith Whitwell6dc85572003-07-17 13:43:59 +0000653/**
jtgafb833d1999-08-19 00:55:39 +0000654 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000655 * Initializes the display list, texture objects and vertex programs hash
656 * tables, allocates the texture objects. If it runs out of memory, frees
657 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000658 *
659 * \return pointer to a gl_shared_state structure on success, or NULL on
660 * failure.
jtgafb833d1999-08-19 00:55:39 +0000661 */
Brian Paula3f13702003-04-01 16:41:50 +0000662static GLboolean
663alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000664{
Brian Paula3f13702003-04-01 16:41:50 +0000665 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000666 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000667 return GL_FALSE;
668
669 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000670
Brian Paule4b684c2000-09-12 21:07:40 +0000671 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000672
Brian Paule4b684c2000-09-12 21:07:40 +0000673 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000674 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000675#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000676 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000677#endif
jtgafb833d1999-08-19 00:55:39 +0000678
Brian Paul451f3102003-04-17 01:48:19 +0000679#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000680 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000681 if (!ss->DefaultVertexProgram)
682 goto cleanup;
683#endif
684#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000685 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000686 if (!ss->DefaultFragmentProgram)
687 goto cleanup;
688#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000689#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000690 ss->ATIShaders = _mesa_NewHashTable();
691 ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000692 if (!ss->DefaultFragmentShader)
693 goto cleanup;
694#endif
Brian Paul451f3102003-04-17 01:48:19 +0000695
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000696#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulddc82ee2005-02-05 19:56:45 +0000697 ss->BufferObjects = _mesa_NewHashTable();
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000698#endif
699
Ian Romanickee34e6e2006-06-12 16:26:29 +0000700 ss->ArrayObjects = _mesa_NewHashTable();
Brian Paulddc82ee2005-02-05 19:56:45 +0000701
Michal Krol365582d2006-08-01 20:07:31 +0000702#if FEATURE_ARB_shader_objects
Michal Krol9b3752c2005-01-13 14:08:47 +0000703 ss->GL2Objects = _mesa_NewHashTable ();
Michal Krol365582d2006-08-01 20:07:31 +0000704#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000705
Brian Paula3f13702003-04-01 16:41:50 +0000706 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
707 if (!ss->Default1D)
708 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000709
Brian Paula3f13702003-04-01 16:41:50 +0000710 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
711 if (!ss->Default2D)
712 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000713
Brian Paula3f13702003-04-01 16:41:50 +0000714 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
715 if (!ss->Default3D)
716 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000717
Brian Paula3f13702003-04-01 16:41:50 +0000718 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
719 if (!ss->DefaultCubeMap)
720 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000721
Brian Paula3f13702003-04-01 16:41:50 +0000722 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
723 if (!ss->DefaultRect)
724 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000725
Brian Paula3f13702003-04-01 16:41:50 +0000726 /* Effectively bind the default textures to all texture units */
727 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
728 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
729 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
730 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
731 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
732
Keith Whitwell5ac93f82006-11-01 14:21:57 +0000733 _glthread_INIT_MUTEX(ss->TexMutex);
734 ss->TextureStateStamp = 0;
735
736
Brian Paulddc82ee2005-02-05 19:56:45 +0000737#if FEATURE_EXT_framebuffer_object
738 ss->FrameBuffers = _mesa_NewHashTable();
739 if (!ss->FrameBuffers)
740 goto cleanup;
741 ss->RenderBuffers = _mesa_NewHashTable();
742 if (!ss->RenderBuffers)
743 goto cleanup;
744#endif
745
746
Brian Paula3f13702003-04-01 16:41:50 +0000747 return GL_TRUE;
748
749 cleanup:
750 /* Ran out of memory at some point. Free everything and return NULL */
751 if (ss->DisplayList)
752 _mesa_DeleteHashTable(ss->DisplayList);
753 if (ss->TexObjects)
754 _mesa_DeleteHashTable(ss->TexObjects);
755#if FEATURE_NV_vertex_program
756 if (ss->Programs)
757 _mesa_DeleteHashTable(ss->Programs);
758#endif
Brian Paul451f3102003-04-17 01:48:19 +0000759#if FEATURE_ARB_vertex_program
760 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000761 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000762#endif
763#if FEATURE_ARB_fragment_program
764 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000765 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000766#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000767#if FEATURE_ATI_fragment_shader
768 if (ss->DefaultFragmentShader)
Brian Paul63d68302005-11-19 16:43:04 +0000769 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000770#endif
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000771#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000772 if (ss->BufferObjects)
773 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000774#endif
775
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000776 if (ss->ArrayObjects)
777 _mesa_DeleteHashTable (ss->ArrayObjects);
778
Michal Krol365582d2006-08-01 20:07:31 +0000779#if FEATURE_ARB_shader_objects
Brian Paulddc82ee2005-02-05 19:56:45 +0000780 if (ss->GL2Objects)
Michal Krol9b3752c2005-01-13 14:08:47 +0000781 _mesa_DeleteHashTable (ss->GL2Objects);
Michal Krol365582d2006-08-01 20:07:31 +0000782#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000783
Brian Paulddc82ee2005-02-05 19:56:45 +0000784#if FEATURE_EXT_framebuffer_object
785 if (ss->FrameBuffers)
786 _mesa_DeleteHashTable(ss->FrameBuffers);
787 if (ss->RenderBuffers)
788 _mesa_DeleteHashTable(ss->RenderBuffers);
789#endif
790
Brian Paula3f13702003-04-01 16:41:50 +0000791 if (ss->Default1D)
792 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
793 if (ss->Default2D)
794 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
795 if (ss->Default3D)
796 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
797 if (ss->DefaultCubeMap)
798 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
799 if (ss->DefaultRect)
800 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
801 if (ss)
802 _mesa_free(ss);
803 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000804}
805
Brian Paulc7e164f2006-06-30 15:44:30 +0000806
Keith Whitwell6dc85572003-07-17 13:43:59 +0000807/**
Brian Paulc7e164f2006-06-30 15:44:30 +0000808 * Callback for deleting a display list. Called by _mesa_HashDeleteAll().
809 */
810static void
811delete_displaylist_cb(GLuint id, void *data, void *userData)
812{
813 struct mesa_display_list *list = (struct mesa_display_list *) data;
814 GLcontext *ctx = (GLcontext *) userData;
815 _mesa_delete_list(ctx, list);
816}
817
818/**
819 * Callback for deleting a texture object. Called by _mesa_HashDeleteAll().
820 */
821static void
822delete_texture_cb(GLuint id, void *data, void *userData)
823{
824 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
825 GLcontext *ctx = (GLcontext *) userData;
826 ctx->Driver.DeleteTexture(ctx, texObj);
827}
828
829/**
830 * Callback for deleting a program object. Called by _mesa_HashDeleteAll().
831 */
832static void
833delete_program_cb(GLuint id, void *data, void *userData)
834{
Brian Paul122629f2006-07-20 16:49:57 +0000835 struct gl_program *prog = (struct gl_program *) data;
Brian Paulc7e164f2006-06-30 15:44:30 +0000836 GLcontext *ctx = (GLcontext *) userData;
837 ctx->Driver.DeleteProgram(ctx, prog);
838}
839
840/**
841 * Callback for deleting an ATI fragment shader object.
842 * Called by _mesa_HashDeleteAll().
843 */
844static void
845delete_fragshader_cb(GLuint id, void *data, void *userData)
846{
847 struct ati_fragment_shader *shader = (struct ati_fragment_shader *) data;
848 GLcontext *ctx = (GLcontext *) userData;
849 _mesa_delete_ati_fragment_shader(ctx, shader);
850}
851
852/**
853 * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll().
854 */
855static void
856delete_bufferobj_cb(GLuint id, void *data, void *userData)
857{
858 struct gl_buffer_object *bufObj = (struct gl_buffer_object *) data;
859 GLcontext *ctx = (GLcontext *) userData;
860 ctx->Driver.DeleteBuffer(ctx, bufObj);
861}
862
Brian Paulc04bb512006-07-11 21:56:43 +0000863/**
864 * Callback for deleting an array object. Called by _mesa_HashDeleteAll().
865 */
866static void
867delete_arrayobj_cb(GLuint id, void *data, void *userData)
868{
869 struct gl_array_object *arrayObj = (struct gl_array_object *) data;
870 GLcontext *ctx = (GLcontext *) userData;
871 _mesa_delete_array_object(ctx, arrayObj);
872}
873
Brian Paul4d4373b2006-11-18 17:44:28 +0000874/**
875 * Callback for deleting an shader object. Called by _mesa_HashDeleteAll().
876 */
877static void
878delete_shaderobj_cb(GLuint id, void *data, void *userData)
879{
880 /* XXX probably need to fix this */
881 _mesa_free(data);
882}
883
Brian Paulc7e164f2006-06-30 15:44:30 +0000884
885/**
886 * Deallocate a shared state object and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000887 *
888 * \param ctx GL context.
889 * \param ss shared state pointer.
890 *
891 * Frees the display lists, the texture objects (calling the driver texture
892 * deletion callback to free its private data) and the vertex programs, as well
893 * as their hash tables.
894 *
895 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000896 */
Brian Paul178a1c52000-04-22 01:05:00 +0000897static void
898free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000899{
Brian Paulc7e164f2006-06-30 15:44:30 +0000900 /*
901 * Free display lists
902 */
903 _mesa_HashDeleteAll(ss->DisplayList, delete_displaylist_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000904 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000905
Brian Paulc7e164f2006-06-30 15:44:30 +0000906 /*
907 * Free texture objects
908 */
Brian Paula3f13702003-04-01 16:41:50 +0000909 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000910 /* the default textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000911 ctx->Driver.DeleteTexture(ctx, ss->Default1D);
912 ctx->Driver.DeleteTexture(ctx, ss->Default2D);
913 ctx->Driver.DeleteTexture(ctx, ss->Default3D);
914 ctx->Driver.DeleteTexture(ctx, ss->DefaultCubeMap);
915 ctx->Driver.DeleteTexture(ctx, ss->DefaultRect);
Brian Paul21841f02004-08-14 14:28:11 +0000916 /* all other textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000917 _mesa_HashDeleteAll(ss->TexObjects, delete_texture_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000918 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000919
Brian Paul1096eae2006-01-16 16:35:13 +0000920#if defined(FEATURE_NV_vertex_program) || defined(FEATURE_NV_fragment_program)
Brian Paulc7e164f2006-06-30 15:44:30 +0000921 _mesa_HashDeleteAll(ss->Programs, delete_program_cb, ctx);
Brian Paul610d5992003-01-14 04:55:45 +0000922 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000923#endif
Brian Paul21841f02004-08-14 14:28:11 +0000924#if FEATURE_ARB_vertex_program
925 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
926#endif
927#if FEATURE_ARB_fragment_program
928 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
929#endif
Brian Paul1096eae2006-01-16 16:35:13 +0000930
Dave Airlie7f752fe2004-12-19 03:06:59 +0000931#if FEATURE_ATI_fragment_shader
Brian Paulc7e164f2006-06-30 15:44:30 +0000932 _mesa_HashDeleteAll(ss->ATIShaders, delete_fragshader_cb, ctx);
Brian Paul1096eae2006-01-16 16:35:13 +0000933 _mesa_DeleteHashTable(ss->ATIShaders);
934 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000935#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000936
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000937#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulc7e164f2006-06-30 15:44:30 +0000938 _mesa_HashDeleteAll(ss->BufferObjects, delete_bufferobj_cb, ctx);
Ian Romanick0207b472003-09-09 00:10:12 +0000939 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000940#endif
941
Brian Paulc04bb512006-07-11 21:56:43 +0000942 _mesa_HashDeleteAll(ss->ArrayObjects, delete_arrayobj_cb, ctx);
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000943 _mesa_DeleteHashTable(ss->ArrayObjects);
944
Michal Krol365582d2006-08-01 20:07:31 +0000945#if FEATURE_ARB_shader_objects
Brian Paul4d4373b2006-11-18 17:44:28 +0000946 _mesa_HashDeleteAll(ss->GL2Objects, delete_shaderobj_cb, ctx);
Brian Paulc7e164f2006-06-30 15:44:30 +0000947 _mesa_DeleteHashTable(ss->GL2Objects);
Michal Krol365582d2006-08-01 20:07:31 +0000948#endif
Brian Paulddc82ee2005-02-05 19:56:45 +0000949
950#if FEATURE_EXT_framebuffer_object
951 _mesa_DeleteHashTable(ss->FrameBuffers);
952 _mesa_DeleteHashTable(ss->RenderBuffers);
953#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000954
Keith Whitwelle15fd852002-12-12 13:03:15 +0000955 _glthread_DESTROY_MUTEX(ss->Mutex);
956
Brian Paulc7e164f2006-06-30 15:44:30 +0000957 _mesa_free(ss);
jtgafb833d1999-08-19 00:55:39 +0000958}
959
960
Brian Paul4d859f72004-01-23 18:57:05 +0000961/**
962 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
963 */
964static void
965_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000966{
Brian Paul88bf0382004-02-13 15:30:08 +0000967 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000968
Brian Paul94b30dc2006-04-25 00:53:25 +0000969 /* Init all to (0,0,0,1) */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000970 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
971 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000972 }
Brian Paul94b30dc2006-04-25 00:53:25 +0000973
974 /* redo special cases: */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000975 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
976 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
977 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000978 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000979 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul94b30dc2006-04-25 00:53:25 +0000980 ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX][0] = 1.0;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000981 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000982}
983
984
Brian Paul4d859f72004-01-23 18:57:05 +0000985/**
Brian Paul05051032005-11-01 04:36:33 +0000986 * Init vertex/fragment program native limits from logical limits.
987 */
988static void
989init_natives(struct gl_program_constants *prog)
990{
991 prog->MaxNativeInstructions = prog->MaxInstructions;
992 prog->MaxNativeAluInstructions = prog->MaxAluInstructions;
993 prog->MaxNativeTexInstructions = prog->MaxTexInstructions;
994 prog->MaxNativeTexIndirections = prog->MaxTexIndirections;
995 prog->MaxNativeAttribs = prog->MaxAttribs;
996 prog->MaxNativeTemps = prog->MaxTemps;
997 prog->MaxNativeAddressRegs = prog->MaxAddressRegs;
998 prog->MaxNativeParameters = prog->MaxParameters;
999}
1000
1001
1002/**
Brian Paul4d859f72004-01-23 18:57:05 +00001003 * Initialize fields of gl_constants (aka ctx->Const.*).
1004 * Use defaults from config.h. The device drivers will often override
1005 * some of these values (such as number of texture units).
1006 */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001007static void
1008_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001009{
Brian Paul4d053dd2000-01-14 04:45:47 +00001010 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +00001011
Brian Paulcd1cefa2001-06-13 14:56:14 +00001012 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
1013 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
1014
Brian Paulda238ee2006-04-13 19:21:58 +00001015 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_COORD_UNITS);
1016 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_IMAGE_UNITS);
1017
Brian Paul53f82c52004-10-02 16:39:09 +00001018 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +00001019 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +00001020 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
1021 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +00001022 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul610d5992003-01-14 04:55:45 +00001023 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
1024 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Brian Paulda238ee2006-04-13 19:21:58 +00001025 ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits,
1026 ctx->Const.MaxTextureImageUnits);
Gareth Hughes2c3d34c2001-03-18 08:53:49 +00001027 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +00001028 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +00001029 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +00001030 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
1031 ctx->Const.MinPointSize = MIN_POINT_SIZE;
1032 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
1033 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
1034 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001035 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +00001036 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
1037 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
1038 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
1039 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001040 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +00001041 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +00001042 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
1043 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +00001044 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
1045 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +00001046 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +00001047 ctx->Const.MaxSpotExponent = 128.0;
1048 ctx->Const.MaxViewportWidth = MAX_WIDTH;
1049 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +00001050#if FEATURE_ARB_vertex_program
Brian Paul05051032005-11-01 04:36:33 +00001051 ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
1052 ctx->Const.VertexProgram.MaxAluInstructions = 0;
1053 ctx->Const.VertexProgram.MaxTexInstructions = 0;
1054 ctx->Const.VertexProgram.MaxTexIndirections = 0;
1055 ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
1056 ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
1057 ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS;
1058 ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1059 ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
1060 ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
Brian Paul90fcf6c2006-11-01 00:12:41 +00001061 ctx->Const.VertexProgram.MaxUniformComponents = MAX_VERTEX_UNIFORM_COMPONENTS;
Brian Paul05051032005-11-01 04:36:33 +00001062 init_natives(&ctx->Const.VertexProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001063#endif
1064#if FEATURE_ARB_fragment_program
Brian Paul05051032005-11-01 04:36:33 +00001065 ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
1066 ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
1067 ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
1068 ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
1069 ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
1070 ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
1071 ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1072 ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1073 ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1074 ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
Brian Paul90fcf6c2006-11-01 00:12:41 +00001075 ctx->Const.FragmentProgram.MaxUniformComponents = MAX_FRAGMENT_UNIFORM_COMPONENTS;
Brian Paul05051032005-11-01 04:36:33 +00001076 init_natives(&ctx->Const.FragmentProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001077#endif
Brian Pauledd67742003-04-18 18:02:43 +00001078 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
1079 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +00001080
Brian Paula2b9bad2003-11-10 19:08:37 +00001081 /* If we're running in the X server, do bounds checking to prevent
1082 * segfaults and server crashes!
1083 */
Brian Paul3e6ef122006-11-27 16:33:43 +00001084#if defined(XFree86Server)
Brian Paula2b9bad2003-11-10 19:08:37 +00001085 ctx->Const.CheckArrayBounds = GL_TRUE;
1086#else
1087 ctx->Const.CheckArrayBounds = GL_FALSE;
1088#endif
1089
Brian Paul05051032005-11-01 04:36:33 +00001090 /* GL_ARB_draw_buffers */
Brian Paul53f82c52004-10-02 16:39:09 +00001091 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1092
Brian Paul3deaa012005-02-07 05:08:24 +00001093 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001094 ctx->Const.ColorReadFormat = GL_RGBA;
1095 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1096
Brian Paul3deaa012005-02-07 05:08:24 +00001097#if FEATURE_EXT_framebuffer_object
1098 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1099 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1100#endif
1101
Brian Paul90fcf6c2006-11-01 00:12:41 +00001102#if FEATURE_ARB_vertex_shader
1103 ctx->Const.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS;
1104 ctx->Const.MaxVaryingFloats = MAX_VARYING_FLOATS;
1105#endif
1106
Brian Paul53f82c52004-10-02 16:39:09 +00001107 /* sanity checks */
Brian Paulda238ee2006-04-13 19:21:58 +00001108 ASSERT(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.MaxTextureImageUnits,
1109 ctx->Const.MaxTextureCoordUnits));
Brian Paul05051032005-11-01 04:36:33 +00001110 ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
1111 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001112}
jtgafb833d1999-08-19 00:55:39 +00001113
Brian Paul4d859f72004-01-23 18:57:05 +00001114
Keith Whitwell6dc85572003-07-17 13:43:59 +00001115/**
Brian Paul5e2e96b2006-05-15 15:26:04 +00001116 * Do some sanity checks on the limits/constants for the given context.
1117 * Only called the first time a context is bound.
1118 */
1119static void
1120check_context_limits(GLcontext *ctx)
1121{
1122 /* Many context limits/constants are limited by the size of
1123 * internal arrays.
1124 */
1125 assert(ctx->Const.MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS);
1126 assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS);
1127 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS);
1128 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS);
1129
1130 assert(ctx->Const.MaxViewportWidth <= MAX_WIDTH);
1131 assert(ctx->Const.MaxViewportHeight <= MAX_WIDTH);
1132
1133 /* make sure largest texture image is <= MAX_WIDTH in size */
1134 assert((1 << (ctx->Const.MaxTextureLevels -1 )) <= MAX_WIDTH);
1135 assert((1 << (ctx->Const.MaxCubeTextureLevels -1 )) <= MAX_WIDTH);
1136 assert((1 << (ctx->Const.Max3DTextureLevels -1 )) <= MAX_WIDTH);
1137
1138 assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS);
1139
1140 /* XXX probably add more tests */
1141}
1142
1143
1144/**
Keith Whitwell6dc85572003-07-17 13:43:59 +00001145 * Initialize the attribute groups in a GL context.
1146 *
1147 * \param ctx GL context.
1148 *
1149 * Initializes all the attributes, calling the respective <tt>init*</tt>
1150 * functions for the more complex data structures.
1151 */
1152static GLboolean
1153init_attrib_groups( GLcontext *ctx )
1154{
1155 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001156
Keith Whitwell6dc85572003-07-17 13:43:59 +00001157 /* Constants */
1158 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001159
Brian Paul4d053dd2000-01-14 04:45:47 +00001160 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001161 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001162
Keith Whitwell6dc85572003-07-17 13:43:59 +00001163 /* Attribute Groups */
1164 _mesa_init_accum( ctx );
1165 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001166 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001167 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001168 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001169 _mesa_init_current( ctx );
1170 _mesa_init_depth( ctx );
1171 _mesa_init_debug( ctx );
1172 _mesa_init_display_list( ctx );
1173 _mesa_init_eval( ctx );
1174 _mesa_init_feedback( ctx );
1175 _mesa_init_fog( ctx );
1176 _mesa_init_histogram( ctx );
1177 _mesa_init_hint( ctx );
1178 _mesa_init_line( ctx );
1179 _mesa_init_lighting( ctx );
1180 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001181 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001182 _mesa_init_pixel( ctx );
1183 _mesa_init_point( ctx );
1184 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001185 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001186 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001187 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001188 _mesa_init_scissor( ctx );
Michal Krol9b3752c2005-01-13 14:08:47 +00001189 _mesa_init_shaderobjects (ctx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001190 _mesa_init_stencil( ctx );
1191 _mesa_init_transform( ctx );
1192 _mesa_init_varray( ctx );
1193 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001194
Keith Whitwell6dc85572003-07-17 13:43:59 +00001195 if (!_mesa_init_texture( ctx ))
1196 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001197
Brian Paul8f04c122004-04-27 13:39:20 +00001198 _mesa_init_texture_s3tc( ctx );
1199 _mesa_init_texture_fxt1( ctx );
1200
Brian Paul4d053dd2000-01-14 04:45:47 +00001201 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001202 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001203 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001204 ctx->_Facing = 0;
Brian Paul4d053dd2000-01-14 04:45:47 +00001205
Brian Paula3f13702003-04-01 16:41:50 +00001206 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001207}
1208
1209
Brian Paulf44898c2003-07-18 15:44:57 +00001210/**
Brian Paul21f69782004-11-27 05:05:32 +00001211 * This is the default function we plug into all dispatch table slots
1212 * This helps prevents a segfault when someone calls a GL function without
1213 * first checking if the extension's supported.
1214 */
1215static int
1216generic_nop(void)
1217{
1218 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1219 return 0;
1220}
1221
1222
1223/**
1224 * Allocate and initialize a new dispatch table.
1225 */
1226static struct _glapi_table *
1227alloc_dispatch_table(void)
1228{
1229 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1230 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1231 * Mesa we do this to accomodate different versions of libGL and various
1232 * DRI drivers.
1233 */
1234 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1235 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1236 struct _glapi_table *table =
1237 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1238 if (table) {
1239 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001240 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001241 for (i = 0; i < numEntries; i++) {
1242 entry[i] = (_glapi_proc) generic_nop;
1243 }
1244 }
1245 return table;
1246}
1247
1248
1249/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001250 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001251 *
1252 * This includes allocating all the other structs and arrays which hang off of
1253 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001254 * Note that the driver needs to pass in its dd_function_table here since
1255 * we need to at least call driverFunctions->NewTextureObject to create the
1256 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001257 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001258 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001259 *
1260 * Performs the imports and exports callback tables initialization, and
1261 * miscellaneous one-time initializations. If no shared context is supplied one
1262 * is allocated, and increase its reference count. Setups the GL API dispatch
1263 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1264 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1265 * for debug flags.
1266 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001267 * \param ctx the context to initialize
1268 * \param visual describes the visual attributes for this context
1269 * \param share_list points to context to share textures, display lists,
1270 * etc with, or NULL
1271 * \param driverFunctions table of device driver functions for this context
1272 * to use
1273 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001274 */
Brian Paul178a1c52000-04-22 01:05:00 +00001275GLboolean
1276_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001277 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001278 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001279 const struct dd_function_table *driverFunctions,
1280 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001281{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001282 ASSERT(driverContext);
1283 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001284 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001285
Brian Paul3c634522002-10-24 23:57:19 +00001286 /* If the driver wants core Mesa to use special imports, it'll have to
1287 * override these defaults.
1288 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001289 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001290
Brian Paul9a33a112002-06-13 04:28:29 +00001291 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001292 _mesa_init_default_exports( &(ctx->exports) );
1293
1294 /* misc one-time initializations */
1295 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001296
Brian Paulb1394fa2000-09-26 20:53:53 +00001297 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001298 ctx->DrawBuffer = NULL;
1299 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001300 ctx->WinSysDrawBuffer = NULL;
1301 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001302
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001303 /* Plug in driver functions and context pointer here.
1304 * This is important because when we call alloc_shared_state() below
1305 * we'll call ctx->Driver.NewTextureObject() to create the default
1306 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001307 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001308 ctx->Driver = *driverFunctions;
1309 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001310
jtgafb833d1999-08-19 00:55:39 +00001311 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001312 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001313 ctx->Shared = share_list->Shared;
1314 }
1315 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001316 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001317 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001318 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001319 }
1320 }
Brian Paul9560f052000-01-31 23:11:39 +00001321 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001322 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001323 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001324
Keith Whitwell6dc85572003-07-17 13:43:59 +00001325 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001326 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001327 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001328 }
jtgafb833d1999-08-19 00:55:39 +00001329
Brian Paul21f69782004-11-27 05:05:32 +00001330 /* setup the API dispatch tables */
1331 ctx->Exec = alloc_dispatch_table();
1332 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001333 if (!ctx->Exec || !ctx->Save) {
1334 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001335 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001336 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001337 }
Brian Paul21f69782004-11-27 05:05:32 +00001338 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001339 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001340#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001341 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001342 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001343 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001344 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001345 ctx->TnlModule.Current = NULL;
1346 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001347#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001348
Keith Whitwell47b29f52005-05-04 11:44:44 +00001349 ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001350 ctx->_UseTexEnvProgram = ctx->_MaintainTexEnvProgram;
1351
Keith Whitwell47b29f52005-05-04 11:44:44 +00001352 ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001353 if (ctx->_MaintainTnlProgram)
1354 ctx->_MaintainTexEnvProgram = 1; /* this is required... */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001355
Brian Paula96f8892005-09-13 01:19:29 +00001356 ctx->FirstTimeCurrent = GL_TRUE;
1357
Brian Paul4d053dd2000-01-14 04:45:47 +00001358 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001359}
1360
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001361
Brian Paulde4f4602003-07-03 02:15:06 +00001362/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001363 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001364 * Note that the driver needs to pass in its dd_function_table here since
1365 * we need to at least call driverFunctions->NewTextureObject to initialize
1366 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001367 *
1368 * \param visual a GLvisual pointer (we copy the struct contents)
1369 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001370 * \param driverFunctions points to the dd_function_table into which the
1371 * driver has plugged in all its special functions.
1372 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001373 *
1374 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001375 */
Brian Paul178a1c52000-04-22 01:05:00 +00001376GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001377_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001378 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001379 const struct dd_function_table *driverFunctions,
1380 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001381
Brian Paul4d053dd2000-01-14 04:45:47 +00001382{
Brian Paul4753d602002-06-15 02:38:15 +00001383 GLcontext *ctx;
1384
1385 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001386 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001387
Brian Paul3c634522002-10-24 23:57:19 +00001388 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001389 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001390 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001391
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001392 if (_mesa_initialize_context(ctx, visual, share_list,
1393 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001394 return ctx;
1395 }
1396 else {
Brian Paul3c634522002-10-24 23:57:19 +00001397 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001398 return NULL;
1399 }
1400}
1401
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001402
Keith Whitwell6dc85572003-07-17 13:43:59 +00001403/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001404 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001405 *
1406 * But doesn't free the GLcontext struct itself.
1407 *
1408 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001409 */
Brian Paul178a1c52000-04-22 01:05:00 +00001410void
Brian Paulb1394fa2000-09-26 20:53:53 +00001411_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001412{
Brian Paul4d053dd2000-01-14 04:45:47 +00001413 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001414 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001415 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001416 }
1417
Keith Whitwell6dc85572003-07-17 13:43:59 +00001418 _mesa_free_lighting_data( ctx );
1419 _mesa_free_eval_data( ctx );
1420 _mesa_free_texture_data( ctx );
1421 _mesa_free_matrix_data( ctx );
1422 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001423 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001424 _mesa_free_program_data(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001425 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001426
1427#if FEATURE_ARB_vertex_buffer_object
1428 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001429#endif
Brian Paulc04bb512006-07-11 21:56:43 +00001430 _mesa_delete_array_object(ctx, ctx->Array.DefaultArrayObj);
Brian Paulfd284452001-07-19 15:54:34 +00001431
Brian Paul65a66f52004-11-27 22:47:59 +00001432 /* free dispatch tables */
1433 _mesa_free(ctx->Exec);
1434 _mesa_free(ctx->Save);
1435
Brian Paul30f51ae2001-12-18 04:06:44 +00001436 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001437 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001438 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001439 assert(ctx->Shared->RefCount >= 0);
1440 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1441 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001442 /* free shared state */
1443 free_shared_state( ctx, ctx->Shared );
1444 }
1445
Brian Paul702ca202003-07-18 15:22:16 +00001446 if (ctx->Extensions.String)
Brian Paulc7e164f2006-06-30 15:44:30 +00001447 _mesa_free((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001448}
1449
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001450
Keith Whitwell6dc85572003-07-17 13:43:59 +00001451/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001452 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001453 *
1454 * \param ctx GL context.
1455 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001456 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001457 */
Brian Paul178a1c52000-04-22 01:05:00 +00001458void
Brian Paulb1394fa2000-09-26 20:53:53 +00001459_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001460{
1461 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001462 _mesa_free_context_data(ctx);
Brian Paulc7e164f2006-06-30 15:44:30 +00001463 _mesa_free( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001464 }
1465}
1466
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001467
Keith Whitwell6dc85572003-07-17 13:43:59 +00001468#if _HAVE_FULL_GL
1469/**
jtgafb833d1999-08-19 00:55:39 +00001470 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001471 *
1472 * \param src source context
1473 * \param dst destination context
1474 * \param mask bitwise OR of GL_*_BIT flags
1475 *
1476 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001477 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001478 * memcpy is not enough due to the existence of internal pointers in their data
1479 * structures.
jtgafb833d1999-08-19 00:55:39 +00001480 */
Brian Paul178a1c52000-04-22 01:05:00 +00001481void
Brian Paulb1394fa2000-09-26 20:53:53 +00001482_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001483{
1484 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001485 /* OK to memcpy */
1486 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001487 }
1488 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001489 /* OK to memcpy */
1490 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001491 }
1492 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001493 /* OK to memcpy */
1494 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001495 }
1496 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001497 /* OK to memcpy */
1498 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001499 }
1500 if (mask & GL_ENABLE_BIT) {
1501 /* no op */
1502 }
1503 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001504 /* OK to memcpy */
1505 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001506 }
1507 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001508 /* OK to memcpy */
1509 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001510 }
1511 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001512 /* OK to memcpy */
1513 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001514 }
1515 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001516 GLuint i;
1517 /* begin with memcpy */
Brian Paul2aabdc72006-02-24 18:19:11 +00001518 dst->Light = src->Light;
Brian Paul85d81602002-06-17 23:36:31 +00001519 /* fixup linked lists to prevent pointer insanity */
1520 make_empty_list( &(dst->Light.EnabledList) );
1521 for (i = 0; i < MAX_LIGHTS; i++) {
1522 if (dst->Light.Light[i].Enabled) {
1523 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1524 }
1525 }
jtgafb833d1999-08-19 00:55:39 +00001526 }
1527 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001528 /* OK to memcpy */
1529 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001530 }
1531 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001532 /* OK to memcpy */
1533 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001534 }
1535 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001536 /* OK to memcpy */
1537 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001538 }
1539 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001540 /* OK to memcpy */
1541 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001542 }
1543 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001544 /* OK to memcpy */
1545 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001546 }
1547 if (mask & GL_POLYGON_STIPPLE_BIT) {
1548 /* Use loop instead of MEMCPY due to problem with Portland Group's
1549 * C compiler. Reported by John Stone.
1550 */
Brian Paul85d81602002-06-17 23:36:31 +00001551 GLuint i;
1552 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001553 dst->PolygonStipple[i] = src->PolygonStipple[i];
1554 }
1555 }
1556 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001557 /* OK to memcpy */
1558 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001559 }
1560 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001561 /* OK to memcpy */
1562 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001563 }
1564 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001565 /* Cannot memcpy because of pointers */
1566 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001567 }
1568 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001569 /* OK to memcpy */
1570 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001571 }
1572 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001573 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1574 dst->Viewport.X = src->Viewport.X;
1575 dst->Viewport.Y = src->Viewport.Y;
1576 dst->Viewport.Width = src->Viewport.Width;
1577 dst->Viewport.Height = src->Viewport.Height;
1578 dst->Viewport.Near = src->Viewport.Near;
1579 dst->Viewport.Far = src->Viewport.Far;
1580 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001581 }
Brian Paul85d81602002-06-17 23:36:31 +00001582
Keith Whitwella96308c2000-10-30 13:31:59 +00001583 /* XXX FIXME: Call callbacks?
1584 */
1585 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001586}
Keith Whitwell23caf202000-11-16 21:05:34 +00001587#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001588
1589
Brian Paulb1d53d92003-06-11 18:48:19 +00001590/**
1591 * Check if the given context can render into the given framebuffer
1592 * by checking visual attributes.
Brian Paulca007cb2006-03-07 03:01:26 +00001593 *
1594 * XXX this may go away someday because we're moving toward more freedom
1595 * in binding contexts to drawables with different visual attributes.
1596 * The GL_EXT_f_b_o extension is prompting some of that.
1597 *
Brian Paulb1d53d92003-06-11 18:48:19 +00001598 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1599 */
1600static GLboolean
1601check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1602{
1603 const GLvisual *ctxvis = &ctx->Visual;
1604 const GLvisual *bufvis = &buffer->Visual;
1605
1606 if (ctxvis == bufvis)
1607 return GL_TRUE;
1608
1609 if (ctxvis->rgbMode != bufvis->rgbMode)
1610 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001611#if 0
1612 /* disabling this fixes the fgl_glxgears pbuffer demo */
Brian Paulb1d53d92003-06-11 18:48:19 +00001613 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1614 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001615#endif
Brian Paulb1d53d92003-06-11 18:48:19 +00001616 if (ctxvis->stereoMode && !bufvis->stereoMode)
1617 return GL_FALSE;
1618 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1619 return GL_FALSE;
1620 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1621 return GL_FALSE;
1622 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1623 return GL_FALSE;
1624 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1625 return GL_FALSE;
1626 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1627 return GL_FALSE;
1628 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1629 return GL_FALSE;
1630 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1631 return GL_FALSE;
1632 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1633 return GL_FALSE;
1634
1635 return GL_TRUE;
1636}
1637
1638
Keith Whitwell6dc85572003-07-17 13:43:59 +00001639/**
Brian Paula702bbf2005-09-14 03:11:36 +00001640 * Do one-time initialization for the given framebuffer. Specifically,
1641 * ask the driver for the window's current size and update the framebuffer
1642 * object to match.
1643 * Really, the device driver should totally take care of this.
1644 */
1645static void
1646initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1647{
1648 GLuint width, height;
Brian Paul55e42e52006-10-17 17:43:47 +00001649 if (ctx->Driver.GetBufferSize) {
1650 ctx->Driver.GetBufferSize(fb, &width, &height);
1651 if (ctx->Driver.ResizeBuffers)
1652 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1653 fb->Initialized = GL_TRUE;
1654 }
Brian Paula702bbf2005-09-14 03:11:36 +00001655}
1656
1657
1658/**
1659 * Bind the given context to the given drawBuffer and readBuffer and
1660 * make it the current context for the calling thread.
1661 * We'll render into the drawBuffer and read pixels from the
1662 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001663 *
Brian Paula702bbf2005-09-14 03:11:36 +00001664 * We check that the context's and framebuffer's visuals are compatible
1665 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001666 *
Brian Paula702bbf2005-09-14 03:11:36 +00001667 * \param newCtx the new GL context. If NULL then there will be no current GL
1668 * context.
1669 * \param drawBuffer the drawing framebuffer
1670 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001671 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001672void
Brian Paule4b23562005-05-04 20:11:35 +00001673_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1674 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001675{
Keith Whitwell5c728372005-05-12 10:22:29 +00001676 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001677 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001678
Brian Paulbe3602d2001-02-28 00:27:48 +00001679 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001680 */
Brian Paulf1038f82006-03-20 15:20:57 +00001681 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001682 if (!check_compatible(newCtx, drawBuffer)) {
1683 _mesa_warning(newCtx,
1684 "MakeCurrent: incompatible visuals for context and drawbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001685 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001686 }
Brian Paulb1d53d92003-06-11 18:48:19 +00001687 }
Brian Paulf1038f82006-03-20 15:20:57 +00001688 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001689 if (!check_compatible(newCtx, readBuffer)) {
1690 _mesa_warning(newCtx,
1691 "MakeCurrent: incompatible visuals for context and readbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001692 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001693 }
Brian Paulbe3602d2001-02-28 00:27:48 +00001694 }
1695
Brian Paulc6c0f942006-03-16 18:05:25 +00001696 /* We used to call _glapi_check_multithread() here. Now do it in drivers */
Brian Paulf9b97d92000-01-28 20:17:42 +00001697 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001698 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001699
Keith Whitwell23caf202000-11-16 21:05:34 +00001700 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001701 _glapi_set_dispatch(NULL); /* none current */
1702 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001703 else {
1704 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001705
Keith Whitwell23caf202000-11-16 21:05:34 +00001706 if (drawBuffer && readBuffer) {
1707 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001708
Brian Paule4b23562005-05-04 20:11:35 +00001709 ASSERT(drawBuffer->Name == 0);
1710 ASSERT(readBuffer->Name == 0);
1711 newCtx->WinSysDrawBuffer = drawBuffer;
1712 newCtx->WinSysReadBuffer = readBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001713
1714 /*
1715 * Only set the context's Draw/ReadBuffer fields if they're NULL
1716 * or not bound to a user-created FBO.
1717 */
Brian Paule4b23562005-05-04 20:11:35 +00001718 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1719 newCtx->DrawBuffer = drawBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001720 }
1721 if (!newCtx->ReadBuffer || newCtx->ReadBuffer->Name == 0) {
Brian Paule4b23562005-05-04 20:11:35 +00001722 newCtx->ReadBuffer = readBuffer;
1723 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001724
Keith Whitwell23caf202000-11-16 21:05:34 +00001725 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001726
Brian Paul4d4add02006-10-15 19:26:43 +00001727#if 1
1728 /* We want to get rid of these lines: */
1729
Keith Whitwell6dc85572003-07-17 13:43:59 +00001730#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001731 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001732 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001733 }
Brian Paul65a66f52004-11-27 22:47:59 +00001734 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001735 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001736 }
Keith Whitwellf9bfdb12006-09-22 11:36:30 +00001737
1738 _mesa_resizebuffers(newCtx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001739#endif
Brian Paul4d4add02006-10-15 19:26:43 +00001740
1741#else
1742 /* We want the drawBuffer and readBuffer to be initialized by
1743 * the driver.
1744 * This generally means the Width and Height match the actual
1745 * window size and the renderbuffers (both hardware and software
1746 * based) are allocated to match. The later can generally be
1747 * done with a call to _mesa_resize_framebuffer().
1748 *
1749 * It's theoretically possible for a buffer to have zero width
1750 * or height, but for now, assert check that the driver did what's
1751 * expected of it.
1752 */
1753 ASSERT(drawBuffer->Width > 0);
1754 ASSERT(drawBuffer->Height > 0);
1755#endif
1756
Brian Paul65a66f52004-11-27 22:47:59 +00001757 if (newCtx->FirstTimeCurrent) {
1758 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001759 _mesa_set_viewport(newCtx, 0, 0,
1760 drawBuffer->Width, drawBuffer->Height);
Brian Pauldb79d2a2006-03-29 18:41:19 +00001761 _mesa_set_scissor(newCtx, 0, 0,
1762 drawBuffer->Width, drawBuffer->Height );
Brian Paul5e2e96b2006-05-15 15:26:04 +00001763 check_context_limits(newCtx);
Brian Paul65a66f52004-11-27 22:47:59 +00001764 }
Brian Paul00037781999-12-17 14:52:35 +00001765 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001766
Keith Whitwell23caf202000-11-16 21:05:34 +00001767 /* We can use this to help debug user's problems. Tell them to set
1768 * the MESA_INFO env variable before running their app. Then the
1769 * first time each context is made current we'll print some useful
1770 * information.
1771 */
1772 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001773 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001774 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001775 }
1776 newCtx->FirstTimeCurrent = GL_FALSE;
1777 }
Brian Paul00037781999-12-17 14:52:35 +00001778 }
1779}
1780
Brian Paul635ee2d2005-04-15 17:25:07 +00001781
1782/**
1783 * Make context 'ctx' share the display lists, textures and programs
1784 * that are associated with 'ctxToShare'.
1785 * Any display lists, textures or programs associated with 'ctx' will
1786 * be deleted if nobody else is sharing them.
1787 */
1788GLboolean
1789_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1790{
1791 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1792 ctx->Shared->RefCount--;
1793 if (ctx->Shared->RefCount == 0) {
1794 free_shared_state(ctx, ctx->Shared);
1795 }
1796 ctx->Shared = ctxToShare->Shared;
1797 ctx->Shared->RefCount++;
1798 return GL_TRUE;
1799 }
1800 else {
1801 return GL_FALSE;
1802 }
1803}
1804
1805
1806
Keith Whitwell6dc85572003-07-17 13:43:59 +00001807/**
1808 * Get current context for the calling thread.
1809 *
1810 * \return pointer to the current GL context.
1811 *
1812 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1813 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001814 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001815GLcontext *
1816_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001817{
Brian Paulf9b97d92000-01-28 20:17:42 +00001818 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001819}
1820
Keith Whitwell6dc85572003-07-17 13:43:59 +00001821/**
1822 * Get context's current API dispatch table.
1823 *
1824 * It'll either be the immediate-mode execute dispatcher or the display list
1825 * compile dispatcher.
1826 *
1827 * \param ctx GL context.
1828 *
1829 * \return pointer to dispatch_table.
1830 *
1831 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001832 */
1833struct _glapi_table *
1834_mesa_get_dispatch(GLcontext *ctx)
1835{
1836 return ctx->CurrentDispatch;
1837}
1838
Keith Whitwell6dc85572003-07-17 13:43:59 +00001839/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001840
1841
jtgafb833d1999-08-19 00:55:39 +00001842/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001843/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001844/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001845/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001846
Keith Whitwell6dc85572003-07-17 13:43:59 +00001847/**
1848 * Record an error.
1849 *
1850 * \param ctx GL context.
1851 * \param error error code.
1852 *
1853 * Records the given error code and call the driver's dd_function_table::Error
1854 * function if defined.
1855 *
1856 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001857 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001858 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001859void
Brian Paul4e9676f2002-06-29 19:48:15 +00001860_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001861{
Brian Paul18a285a2002-03-16 00:53:15 +00001862 if (!ctx)
1863 return;
1864
Brian Paul7eb06032000-07-14 04:13:40 +00001865 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001866 ctx->ErrorValue = error;
1867 }
1868
1869 /* Call device driver's error handler, if any. This is used on the Mac. */
1870 if (ctx->Driver.Error) {
1871 (*ctx->Driver.Error)( ctx );
1872 }
1873}
1874
Keith Whitwell6dc85572003-07-17 13:43:59 +00001875/**
1876 * Execute glFinish().
1877 *
1878 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1879 * dd_function_table::Finish driver callback, if not NULL.
1880 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001881void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001882_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001883{
Brian Paulfa9df402000-02-02 19:16:46 +00001884 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001885 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001886 if (ctx->Driver.Finish) {
1887 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001888 }
1889}
1890
Keith Whitwell6dc85572003-07-17 13:43:59 +00001891/**
1892 * Execute glFlush().
1893 *
1894 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1895 * dd_function_table::Flush driver callback, if not NULL.
1896 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001897void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001898_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001899{
Brian Paulfa9df402000-02-02 19:16:46 +00001900 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001901 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001902 if (ctx->Driver.Flush) {
1903 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001904 }
jtgafb833d1999-08-19 00:55:39 +00001905}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001906
1907
Keith Whitwell6dc85572003-07-17 13:43:59 +00001908/*@}*/