blob: 4101c9f1ed2cdd5615a091d978e28e070495ab59 [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"
Brian Paul63d68302005-11-19 16:43:04 +0000103#include "atifragshader.h"
jtgafb833d1999-08-19 00:55:39 +0000104#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000105#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000106#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000107#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000108#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000109#include "pixel.h"
110#include "points.h"
111#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000112#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
113#include "program.h"
114#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000115#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000116#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000117#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000118#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000119#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000120#include "teximage.h"
121#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000122#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000123#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000124#include "varray.h"
Brian Paul363344f2005-09-13 14:48:28 +0000125#include "version.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000126#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000127#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000128#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000129#include "math/m_matrix.h"
130#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000131#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000132#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000133#include "shaderobjects.h"
jtgafb833d1999-08-19 00:55:39 +0000134
davem69775355a2001-06-05 23:54:00 +0000135#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000136#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000137#endif
jtgafb833d1999-08-19 00:55:39 +0000138
Keith Whitwell23caf202000-11-16 21:05:34 +0000139#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000140int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000141#endif
142
143#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000144int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000145#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000146
Brian Paul86b84272001-12-14 02:50:01 +0000147
Brian Paul27558a12003-03-01 01:50:20 +0000148/* ubyte -> float conversion */
149GLfloat _mesa_ubyte_to_float_color_tab[256];
150
Brian Paul9a33a112002-06-13 04:28:29 +0000151static void
152free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
153
Brian Paul86b84272001-12-14 02:50:01 +0000154
Brian Paulb1394fa2000-09-26 20:53:53 +0000155/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000156/** \name OpenGL SI-style interface (new in Mesa 3.5)
157 *
158 * \if subset
159 * \note Most of these functions are never called in the Mesa subset.
160 * \endif
161 */
162/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000163
Keith Whitwell6dc85572003-07-17 13:43:59 +0000164/**
165 * Destroy context callback.
166 *
167 * \param gc context.
168 * \return GL_TRUE on success, or GL_FALSE on failure.
169 *
170 * \ifnot subset
171 * Called by window system/device driver (via __GLexports::destroyCurrent) when
172 * the rendering context is to be destroyed.
173 * \endif
174 *
175 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000176 */
177GLboolean
178_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000179{
180 if (gc) {
181 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000182 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000183 }
184 return GL_TRUE;
185}
186
Keith Whitwell6dc85572003-07-17 13:43:59 +0000187/**
188 * Unbind context callback.
189 *
190 * \param gc context.
191 * \return GL_TRUE on success, or GL_FALSE on failure.
192 *
193 * \ifnot subset
194 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000195 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000196 * \endif
197 *
198 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000199 */
200GLboolean
201_mesa_loseCurrent(__GLcontext *gc)
202{
203 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000204 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000205 return GL_TRUE;
206}
207
Keith Whitwell6dc85572003-07-17 13:43:59 +0000208/**
209 * Bind context callback.
210 *
211 * \param gc context.
212 * \return GL_TRUE on success, or GL_FALSE on failure.
213 *
214 * \ifnot subset
215 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000216 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000217 * \endif
218 *
219 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000220 */
221GLboolean
222_mesa_makeCurrent(__GLcontext *gc)
223{
224 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000225 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000226 return GL_TRUE;
227}
228
Keith Whitwell6dc85572003-07-17 13:43:59 +0000229/**
230 * Share context callback.
231 *
232 * \param gc context.
233 * \param gcShare shared context.
234 * \return GL_TRUE on success, or GL_FALSE on failure.
235 *
236 * \ifnot subset
237 * Called by window system/device driver (via __GLexports::shareContext)
238 * \endif
239 *
240 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000241 */
242GLboolean
243_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
244{
245 if (gc && gcShare && gc->Shared && gcShare->Shared) {
246 gc->Shared->RefCount--;
247 if (gc->Shared->RefCount == 0) {
248 free_shared_state(gc, gc->Shared);
249 }
250 gc->Shared = gcShare->Shared;
251 gc->Shared->RefCount++;
252 return GL_TRUE;
253 }
254 else {
255 return GL_FALSE;
256 }
257}
258
Keith Whitwell6dc85572003-07-17 13:43:59 +0000259
260#if _HAVE_FULL_GL
261/**
262 * Copy context callback.
263 */
Brian Paul9a33a112002-06-13 04:28:29 +0000264GLboolean
265_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
266{
267 if (dst && src) {
268 _mesa_copy_context( src, dst, mask );
269 return GL_TRUE;
270 }
271 else {
272 return GL_FALSE;
273 }
274}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000275#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000276
Keith Whitwell6dc85572003-07-17 13:43:59 +0000277/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000278GLboolean
279_mesa_forceCurrent(__GLcontext *gc)
280{
Brian Paula6c423d2004-08-25 15:59:48 +0000281 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000282 return GL_TRUE;
283}
284
Keith Whitwell6dc85572003-07-17 13:43:59 +0000285/**
286 * Windows/buffer resizing notification callback.
287 *
288 * \param gc GL context.
289 * \return GL_TRUE on success, or GL_FALSE on failure.
290 */
Brian Paul9a33a112002-06-13 04:28:29 +0000291GLboolean
292_mesa_notifyResize(__GLcontext *gc)
293{
294 GLint x, y;
295 GLuint width, height;
296 __GLdrawablePrivate *d = gc->imports.getDrawablePrivate(gc);
297 if (!d || !d->getDrawableSize)
298 return GL_FALSE;
299 d->getDrawableSize( d, &x, &y, &width, &height );
300 /* update viewport, resize software buffers, etc. */
301 return GL_TRUE;
302}
303
Keith Whitwell6dc85572003-07-17 13:43:59 +0000304/**
305 * Window/buffer destruction notification callback.
306 *
307 * \param gc GL context.
308 *
309 * Called when the context's window/buffer is going to be destroyed.
310 *
311 * No-op
312 */
Brian Paul9a33a112002-06-13 04:28:29 +0000313void
314_mesa_notifyDestroy(__GLcontext *gc)
315{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000316 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000317 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000318}
319
Keith Whitwell6dc85572003-07-17 13:43:59 +0000320/**
321 * Swap buffers notification callback.
322 *
323 * \param gc GL context.
324 *
325 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000326 * We have to finish any pending rendering.
327 */
328void
329_mesa_notifySwapBuffers(__GLcontext *gc)
330{
331 FLUSH_VERTICES( gc, 0 );
332}
333
Keith Whitwell6dc85572003-07-17 13:43:59 +0000334/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000335struct __GLdispatchStateRec *
336_mesa_dispatchExec(__GLcontext *gc)
337{
Brian Paula6c423d2004-08-25 15:59:48 +0000338 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000339 return NULL;
340}
341
Keith Whitwell6dc85572003-07-17 13:43:59 +0000342/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000343void
344_mesa_beginDispatchOverride(__GLcontext *gc)
345{
Brian Paula6c423d2004-08-25 15:59:48 +0000346 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000347}
348
Keith Whitwell6dc85572003-07-17 13:43:59 +0000349/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000350void
351_mesa_endDispatchOverride(__GLcontext *gc)
352{
Brian Paula6c423d2004-08-25 15:59:48 +0000353 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000354}
355
Keith Whitwell6dc85572003-07-17 13:43:59 +0000356/**
357 * \ifnot subset
358 * Setup the exports.
359 *
360 * The window system will call these functions when it needs Mesa to do
361 * something.
362 *
363 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000364 * the Xlib driver should plug in the XMesa*-style functions into this
365 * structure. The XMesa-style functions should then call the _mesa_*
366 * version of these functions. This is an approximation to OO design
367 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000368 * \endif
369 *
370 * \if subset
371 * No-op.
372 *
373 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000374 */
375static void
376_mesa_init_default_exports(__GLexports *exports)
377{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000378#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000379 exports->destroyContext = _mesa_destroyContext;
380 exports->loseCurrent = _mesa_loseCurrent;
381 exports->makeCurrent = _mesa_makeCurrent;
382 exports->shareContext = _mesa_shareContext;
383 exports->copyContext = _mesa_copyContext;
384 exports->forceCurrent = _mesa_forceCurrent;
385 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000386 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000387 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
388 exports->dispatchExec = _mesa_dispatchExec;
389 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
390 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000391#else
392 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000393#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000394}
395
Keith Whitwell6dc85572003-07-17 13:43:59 +0000396/**
397 * Exported OpenGL SI interface.
398 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000399__GLcontext *
400__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
401{
402 GLcontext *ctx;
403
Brian Paul4753d602002-06-15 02:38:15 +0000404 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000405 if (ctx == NULL) {
406 return NULL;
407 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000408
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000409 /* XXX doesn't work at this time */
410 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000411 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000412
413 return ctx;
414}
415
Keith Whitwell6dc85572003-07-17 13:43:59 +0000416/**
417 * Exported OpenGL SI interface.
418 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000419void
420__glCoreNopDispatch(void)
421{
422#if 0
423 /* SI */
424 __gl_dispatch = __glNopDispatchState;
425#else
426 /* Mesa */
427 _glapi_set_dispatch(NULL);
428#endif
429}
430
Keith Whitwell6dc85572003-07-17 13:43:59 +0000431/*@}*/
432
Brian Paulb1394fa2000-09-26 20:53:53 +0000433
jtgafb833d1999-08-19 00:55:39 +0000434/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000435/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000436/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000437/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000438
Keith Whitwell6dc85572003-07-17 13:43:59 +0000439/**
Brian Paul894844a2004-03-21 17:05:03 +0000440 * Allocates a GLvisual structure and initializes it via
441 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000442 *
443 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
444 * \param dbFlag double buffering
445 * \param stereoFlag stereo buffer
446 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
447 * is acceptable but the actual depth type will be GLushort or GLuint as
448 * needed.
449 * \param stencilBits requested minimum bits per stencil buffer value
450 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
451 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
452 * \param redBits number of bits per color component in frame buffer for RGB(A)
453 * mode. We always use 8 in core Mesa though.
454 * \param greenBits same as above.
455 * \param blueBits same as above.
456 * \param alphaBits same as above.
457 * \param numSamples not really used.
458 *
459 * \return pointer to new GLvisual or NULL if requested parameters can't be
460 * met.
461 *
Brian Paul894844a2004-03-21 17:05:03 +0000462 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000463 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000464GLvisual *
465_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000466 GLboolean dbFlag,
467 GLboolean stereoFlag,
468 GLint redBits,
469 GLint greenBits,
470 GLint blueBits,
471 GLint alphaBits,
472 GLint indexBits,
473 GLint depthBits,
474 GLint stencilBits,
475 GLint accumRedBits,
476 GLint accumGreenBits,
477 GLint accumBlueBits,
478 GLint accumAlphaBits,
479 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000480{
Brian Paul178a1c52000-04-22 01:05:00 +0000481 GLvisual *vis = (GLvisual *) CALLOC( sizeof(GLvisual) );
482 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000483 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000484 redBits, greenBits, blueBits, alphaBits,
485 indexBits, depthBits, stencilBits,
486 accumRedBits, accumGreenBits,
487 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000488 numSamples)) {
Brian Paul178a1c52000-04-22 01:05:00 +0000489 FREE(vis);
490 return NULL;
491 }
492 }
493 return vis;
494}
495
Keith Whitwell6dc85572003-07-17 13:43:59 +0000496/**
Brian Paul894844a2004-03-21 17:05:03 +0000497 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000498 * GLvisual object with the given parameters. If the caller needs
499 * to set additional fields, he should just probably init the whole GLvisual
500 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000501 * \return GL_TRUE on success, or GL_FALSE on failure.
502 *
503 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000504 */
505GLboolean
506_mesa_initialize_visual( GLvisual *vis,
507 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000508 GLboolean dbFlag,
509 GLboolean stereoFlag,
510 GLint redBits,
511 GLint greenBits,
512 GLint blueBits,
513 GLint alphaBits,
514 GLint indexBits,
515 GLint depthBits,
516 GLint stencilBits,
517 GLint accumRedBits,
518 GLint accumGreenBits,
519 GLint accumBlueBits,
520 GLint accumAlphaBits,
521 GLint numSamples )
522{
523 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000524
Brian Pauled30dfa2000-03-03 17:47:39 +0000525 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000526 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000527 }
Brian Paule4b23562005-05-04 20:11:35 +0000528 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000529 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000530 }
Brian Paul978ef2b2005-09-21 03:35:08 +0000531 assert(accumRedBits >= 0);
532 assert(accumGreenBits >= 0);
533 assert(accumBlueBits >= 0);
534 assert(accumAlphaBits >= 0);
Brian Paul4d053dd2000-01-14 04:45:47 +0000535
Brian Paulb6bcae52001-01-23 23:39:36 +0000536 vis->rgbMode = rgbFlag;
537 vis->doubleBufferMode = dbFlag;
538 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000539
Brian Paulb6bcae52001-01-23 23:39:36 +0000540 vis->redBits = redBits;
541 vis->greenBits = greenBits;
542 vis->blueBits = blueBits;
543 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000544 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000545
Brian Paulb6bcae52001-01-23 23:39:36 +0000546 vis->indexBits = indexBits;
547 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000548 vis->stencilBits = stencilBits;
549
550 vis->accumRedBits = accumRedBits;
551 vis->accumGreenBits = accumGreenBits;
552 vis->accumBlueBits = accumBlueBits;
553 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000554
Brian Paul153f1542002-10-29 15:04:35 +0000555 vis->haveAccumBuffer = accumRedBits > 0;
556 vis->haveDepthBuffer = depthBits > 0;
557 vis->haveStencilBuffer = stencilBits > 0;
558
559 vis->numAuxBuffers = 0;
560 vis->level = 0;
561 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000562 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000563 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000564
Brian Paul178a1c52000-04-22 01:05:00 +0000565 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000566}
567
Brian Paul894844a2004-03-21 17:05:03 +0000568
Keith Whitwell6dc85572003-07-17 13:43:59 +0000569/**
Brian Paul894844a2004-03-21 17:05:03 +0000570 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000571 *
572 * \param vis visual.
573 *
574 * Frees the visual structure.
575 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000576void
577_mesa_destroy_visual( GLvisual *vis )
578{
579 FREE(vis);
580}
581
Keith Whitwell6dc85572003-07-17 13:43:59 +0000582/*@}*/
583
Brian Paulb371e0d2000-03-31 01:05:51 +0000584
Brian Paul4d053dd2000-01-14 04:45:47 +0000585/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000586/** \name Context allocation, initialization, destroying
587 *
588 * The purpose of the most initialization functions here is to provide the
589 * default state values according to the OpenGL specification.
590 */
jtgafb833d1999-08-19 00:55:39 +0000591/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000592/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000593
Keith Whitwell6dc85572003-07-17 13:43:59 +0000594/**
595 * One-time initialization mutex lock.
596 *
597 * \sa Used by one_time_init().
598 */
Brian Paul9560f052000-01-31 23:11:39 +0000599_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
600
Keith Whitwell6dc85572003-07-17 13:43:59 +0000601/**
602 * Calls all the various one-time-init functions in Mesa.
603 *
604 * While holding a global mutex lock, calls several initialization functions,
605 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
606 * defined.
607 *
608 * \sa _mesa_init_lists(), _math_init().
jtgafb833d1999-08-19 00:55:39 +0000609 */
Brian Paul178a1c52000-04-22 01:05:00 +0000610static void
Brian Paul4753d602002-06-15 02:38:15 +0000611one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000612{
613 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000614 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000615 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000616 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000617 GLuint i;
618
Brian Paul4d053dd2000-01-14 04:45:47 +0000619 /* do some implementation tests */
620 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000621 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000622 assert( sizeof(GLshort) == 2 );
623 assert( sizeof(GLushort) == 2 );
624 assert( sizeof(GLint) == 4 );
625 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000626
Brian Paul08836342001-03-03 20:33:27 +0000627 _mesa_init_lists();
Keith Whitwell23caf202000-11-16 21:05:34 +0000628
Keith Whitwell6dc85572003-07-17 13:43:59 +0000629#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000630 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000631
632 for (i = 0; i < 256; i++) {
633 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
634 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000635#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000636
davem69775355a2001-06-05 23:54:00 +0000637#ifdef USE_SPARC_ASM
638 _mesa_init_sparc_glapi_relocs();
639#endif
Brian Paul3c634522002-10-24 23:57:19 +0000640 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000641 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000642 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000643 }
644 else {
645 _glapi_noop_enable_warnings(GL_FALSE);
646 }
647
jtgafb833d1999-08-19 00:55:39 +0000648#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000649 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
650 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000651#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000652
653 alreadyCalled = GL_TRUE;
654 }
Brian Paul9560f052000-01-31 23:11:39 +0000655 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000656}
657
Brian Paul894844a2004-03-21 17:05:03 +0000658
Keith Whitwell6dc85572003-07-17 13:43:59 +0000659/**
jtgafb833d1999-08-19 00:55:39 +0000660 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000661 * Initializes the display list, texture objects and vertex programs hash
662 * tables, allocates the texture objects. If it runs out of memory, frees
663 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000664 *
665 * \return pointer to a gl_shared_state structure on success, or NULL on
666 * failure.
jtgafb833d1999-08-19 00:55:39 +0000667 */
Brian Paula3f13702003-04-01 16:41:50 +0000668static GLboolean
669alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000670{
Brian Paula3f13702003-04-01 16:41:50 +0000671 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000672 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000673 return GL_FALSE;
674
675 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000676
Brian Paule4b684c2000-09-12 21:07:40 +0000677 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000678
Brian Paule4b684c2000-09-12 21:07:40 +0000679 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000680 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000681#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000682 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000683#endif
jtgafb833d1999-08-19 00:55:39 +0000684
Brian Paul451f3102003-04-17 01:48:19 +0000685#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000686 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000687 if (!ss->DefaultVertexProgram)
688 goto cleanup;
689#endif
690#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000691 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000692 if (!ss->DefaultFragmentProgram)
693 goto cleanup;
694#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000695#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000696 ss->ATIShaders = _mesa_NewHashTable();
697 ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000698 if (!ss->DefaultFragmentShader)
699 goto cleanup;
700#endif
Brian Paul451f3102003-04-17 01:48:19 +0000701
Brian Paulddc82ee2005-02-05 19:56:45 +0000702 ss->BufferObjects = _mesa_NewHashTable();
703
Michal Krol9b3752c2005-01-13 14:08:47 +0000704 ss->GL2Objects = _mesa_NewHashTable ();
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
Brian Paulddc82ee2005-02-05 19:56:45 +0000733#if FEATURE_EXT_framebuffer_object
734 ss->FrameBuffers = _mesa_NewHashTable();
735 if (!ss->FrameBuffers)
736 goto cleanup;
737 ss->RenderBuffers = _mesa_NewHashTable();
738 if (!ss->RenderBuffers)
739 goto cleanup;
740#endif
741
742
Brian Paula3f13702003-04-01 16:41:50 +0000743 return GL_TRUE;
744
745 cleanup:
746 /* Ran out of memory at some point. Free everything and return NULL */
747 if (ss->DisplayList)
748 _mesa_DeleteHashTable(ss->DisplayList);
749 if (ss->TexObjects)
750 _mesa_DeleteHashTable(ss->TexObjects);
751#if FEATURE_NV_vertex_program
752 if (ss->Programs)
753 _mesa_DeleteHashTable(ss->Programs);
754#endif
Brian Paul451f3102003-04-17 01:48:19 +0000755#if FEATURE_ARB_vertex_program
756 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000757 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000758#endif
759#if FEATURE_ARB_fragment_program
760 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000761 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000762#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000763#if FEATURE_ATI_fragment_shader
764 if (ss->DefaultFragmentShader)
Brian Paul63d68302005-11-19 16:43:04 +0000765 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000766#endif
Brian Paul21841f02004-08-14 14:28:11 +0000767#if FEATURE_ARB_vertex_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000768 if (ss->BufferObjects)
769 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000770#endif
771
772 if (ss->GL2Objects)
Michal Krol9b3752c2005-01-13 14:08:47 +0000773 _mesa_DeleteHashTable (ss->GL2Objects);
Ian Romanick0207b472003-09-09 00:10:12 +0000774
Brian Paulddc82ee2005-02-05 19:56:45 +0000775#if FEATURE_EXT_framebuffer_object
776 if (ss->FrameBuffers)
777 _mesa_DeleteHashTable(ss->FrameBuffers);
778 if (ss->RenderBuffers)
779 _mesa_DeleteHashTable(ss->RenderBuffers);
780#endif
781
Brian Paula3f13702003-04-01 16:41:50 +0000782 if (ss->Default1D)
783 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
784 if (ss->Default2D)
785 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
786 if (ss->Default3D)
787 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
788 if (ss->DefaultCubeMap)
789 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
790 if (ss->DefaultRect)
791 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
792 if (ss)
793 _mesa_free(ss);
794 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000795}
796
Keith Whitwell6dc85572003-07-17 13:43:59 +0000797/**
jtgafb833d1999-08-19 00:55:39 +0000798 * Deallocate a shared state context and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000799 *
800 * \param ctx GL context.
801 * \param ss shared state pointer.
802 *
803 * Frees the display lists, the texture objects (calling the driver texture
804 * deletion callback to free its private data) and the vertex programs, as well
805 * as their hash tables.
806 *
807 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000808 */
Brian Paul178a1c52000-04-22 01:05:00 +0000809static void
810free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000811{
812 /* Free display lists */
813 while (1) {
Brian Paulbb797902000-01-24 16:19:54 +0000814 GLuint list = _mesa_HashFirstEntry(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000815 if (list) {
Brian Paul08836342001-03-03 20:33:27 +0000816 _mesa_destroy_list(ctx, list);
jtgafb833d1999-08-19 00:55:39 +0000817 }
818 else {
819 break;
820 }
821 }
Brian Paulbb797902000-01-24 16:19:54 +0000822 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000823
824 /* Free texture objects */
Brian Paula3f13702003-04-01 16:41:50 +0000825 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000826 /* the default textures */
827 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
828 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
829 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
830 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
831 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
832 /* all other textures */
Brian Paula3f13702003-04-01 16:41:50 +0000833 while (1) {
834 GLuint texName = _mesa_HashFirstEntry(ss->TexObjects);
835 if (texName) {
836 struct gl_texture_object *texObj = (struct gl_texture_object *)
837 _mesa_HashLookup(ss->TexObjects, texName);
838 ASSERT(texObj);
839 (*ctx->Driver.DeleteTexture)(ctx, texObj);
840 _mesa_HashRemove(ss->TexObjects, texName);
841 }
842 else {
843 break;
844 }
jtgafb833d1999-08-19 00:55:39 +0000845 }
Brian Paulbb797902000-01-24 16:19:54 +0000846 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000847
Brian Paul8dfc5b92002-10-16 17:57:51 +0000848#if FEATURE_NV_vertex_program
Brian Paul30f51ae2001-12-18 04:06:44 +0000849 /* Free vertex programs */
850 while (1) {
Brian Paul610d5992003-01-14 04:55:45 +0000851 GLuint prog = _mesa_HashFirstEntry(ss->Programs);
Brian Paul30f51ae2001-12-18 04:06:44 +0000852 if (prog) {
Brian Paul451f3102003-04-17 01:48:19 +0000853 struct program *p = (struct program *) _mesa_HashLookup(ss->Programs,
854 prog);
855 ASSERT(p);
Brian Paul4d859f72004-01-23 18:57:05 +0000856 ctx->Driver.DeleteProgram(ctx, p);
Brian Paul451f3102003-04-17 01:48:19 +0000857 _mesa_HashRemove(ss->Programs, prog);
Brian Paul30f51ae2001-12-18 04:06:44 +0000858 }
859 else {
860 break;
861 }
862 }
Brian Paul610d5992003-01-14 04:55:45 +0000863 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000864#endif
Brian Paul21841f02004-08-14 14:28:11 +0000865#if FEATURE_ARB_vertex_program
866 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
867#endif
868#if FEATURE_ARB_fragment_program
869 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
870#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000871#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000872 _mesa_free(ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000873#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000874
Brian Paul21841f02004-08-14 14:28:11 +0000875#if FEATURE_ARB_vertex_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000876 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000877#endif
878
879 _mesa_DeleteHashTable (ss->GL2Objects);
880
881#if FEATURE_EXT_framebuffer_object
882 _mesa_DeleteHashTable(ss->FrameBuffers);
883 _mesa_DeleteHashTable(ss->RenderBuffers);
884#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000885
Keith Whitwelle15fd852002-12-12 13:03:15 +0000886 _glthread_DESTROY_MUTEX(ss->Mutex);
887
Brian Paulbd5cdaf1999-10-13 18:42:49 +0000888 FREE(ss);
jtgafb833d1999-08-19 00:55:39 +0000889}
890
891
Brian Paul4d859f72004-01-23 18:57:05 +0000892/**
893 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
894 */
895static void
896_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000897{
Brian Paul88bf0382004-02-13 15:30:08 +0000898 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000899
Keith Whitwell6dc85572003-07-17 13:43:59 +0000900 /* Current group */
901 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
902 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000903 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000904 /* special cases: */
905 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
906 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
907 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000908 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000909 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000910
Keith Whitwell6dc85572003-07-17 13:43:59 +0000911 ctx->Current.Index = 1;
912 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000913}
914
915
Brian Paul4d859f72004-01-23 18:57:05 +0000916/**
Brian Paul05051032005-11-01 04:36:33 +0000917 * Init vertex/fragment program native limits from logical limits.
918 */
919static void
920init_natives(struct gl_program_constants *prog)
921{
922 prog->MaxNativeInstructions = prog->MaxInstructions;
923 prog->MaxNativeAluInstructions = prog->MaxAluInstructions;
924 prog->MaxNativeTexInstructions = prog->MaxTexInstructions;
925 prog->MaxNativeTexIndirections = prog->MaxTexIndirections;
926 prog->MaxNativeAttribs = prog->MaxAttribs;
927 prog->MaxNativeTemps = prog->MaxTemps;
928 prog->MaxNativeAddressRegs = prog->MaxAddressRegs;
929 prog->MaxNativeParameters = prog->MaxParameters;
930}
931
932
933/**
Brian Paul4d859f72004-01-23 18:57:05 +0000934 * Initialize fields of gl_constants (aka ctx->Const.*).
935 * Use defaults from config.h. The device drivers will often override
936 * some of these values (such as number of texture units).
937 */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000938static void
939_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000940{
Brian Paul4d053dd2000-01-14 04:45:47 +0000941 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +0000942
Brian Paulcd1cefa2001-06-13 14:56:14 +0000943 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
944 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
945
Brian Paul53f82c52004-10-02 16:39:09 +0000946 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +0000947 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +0000948 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
949 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +0000950 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000951 ctx->Const.MaxTextureUnits = MAX_TEXTURE_UNITS;
Brian Paul610d5992003-01-14 04:55:45 +0000952 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
953 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Gareth Hughes2c3d34c2001-03-18 08:53:49 +0000954 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +0000955 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +0000956 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +0000957 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
958 ctx->Const.MinPointSize = MIN_POINT_SIZE;
959 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
960 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
961 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000962 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +0000963 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
964 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
965 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
966 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000967 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +0000968 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +0000969 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
970 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +0000971 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
972 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +0000973 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +0000974 ctx->Const.MaxSpotExponent = 128.0;
975 ctx->Const.MaxViewportWidth = MAX_WIDTH;
976 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +0000977#if FEATURE_ARB_vertex_program
Brian Paul05051032005-11-01 04:36:33 +0000978 ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
979 ctx->Const.VertexProgram.MaxAluInstructions = 0;
980 ctx->Const.VertexProgram.MaxTexInstructions = 0;
981 ctx->Const.VertexProgram.MaxTexIndirections = 0;
982 ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
983 ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
984 ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS;
985 ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
986 ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
987 ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
988 init_natives(&ctx->Const.VertexProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +0000989#endif
990#if FEATURE_ARB_fragment_program
Brian Paul05051032005-11-01 04:36:33 +0000991 ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
992 ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
993 ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
994 ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
995 ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
996 ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
997 ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
998 ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
999 ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1000 ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
1001 init_natives(&ctx->Const.FragmentProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001002#endif
Brian Pauledd67742003-04-18 18:02:43 +00001003 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
1004 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +00001005
Brian Paula2b9bad2003-11-10 19:08:37 +00001006 /* If we're running in the X server, do bounds checking to prevent
1007 * segfaults and server crashes!
1008 */
1009#if defined(XFree86LOADER) && defined(IN_MODULE)
1010 ctx->Const.CheckArrayBounds = GL_TRUE;
1011#else
1012 ctx->Const.CheckArrayBounds = GL_FALSE;
1013#endif
1014
Brian Paul05051032005-11-01 04:36:33 +00001015 /* GL_ARB_draw_buffers */
Brian Paul53f82c52004-10-02 16:39:09 +00001016 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1017
Brian Paul3deaa012005-02-07 05:08:24 +00001018 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001019 ctx->Const.ColorReadFormat = GL_RGBA;
1020 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1021
Brian Paul3deaa012005-02-07 05:08:24 +00001022#if FEATURE_EXT_framebuffer_object
1023 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1024 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1025#endif
1026
Brian Paul53f82c52004-10-02 16:39:09 +00001027 /* sanity checks */
Brian Paul92f97852003-05-01 22:44:02 +00001028 ASSERT(ctx->Const.MaxTextureUnits == MAX2(ctx->Const.MaxTextureImageUnits, ctx->Const.MaxTextureCoordUnits));
Brian Paul05051032005-11-01 04:36:33 +00001029 ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
1030 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001031}
jtgafb833d1999-08-19 00:55:39 +00001032
Brian Paul4d859f72004-01-23 18:57:05 +00001033
Keith Whitwell6dc85572003-07-17 13:43:59 +00001034/**
1035 * Initialize the attribute groups in a GL context.
1036 *
1037 * \param ctx GL context.
1038 *
1039 * Initializes all the attributes, calling the respective <tt>init*</tt>
1040 * functions for the more complex data structures.
1041 */
1042static GLboolean
1043init_attrib_groups( GLcontext *ctx )
1044{
1045 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001046
Keith Whitwell6dc85572003-07-17 13:43:59 +00001047 /* Constants */
1048 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001049
Brian Paul4d053dd2000-01-14 04:45:47 +00001050 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001051 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001052
Keith Whitwell6dc85572003-07-17 13:43:59 +00001053 /* Attribute Groups */
1054 _mesa_init_accum( ctx );
1055 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001056 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001057 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001058 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001059 _mesa_init_current( ctx );
1060 _mesa_init_depth( ctx );
1061 _mesa_init_debug( ctx );
1062 _mesa_init_display_list( ctx );
1063 _mesa_init_eval( ctx );
1064 _mesa_init_feedback( ctx );
1065 _mesa_init_fog( ctx );
1066 _mesa_init_histogram( ctx );
1067 _mesa_init_hint( ctx );
1068 _mesa_init_line( ctx );
1069 _mesa_init_lighting( ctx );
1070 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001071 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001072 _mesa_init_pixel( ctx );
1073 _mesa_init_point( ctx );
1074 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001075 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001076 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001077 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001078 _mesa_init_scissor( ctx );
Michal Krol9b3752c2005-01-13 14:08:47 +00001079 _mesa_init_shaderobjects (ctx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001080 _mesa_init_stencil( ctx );
1081 _mesa_init_transform( ctx );
1082 _mesa_init_varray( ctx );
1083 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001084
Keith Whitwell6dc85572003-07-17 13:43:59 +00001085 if (!_mesa_init_texture( ctx ))
1086 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001087
Brian Paul8f04c122004-04-27 13:39:20 +00001088 _mesa_init_texture_s3tc( ctx );
1089 _mesa_init_texture_fxt1( ctx );
1090
Brian Paul4d053dd2000-01-14 04:45:47 +00001091 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001092 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001093 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001094 ctx->_Facing = 0;
Brian Paul4d053dd2000-01-14 04:45:47 +00001095
Brian Paula3f13702003-04-01 16:41:50 +00001096 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001097}
1098
1099
Brian Paulf44898c2003-07-18 15:44:57 +00001100/**
Brian Paul21f69782004-11-27 05:05:32 +00001101 * This is the default function we plug into all dispatch table slots
1102 * This helps prevents a segfault when someone calls a GL function without
1103 * first checking if the extension's supported.
1104 */
1105static int
1106generic_nop(void)
1107{
1108 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1109 return 0;
1110}
1111
1112
1113/**
1114 * Allocate and initialize a new dispatch table.
1115 */
1116static struct _glapi_table *
1117alloc_dispatch_table(void)
1118{
1119 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1120 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1121 * Mesa we do this to accomodate different versions of libGL and various
1122 * DRI drivers.
1123 */
1124 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1125 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1126 struct _glapi_table *table =
1127 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1128 if (table) {
1129 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001130 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001131 for (i = 0; i < numEntries; i++) {
1132 entry[i] = (_glapi_proc) generic_nop;
1133 }
1134 }
1135 return table;
1136}
1137
1138
1139/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001140 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001141 *
1142 * This includes allocating all the other structs and arrays which hang off of
1143 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001144 * Note that the driver needs to pass in its dd_function_table here since
1145 * we need to at least call driverFunctions->NewTextureObject to create the
1146 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001147 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001148 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001149 *
1150 * Performs the imports and exports callback tables initialization, and
1151 * miscellaneous one-time initializations. If no shared context is supplied one
1152 * is allocated, and increase its reference count. Setups the GL API dispatch
1153 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1154 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1155 * for debug flags.
1156 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001157 * \param ctx the context to initialize
1158 * \param visual describes the visual attributes for this context
1159 * \param share_list points to context to share textures, display lists,
1160 * etc with, or NULL
1161 * \param driverFunctions table of device driver functions for this context
1162 * to use
1163 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001164 */
Brian Paul178a1c52000-04-22 01:05:00 +00001165GLboolean
1166_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001167 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001168 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001169 const struct dd_function_table *driverFunctions,
1170 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001171{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001172 ASSERT(driverContext);
1173 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001174 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001175
Brian Paul3c634522002-10-24 23:57:19 +00001176 /* If the driver wants core Mesa to use special imports, it'll have to
1177 * override these defaults.
1178 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001179 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001180
Brian Paul9a33a112002-06-13 04:28:29 +00001181 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001182 _mesa_init_default_exports( &(ctx->exports) );
1183
1184 /* misc one-time initializations */
1185 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001186
Brian Paulb1394fa2000-09-26 20:53:53 +00001187 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001188 ctx->DrawBuffer = NULL;
1189 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001190 ctx->WinSysDrawBuffer = NULL;
1191 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001192
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001193 /* Plug in driver functions and context pointer here.
1194 * This is important because when we call alloc_shared_state() below
1195 * we'll call ctx->Driver.NewTextureObject() to create the default
1196 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001197 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001198 ctx->Driver = *driverFunctions;
1199 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001200
jtgafb833d1999-08-19 00:55:39 +00001201 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001202 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001203 ctx->Shared = share_list->Shared;
1204 }
1205 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001206 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001207 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001208 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001209 }
1210 }
Brian Paul9560f052000-01-31 23:11:39 +00001211 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001212 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001213 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001214
Keith Whitwell6dc85572003-07-17 13:43:59 +00001215 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001216 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001217 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001218 }
jtgafb833d1999-08-19 00:55:39 +00001219
Brian Paul21f69782004-11-27 05:05:32 +00001220 /* setup the API dispatch tables */
1221 ctx->Exec = alloc_dispatch_table();
1222 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001223 if (!ctx->Exec || !ctx->Save) {
1224 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001225 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001226 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001227 }
Brian Paul21f69782004-11-27 05:05:32 +00001228 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001229 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001230#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001231 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001232 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001233 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001234 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001235 ctx->TnlModule.Current = NULL;
1236 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001237#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001238
Keith Whitwell47b29f52005-05-04 11:44:44 +00001239 ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001240 ctx->_UseTexEnvProgram = ctx->_MaintainTexEnvProgram;
1241
Keith Whitwell47b29f52005-05-04 11:44:44 +00001242 ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001243 if (ctx->_MaintainTnlProgram)
1244 ctx->_MaintainTexEnvProgram = 1; /* this is required... */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001245
Brian Paula96f8892005-09-13 01:19:29 +00001246 ctx->FirstTimeCurrent = GL_TRUE;
1247
Brian Paul4d053dd2000-01-14 04:45:47 +00001248 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001249}
1250
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001251
Brian Paulde4f4602003-07-03 02:15:06 +00001252/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001253 * Allocate and initialize a GLcontext structure.
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 initialize
1256 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001257 *
1258 * \param visual a GLvisual pointer (we copy the struct contents)
1259 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001260 * \param driverFunctions points to the dd_function_table into which the
1261 * driver has plugged in all its special functions.
1262 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001263 *
1264 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001265 */
Brian Paul178a1c52000-04-22 01:05:00 +00001266GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001267_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001268 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001269 const struct dd_function_table *driverFunctions,
1270 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001271
Brian Paul4d053dd2000-01-14 04:45:47 +00001272{
Brian Paul4753d602002-06-15 02:38:15 +00001273 GLcontext *ctx;
1274
1275 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001276 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001277
Brian Paul3c634522002-10-24 23:57:19 +00001278 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001279 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001280 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001281
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001282 if (_mesa_initialize_context(ctx, visual, share_list,
1283 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001284 return ctx;
1285 }
1286 else {
Brian Paul3c634522002-10-24 23:57:19 +00001287 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001288 return NULL;
1289 }
1290}
1291
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001292
Keith Whitwell6dc85572003-07-17 13:43:59 +00001293/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001294 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001295 *
1296 * But doesn't free the GLcontext struct itself.
1297 *
1298 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001299 */
Brian Paul178a1c52000-04-22 01:05:00 +00001300void
Brian Paulb1394fa2000-09-26 20:53:53 +00001301_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001302{
Brian Paul4d053dd2000-01-14 04:45:47 +00001303 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001304 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001305 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001306 }
1307
Keith Whitwell6dc85572003-07-17 13:43:59 +00001308 _mesa_free_lighting_data( ctx );
1309 _mesa_free_eval_data( ctx );
1310 _mesa_free_texture_data( ctx );
1311 _mesa_free_matrix_data( ctx );
1312 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001313 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001314 _mesa_free_program_data(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001315 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001316
1317#if FEATURE_ARB_vertex_buffer_object
1318 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001319#endif
Brian Paulfd284452001-07-19 15:54:34 +00001320
Brian Paul65a66f52004-11-27 22:47:59 +00001321 /* free dispatch tables */
1322 _mesa_free(ctx->Exec);
1323 _mesa_free(ctx->Save);
1324
Brian Paul30f51ae2001-12-18 04:06:44 +00001325 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001326 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001327 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001328 assert(ctx->Shared->RefCount >= 0);
1329 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1330 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001331 /* free shared state */
1332 free_shared_state( ctx, ctx->Shared );
1333 }
1334
Brian Paul702ca202003-07-18 15:22:16 +00001335 if (ctx->Extensions.String)
1336 FREE((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001337}
1338
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001339
Keith Whitwell6dc85572003-07-17 13:43:59 +00001340/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001341 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001342 *
1343 * \param ctx GL context.
1344 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001345 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001346 */
Brian Paul178a1c52000-04-22 01:05:00 +00001347void
Brian Paulb1394fa2000-09-26 20:53:53 +00001348_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001349{
1350 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001351 _mesa_free_context_data(ctx);
Brian Paulbd5cdaf1999-10-13 18:42:49 +00001352 FREE( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001353 }
1354}
1355
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001356
Keith Whitwell6dc85572003-07-17 13:43:59 +00001357#if _HAVE_FULL_GL
1358/**
jtgafb833d1999-08-19 00:55:39 +00001359 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001360 *
1361 * \param src source context
1362 * \param dst destination context
1363 * \param mask bitwise OR of GL_*_BIT flags
1364 *
1365 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001366 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001367 * memcpy is not enough due to the existence of internal pointers in their data
1368 * structures.
jtgafb833d1999-08-19 00:55:39 +00001369 */
Brian Paul178a1c52000-04-22 01:05:00 +00001370void
Brian Paulb1394fa2000-09-26 20:53:53 +00001371_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001372{
1373 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001374 /* OK to memcpy */
1375 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001376 }
1377 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001378 /* OK to memcpy */
1379 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001380 }
1381 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001382 /* OK to memcpy */
1383 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001384 }
1385 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001386 /* OK to memcpy */
1387 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001388 }
1389 if (mask & GL_ENABLE_BIT) {
1390 /* no op */
1391 }
1392 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001393 /* OK to memcpy */
1394 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001395 }
1396 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001397 /* OK to memcpy */
1398 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001399 }
1400 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001401 /* OK to memcpy */
1402 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001403 }
1404 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001405 GLuint i;
1406 /* begin with memcpy */
1407 MEMCPY( &dst->Light, &src->Light, sizeof(struct gl_light) );
1408 /* fixup linked lists to prevent pointer insanity */
1409 make_empty_list( &(dst->Light.EnabledList) );
1410 for (i = 0; i < MAX_LIGHTS; i++) {
1411 if (dst->Light.Light[i].Enabled) {
1412 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1413 }
1414 }
jtgafb833d1999-08-19 00:55:39 +00001415 }
1416 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001417 /* OK to memcpy */
1418 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001419 }
1420 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001421 /* OK to memcpy */
1422 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001423 }
1424 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001425 /* OK to memcpy */
1426 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001427 }
1428 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001429 /* OK to memcpy */
1430 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001431 }
1432 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001433 /* OK to memcpy */
1434 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001435 }
1436 if (mask & GL_POLYGON_STIPPLE_BIT) {
1437 /* Use loop instead of MEMCPY due to problem with Portland Group's
1438 * C compiler. Reported by John Stone.
1439 */
Brian Paul85d81602002-06-17 23:36:31 +00001440 GLuint i;
1441 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001442 dst->PolygonStipple[i] = src->PolygonStipple[i];
1443 }
1444 }
1445 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001446 /* OK to memcpy */
1447 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001448 }
1449 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001450 /* OK to memcpy */
1451 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001452 }
1453 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001454 /* Cannot memcpy because of pointers */
1455 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001456 }
1457 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001458 /* OK to memcpy */
1459 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001460 }
1461 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001462 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1463 dst->Viewport.X = src->Viewport.X;
1464 dst->Viewport.Y = src->Viewport.Y;
1465 dst->Viewport.Width = src->Viewport.Width;
1466 dst->Viewport.Height = src->Viewport.Height;
1467 dst->Viewport.Near = src->Viewport.Near;
1468 dst->Viewport.Far = src->Viewport.Far;
1469 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001470 }
Brian Paul85d81602002-06-17 23:36:31 +00001471
Keith Whitwella96308c2000-10-30 13:31:59 +00001472 /* XXX FIXME: Call callbacks?
1473 */
1474 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001475}
Keith Whitwell23caf202000-11-16 21:05:34 +00001476#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001477
1478
Brian Paulb1d53d92003-06-11 18:48:19 +00001479/**
1480 * Check if the given context can render into the given framebuffer
1481 * by checking visual attributes.
1482 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1483 */
1484static GLboolean
1485check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1486{
1487 const GLvisual *ctxvis = &ctx->Visual;
1488 const GLvisual *bufvis = &buffer->Visual;
1489
1490 if (ctxvis == bufvis)
1491 return GL_TRUE;
1492
1493 if (ctxvis->rgbMode != bufvis->rgbMode)
1494 return GL_FALSE;
1495 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1496 return GL_FALSE;
1497 if (ctxvis->stereoMode && !bufvis->stereoMode)
1498 return GL_FALSE;
1499 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1500 return GL_FALSE;
1501 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1502 return GL_FALSE;
1503 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1504 return GL_FALSE;
1505 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1506 return GL_FALSE;
1507 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1508 return GL_FALSE;
1509 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1510 return GL_FALSE;
1511 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1512 return GL_FALSE;
1513 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1514 return GL_FALSE;
1515
1516 return GL_TRUE;
1517}
1518
1519
Keith Whitwell6dc85572003-07-17 13:43:59 +00001520/**
Brian Paula702bbf2005-09-14 03:11:36 +00001521 * Do one-time initialization for the given framebuffer. Specifically,
1522 * ask the driver for the window's current size and update the framebuffer
1523 * object to match.
1524 * Really, the device driver should totally take care of this.
1525 */
1526static void
1527initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1528{
1529 GLuint width, height;
1530 ASSERT(ctx->Driver.GetBufferSize);
1531 ctx->Driver.GetBufferSize(fb, &width, &height);
1532 if (ctx->Driver.ResizeBuffers)
1533 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1534 fb->Initialized = GL_TRUE;
1535}
1536
1537
1538/**
1539 * Bind the given context to the given drawBuffer and readBuffer and
1540 * make it the current context for the calling thread.
1541 * We'll render into the drawBuffer and read pixels from the
1542 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001543 *
Brian Paula702bbf2005-09-14 03:11:36 +00001544 * We check that the context's and framebuffer's visuals are compatible
1545 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001546 *
Brian Paula702bbf2005-09-14 03:11:36 +00001547 * \param newCtx the new GL context. If NULL then there will be no current GL
1548 * context.
1549 * \param drawBuffer the drawing framebuffer
1550 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001551 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001552void
Brian Paule4b23562005-05-04 20:11:35 +00001553_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1554 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001555{
Keith Whitwell5c728372005-05-12 10:22:29 +00001556 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001557 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001558
Brian Paulbe3602d2001-02-28 00:27:48 +00001559 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001560 */
Brian Paulb1d53d92003-06-11 18:48:19 +00001561 if (newCtx && drawBuffer && newCtx->DrawBuffer != drawBuffer) {
1562 if (!check_compatible(newCtx, drawBuffer))
1563 return;
1564 }
1565 if (newCtx && readBuffer && newCtx->ReadBuffer != readBuffer) {
1566 if (!check_compatible(newCtx, readBuffer))
1567 return;
Brian Paulbe3602d2001-02-28 00:27:48 +00001568 }
1569
Ian Romanick967b0062005-08-10 23:54:15 +00001570#if !defined(IN_DRI_DRIVER)
Brian Paul00037781999-12-17 14:52:35 +00001571 /* We call this function periodically (just here for now) in
Ian Romanick967b0062005-08-10 23:54:15 +00001572 * order to detect when multithreading has begun. In a DRI driver, this
1573 * step is done by the driver loader (e.g., libGL).
Brian Paul00037781999-12-17 14:52:35 +00001574 */
1575 _glapi_check_multithread();
Ian Romanick967b0062005-08-10 23:54:15 +00001576#endif /* !defined(IN_DRI_DRIVER) */
Brian Paul00037781999-12-17 14:52:35 +00001577
Brian Paulf9b97d92000-01-28 20:17:42 +00001578 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001579 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001580
Keith Whitwell23caf202000-11-16 21:05:34 +00001581 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001582 _glapi_set_dispatch(NULL); /* none current */
1583 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001584 else {
1585 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001586
Keith Whitwell23caf202000-11-16 21:05:34 +00001587 if (drawBuffer && readBuffer) {
1588 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001589
Brian Paule4b23562005-05-04 20:11:35 +00001590 ASSERT(drawBuffer->Name == 0);
1591 ASSERT(readBuffer->Name == 0);
1592 newCtx->WinSysDrawBuffer = drawBuffer;
1593 newCtx->WinSysReadBuffer = readBuffer;
1594 /* don't replace user-buffer bindings with window system buffer */
1595 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1596 newCtx->DrawBuffer = drawBuffer;
1597 newCtx->ReadBuffer = readBuffer;
1598 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001599
Keith Whitwell23caf202000-11-16 21:05:34 +00001600 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001601
Keith Whitwell6dc85572003-07-17 13:43:59 +00001602#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001603 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001604 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001605 }
Brian Paul65a66f52004-11-27 22:47:59 +00001606 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001607 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001608 }
Keith Whitwell6dc85572003-07-17 13:43:59 +00001609#endif
Brian Paul65a66f52004-11-27 22:47:59 +00001610 if (newCtx->FirstTimeCurrent) {
1611 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001612 _mesa_set_viewport(newCtx, 0, 0,
1613 drawBuffer->Width, drawBuffer->Height);
Keith Whitwell1d43e722005-12-30 13:02:27 +00001614
1615 _mesa_set_scissor(newCtx, 0, 0,
1616 drawBuffer->Width,
1617 drawBuffer->Height );
Brian Paul65a66f52004-11-27 22:47:59 +00001618 }
Brian Paul00037781999-12-17 14:52:35 +00001619 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001620
Keith Whitwell23caf202000-11-16 21:05:34 +00001621 /* We can use this to help debug user's problems. Tell them to set
1622 * the MESA_INFO env variable before running their app. Then the
1623 * first time each context is made current we'll print some useful
1624 * information.
1625 */
1626 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001627 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001628 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001629 }
1630 newCtx->FirstTimeCurrent = GL_FALSE;
1631 }
Brian Paul00037781999-12-17 14:52:35 +00001632 }
1633}
1634
Brian Paul635ee2d2005-04-15 17:25:07 +00001635
1636/**
1637 * Make context 'ctx' share the display lists, textures and programs
1638 * that are associated with 'ctxToShare'.
1639 * Any display lists, textures or programs associated with 'ctx' will
1640 * be deleted if nobody else is sharing them.
1641 */
1642GLboolean
1643_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1644{
1645 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1646 ctx->Shared->RefCount--;
1647 if (ctx->Shared->RefCount == 0) {
1648 free_shared_state(ctx, ctx->Shared);
1649 }
1650 ctx->Shared = ctxToShare->Shared;
1651 ctx->Shared->RefCount++;
1652 return GL_TRUE;
1653 }
1654 else {
1655 return GL_FALSE;
1656 }
1657}
1658
1659
1660
Keith Whitwell6dc85572003-07-17 13:43:59 +00001661/**
1662 * Get current context for the calling thread.
1663 *
1664 * \return pointer to the current GL context.
1665 *
1666 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1667 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001668 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001669GLcontext *
1670_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001671{
Brian Paulf9b97d92000-01-28 20:17:42 +00001672 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001673}
1674
Keith Whitwell6dc85572003-07-17 13:43:59 +00001675/**
1676 * Get context's current API dispatch table.
1677 *
1678 * It'll either be the immediate-mode execute dispatcher or the display list
1679 * compile dispatcher.
1680 *
1681 * \param ctx GL context.
1682 *
1683 * \return pointer to dispatch_table.
1684 *
1685 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001686 */
1687struct _glapi_table *
1688_mesa_get_dispatch(GLcontext *ctx)
1689{
1690 return ctx->CurrentDispatch;
1691}
1692
Keith Whitwell6dc85572003-07-17 13:43:59 +00001693/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001694
1695
jtgafb833d1999-08-19 00:55:39 +00001696/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001697/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001698/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001699/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001700
Keith Whitwell6dc85572003-07-17 13:43:59 +00001701/**
1702 * Record an error.
1703 *
1704 * \param ctx GL context.
1705 * \param error error code.
1706 *
1707 * Records the given error code and call the driver's dd_function_table::Error
1708 * function if defined.
1709 *
1710 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001711 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001712 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001713void
Brian Paul4e9676f2002-06-29 19:48:15 +00001714_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001715{
Brian Paul18a285a2002-03-16 00:53:15 +00001716 if (!ctx)
1717 return;
1718
Brian Paul7eb06032000-07-14 04:13:40 +00001719 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001720 ctx->ErrorValue = error;
1721 }
1722
1723 /* Call device driver's error handler, if any. This is used on the Mac. */
1724 if (ctx->Driver.Error) {
1725 (*ctx->Driver.Error)( ctx );
1726 }
1727}
1728
Keith Whitwell6dc85572003-07-17 13:43:59 +00001729/**
1730 * Execute glFinish().
1731 *
1732 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1733 * dd_function_table::Finish driver callback, if not NULL.
1734 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001735void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001736_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001737{
Brian Paulfa9df402000-02-02 19:16:46 +00001738 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001739 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001740 if (ctx->Driver.Finish) {
1741 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001742 }
1743}
1744
Keith Whitwell6dc85572003-07-17 13:43:59 +00001745/**
1746 * Execute glFlush().
1747 *
1748 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1749 * dd_function_table::Flush driver callback, if not NULL.
1750 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001751void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001752_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001753{
Brian Paulfa9df402000-02-02 19:16:46 +00001754 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001755 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001756 if (ctx->Driver.Flush) {
1757 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001758 }
jtgafb833d1999-08-19 00:55:39 +00001759}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001760
1761
Keith Whitwell6dc85572003-07-17 13:43:59 +00001762/*@}*/