blob: e7146cf9b1fe44da13933ed0bd8b5cde7fcf445e [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"
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 Paulc7e164f2006-06-30 15:44:30 +0000481 GLvisual *vis = (GLvisual *) _mesa_calloc(sizeof(GLvisual));
Brian Paul178a1c52000-04-22 01:05:00 +0000482 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 Paulc7e164f2006-06-30 15:44:30 +0000489 _mesa_free(vis);
Brian Paul178a1c52000-04-22 01:05:00 +0000490 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{
Brian Paulc7e164f2006-06-30 15:44:30 +0000579 _mesa_free(vis);
Brian Paulb371e0d2000-03-31 01:05:51 +0000580}
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 *
Brian Paula764b7e2006-02-26 17:16:37 +0000608 * \sa _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
Keith Whitwell6dc85572003-07-17 13:43:59 +0000627#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000628 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000629
630 for (i = 0; i < 256; i++) {
631 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
632 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000633#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000634
davem69775355a2001-06-05 23:54:00 +0000635#ifdef USE_SPARC_ASM
636 _mesa_init_sparc_glapi_relocs();
637#endif
Brian Paul3c634522002-10-24 23:57:19 +0000638 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000639 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000640 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000641 }
642 else {
643 _glapi_noop_enable_warnings(GL_FALSE);
644 }
645
jtgafb833d1999-08-19 00:55:39 +0000646#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000647 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
648 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000649#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000650
651 alreadyCalled = GL_TRUE;
652 }
Brian Paul9560f052000-01-31 23:11:39 +0000653 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000654}
655
Brian Paul894844a2004-03-21 17:05:03 +0000656
Keith Whitwell6dc85572003-07-17 13:43:59 +0000657/**
jtgafb833d1999-08-19 00:55:39 +0000658 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000659 * Initializes the display list, texture objects and vertex programs hash
660 * tables, allocates the texture objects. If it runs out of memory, frees
661 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000662 *
663 * \return pointer to a gl_shared_state structure on success, or NULL on
664 * failure.
jtgafb833d1999-08-19 00:55:39 +0000665 */
Brian Paula3f13702003-04-01 16:41:50 +0000666static GLboolean
667alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000668{
Brian Paula3f13702003-04-01 16:41:50 +0000669 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000670 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000671 return GL_FALSE;
672
673 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000674
Brian Paule4b684c2000-09-12 21:07:40 +0000675 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000676
Brian Paule4b684c2000-09-12 21:07:40 +0000677 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000678 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000679#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000680 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000681#endif
jtgafb833d1999-08-19 00:55:39 +0000682
Brian Paul451f3102003-04-17 01:48:19 +0000683#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000684 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000685 if (!ss->DefaultVertexProgram)
686 goto cleanup;
687#endif
688#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000689 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000690 if (!ss->DefaultFragmentProgram)
691 goto cleanup;
692#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000693#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000694 ss->ATIShaders = _mesa_NewHashTable();
695 ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000696 if (!ss->DefaultFragmentShader)
697 goto cleanup;
698#endif
Brian Paul451f3102003-04-17 01:48:19 +0000699
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000700#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulddc82ee2005-02-05 19:56:45 +0000701 ss->BufferObjects = _mesa_NewHashTable();
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000702#endif
703
Ian Romanickee34e6e2006-06-12 16:26:29 +0000704 ss->ArrayObjects = _mesa_NewHashTable();
Brian Paulddc82ee2005-02-05 19:56:45 +0000705
Michal Krol9b3752c2005-01-13 14:08:47 +0000706 ss->GL2Objects = _mesa_NewHashTable ();
Ian Romanick0207b472003-09-09 00:10:12 +0000707
Brian Paula3f13702003-04-01 16:41:50 +0000708 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
709 if (!ss->Default1D)
710 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000711
Brian Paula3f13702003-04-01 16:41:50 +0000712 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
713 if (!ss->Default2D)
714 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000715
Brian Paula3f13702003-04-01 16:41:50 +0000716 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
717 if (!ss->Default3D)
718 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000719
Brian Paula3f13702003-04-01 16:41:50 +0000720 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
721 if (!ss->DefaultCubeMap)
722 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000723
Brian Paula3f13702003-04-01 16:41:50 +0000724 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
725 if (!ss->DefaultRect)
726 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000727
Brian Paula3f13702003-04-01 16:41:50 +0000728 /* Effectively bind the default textures to all texture units */
729 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
730 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
731 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
732 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
733 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
734
Brian Paulddc82ee2005-02-05 19:56:45 +0000735#if FEATURE_EXT_framebuffer_object
736 ss->FrameBuffers = _mesa_NewHashTable();
737 if (!ss->FrameBuffers)
738 goto cleanup;
739 ss->RenderBuffers = _mesa_NewHashTable();
740 if (!ss->RenderBuffers)
741 goto cleanup;
742#endif
743
744
Brian Paula3f13702003-04-01 16:41:50 +0000745 return GL_TRUE;
746
747 cleanup:
748 /* Ran out of memory at some point. Free everything and return NULL */
749 if (ss->DisplayList)
750 _mesa_DeleteHashTable(ss->DisplayList);
751 if (ss->TexObjects)
752 _mesa_DeleteHashTable(ss->TexObjects);
753#if FEATURE_NV_vertex_program
754 if (ss->Programs)
755 _mesa_DeleteHashTable(ss->Programs);
756#endif
Brian Paul451f3102003-04-17 01:48:19 +0000757#if FEATURE_ARB_vertex_program
758 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000759 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000760#endif
761#if FEATURE_ARB_fragment_program
762 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000763 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000764#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000765#if FEATURE_ATI_fragment_shader
766 if (ss->DefaultFragmentShader)
Brian Paul63d68302005-11-19 16:43:04 +0000767 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000768#endif
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000769#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000770 if (ss->BufferObjects)
771 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000772#endif
773
774 if (ss->GL2Objects)
Michal Krol9b3752c2005-01-13 14:08:47 +0000775 _mesa_DeleteHashTable (ss->GL2Objects);
Ian Romanick0207b472003-09-09 00:10:12 +0000776
Brian Paulddc82ee2005-02-05 19:56:45 +0000777#if FEATURE_EXT_framebuffer_object
778 if (ss->FrameBuffers)
779 _mesa_DeleteHashTable(ss->FrameBuffers);
780 if (ss->RenderBuffers)
781 _mesa_DeleteHashTable(ss->RenderBuffers);
782#endif
783
Brian Paula3f13702003-04-01 16:41:50 +0000784 if (ss->Default1D)
785 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
786 if (ss->Default2D)
787 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
788 if (ss->Default3D)
789 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
790 if (ss->DefaultCubeMap)
791 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
792 if (ss->DefaultRect)
793 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
794 if (ss)
795 _mesa_free(ss);
796 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000797}
798
Brian Paulc7e164f2006-06-30 15:44:30 +0000799
Keith Whitwell6dc85572003-07-17 13:43:59 +0000800/**
Brian Paulc7e164f2006-06-30 15:44:30 +0000801 * Callback for deleting a display list. Called by _mesa_HashDeleteAll().
802 */
803static void
804delete_displaylist_cb(GLuint id, void *data, void *userData)
805{
806 struct mesa_display_list *list = (struct mesa_display_list *) data;
807 GLcontext *ctx = (GLcontext *) userData;
808 _mesa_delete_list(ctx, list);
809}
810
811/**
812 * Callback for deleting a texture object. Called by _mesa_HashDeleteAll().
813 */
814static void
815delete_texture_cb(GLuint id, void *data, void *userData)
816{
817 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
818 GLcontext *ctx = (GLcontext *) userData;
819 ctx->Driver.DeleteTexture(ctx, texObj);
820}
821
822/**
823 * Callback for deleting a program object. Called by _mesa_HashDeleteAll().
824 */
825static void
826delete_program_cb(GLuint id, void *data, void *userData)
827{
828 struct program *prog = (struct program *) data;
829 GLcontext *ctx = (GLcontext *) userData;
830 ctx->Driver.DeleteProgram(ctx, prog);
831}
832
833/**
834 * Callback for deleting an ATI fragment shader object.
835 * Called by _mesa_HashDeleteAll().
836 */
837static void
838delete_fragshader_cb(GLuint id, void *data, void *userData)
839{
840 struct ati_fragment_shader *shader = (struct ati_fragment_shader *) data;
841 GLcontext *ctx = (GLcontext *) userData;
842 _mesa_delete_ati_fragment_shader(ctx, shader);
843}
844
845/**
846 * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll().
847 */
848static void
849delete_bufferobj_cb(GLuint id, void *data, void *userData)
850{
851 struct gl_buffer_object *bufObj = (struct gl_buffer_object *) data;
852 GLcontext *ctx = (GLcontext *) userData;
853 ctx->Driver.DeleteBuffer(ctx, bufObj);
854}
855
856
857/**
858 * Deallocate a shared state object and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000859 *
860 * \param ctx GL context.
861 * \param ss shared state pointer.
862 *
863 * Frees the display lists, the texture objects (calling the driver texture
864 * deletion callback to free its private data) and the vertex programs, as well
865 * as their hash tables.
866 *
867 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000868 */
Brian Paul178a1c52000-04-22 01:05:00 +0000869static void
870free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000871{
Brian Paulc7e164f2006-06-30 15:44:30 +0000872 /*
873 * Free display lists
874 */
875 _mesa_HashDeleteAll(ss->DisplayList, delete_displaylist_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000876 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000877
Brian Paulc7e164f2006-06-30 15:44:30 +0000878 /*
879 * Free texture objects
880 */
Brian Paula3f13702003-04-01 16:41:50 +0000881 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000882 /* the default textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000883 ctx->Driver.DeleteTexture(ctx, ss->Default1D);
884 ctx->Driver.DeleteTexture(ctx, ss->Default2D);
885 ctx->Driver.DeleteTexture(ctx, ss->Default3D);
886 ctx->Driver.DeleteTexture(ctx, ss->DefaultCubeMap);
887 ctx->Driver.DeleteTexture(ctx, ss->DefaultRect);
Brian Paul21841f02004-08-14 14:28:11 +0000888 /* all other textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000889 _mesa_HashDeleteAll(ss->TexObjects, delete_texture_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000890 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000891
Brian Paul1096eae2006-01-16 16:35:13 +0000892#if defined(FEATURE_NV_vertex_program) || defined(FEATURE_NV_fragment_program)
Brian Paulc7e164f2006-06-30 15:44:30 +0000893 _mesa_HashDeleteAll(ss->Programs, delete_program_cb, ctx);
Brian Paul610d5992003-01-14 04:55:45 +0000894 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000895#endif
Brian Paul21841f02004-08-14 14:28:11 +0000896#if FEATURE_ARB_vertex_program
897 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
898#endif
899#if FEATURE_ARB_fragment_program
900 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
901#endif
Brian Paul1096eae2006-01-16 16:35:13 +0000902
Dave Airlie7f752fe2004-12-19 03:06:59 +0000903#if FEATURE_ATI_fragment_shader
Brian Paulc7e164f2006-06-30 15:44:30 +0000904 _mesa_HashDeleteAll(ss->ATIShaders, delete_fragshader_cb, ctx);
Brian Paul1096eae2006-01-16 16:35:13 +0000905 _mesa_DeleteHashTable(ss->ATIShaders);
906 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000907#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000908
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000909#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulc7e164f2006-06-30 15:44:30 +0000910 _mesa_HashDeleteAll(ss->BufferObjects, delete_bufferobj_cb, ctx);
Ian Romanick0207b472003-09-09 00:10:12 +0000911 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000912#endif
913
Brian Paul1096eae2006-01-16 16:35:13 +0000914#if FEATURE_ARB_shader_objects
Brian Paulc7e164f2006-06-30 15:44:30 +0000915 _mesa_DeleteHashTable(ss->GL2Objects);
Brian Paul1096eae2006-01-16 16:35:13 +0000916#endif
Brian Paulddc82ee2005-02-05 19:56:45 +0000917
918#if FEATURE_EXT_framebuffer_object
919 _mesa_DeleteHashTable(ss->FrameBuffers);
920 _mesa_DeleteHashTable(ss->RenderBuffers);
921#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000922
Keith Whitwelle15fd852002-12-12 13:03:15 +0000923 _glthread_DESTROY_MUTEX(ss->Mutex);
924
Brian Paulc7e164f2006-06-30 15:44:30 +0000925 _mesa_free(ss);
jtgafb833d1999-08-19 00:55:39 +0000926}
927
928
Brian Paul4d859f72004-01-23 18:57:05 +0000929/**
930 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
931 */
932static void
933_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000934{
Brian Paul88bf0382004-02-13 15:30:08 +0000935 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000936
Brian Paul94b30dc2006-04-25 00:53:25 +0000937 /* Init all to (0,0,0,1) */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000938 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
939 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000940 }
Brian Paul94b30dc2006-04-25 00:53:25 +0000941
942 /* redo special cases: */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000943 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
944 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
945 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000946 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000947 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul94b30dc2006-04-25 00:53:25 +0000948 ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX][0] = 1.0;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000949 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000950}
951
952
Brian Paul4d859f72004-01-23 18:57:05 +0000953/**
Brian Paul05051032005-11-01 04:36:33 +0000954 * Init vertex/fragment program native limits from logical limits.
955 */
956static void
957init_natives(struct gl_program_constants *prog)
958{
959 prog->MaxNativeInstructions = prog->MaxInstructions;
960 prog->MaxNativeAluInstructions = prog->MaxAluInstructions;
961 prog->MaxNativeTexInstructions = prog->MaxTexInstructions;
962 prog->MaxNativeTexIndirections = prog->MaxTexIndirections;
963 prog->MaxNativeAttribs = prog->MaxAttribs;
964 prog->MaxNativeTemps = prog->MaxTemps;
965 prog->MaxNativeAddressRegs = prog->MaxAddressRegs;
966 prog->MaxNativeParameters = prog->MaxParameters;
967}
968
969
970/**
Brian Paul4d859f72004-01-23 18:57:05 +0000971 * Initialize fields of gl_constants (aka ctx->Const.*).
972 * Use defaults from config.h. The device drivers will often override
973 * some of these values (such as number of texture units).
974 */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000975static void
976_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000977{
Brian Paul4d053dd2000-01-14 04:45:47 +0000978 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +0000979
Brian Paulcd1cefa2001-06-13 14:56:14 +0000980 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
981 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
982
Brian Paulda238ee2006-04-13 19:21:58 +0000983 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_COORD_UNITS);
984 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_IMAGE_UNITS);
985
Brian Paul53f82c52004-10-02 16:39:09 +0000986 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +0000987 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +0000988 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
989 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +0000990 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul610d5992003-01-14 04:55:45 +0000991 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
992 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Brian Paulda238ee2006-04-13 19:21:58 +0000993 ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits,
994 ctx->Const.MaxTextureImageUnits);
Gareth Hughes2c3d34c2001-03-18 08:53:49 +0000995 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +0000996 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +0000997 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +0000998 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
999 ctx->Const.MinPointSize = MIN_POINT_SIZE;
1000 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
1001 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
1002 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001003 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +00001004 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
1005 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
1006 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
1007 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001008 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +00001009 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +00001010 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
1011 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +00001012 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
1013 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +00001014 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +00001015 ctx->Const.MaxSpotExponent = 128.0;
1016 ctx->Const.MaxViewportWidth = MAX_WIDTH;
1017 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +00001018#if FEATURE_ARB_vertex_program
Brian Paul05051032005-11-01 04:36:33 +00001019 ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
1020 ctx->Const.VertexProgram.MaxAluInstructions = 0;
1021 ctx->Const.VertexProgram.MaxTexInstructions = 0;
1022 ctx->Const.VertexProgram.MaxTexIndirections = 0;
1023 ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
1024 ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
1025 ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS;
1026 ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1027 ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
1028 ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
1029 init_natives(&ctx->Const.VertexProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001030#endif
1031#if FEATURE_ARB_fragment_program
Brian Paul05051032005-11-01 04:36:33 +00001032 ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
1033 ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
1034 ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
1035 ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
1036 ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
1037 ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
1038 ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1039 ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1040 ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1041 ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
1042 init_natives(&ctx->Const.FragmentProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001043#endif
Brian Pauledd67742003-04-18 18:02:43 +00001044 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
1045 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +00001046
Brian Paula2b9bad2003-11-10 19:08:37 +00001047 /* If we're running in the X server, do bounds checking to prevent
1048 * segfaults and server crashes!
1049 */
1050#if defined(XFree86LOADER) && defined(IN_MODULE)
1051 ctx->Const.CheckArrayBounds = GL_TRUE;
1052#else
1053 ctx->Const.CheckArrayBounds = GL_FALSE;
1054#endif
1055
Brian Paul05051032005-11-01 04:36:33 +00001056 /* GL_ARB_draw_buffers */
Brian Paul53f82c52004-10-02 16:39:09 +00001057 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1058
Brian Paul3deaa012005-02-07 05:08:24 +00001059 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001060 ctx->Const.ColorReadFormat = GL_RGBA;
1061 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1062
Brian Paul3deaa012005-02-07 05:08:24 +00001063#if FEATURE_EXT_framebuffer_object
1064 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1065 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1066#endif
1067
Brian Paul53f82c52004-10-02 16:39:09 +00001068 /* sanity checks */
Brian Paulda238ee2006-04-13 19:21:58 +00001069 ASSERT(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.MaxTextureImageUnits,
1070 ctx->Const.MaxTextureCoordUnits));
Brian Paul05051032005-11-01 04:36:33 +00001071 ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
1072 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001073}
jtgafb833d1999-08-19 00:55:39 +00001074
Brian Paul4d859f72004-01-23 18:57:05 +00001075
Keith Whitwell6dc85572003-07-17 13:43:59 +00001076/**
Brian Paul5e2e96b2006-05-15 15:26:04 +00001077 * Do some sanity checks on the limits/constants for the given context.
1078 * Only called the first time a context is bound.
1079 */
1080static void
1081check_context_limits(GLcontext *ctx)
1082{
1083 /* Many context limits/constants are limited by the size of
1084 * internal arrays.
1085 */
1086 assert(ctx->Const.MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS);
1087 assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS);
1088 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS);
1089 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS);
1090
1091 assert(ctx->Const.MaxViewportWidth <= MAX_WIDTH);
1092 assert(ctx->Const.MaxViewportHeight <= MAX_WIDTH);
1093
1094 /* make sure largest texture image is <= MAX_WIDTH in size */
1095 assert((1 << (ctx->Const.MaxTextureLevels -1 )) <= MAX_WIDTH);
1096 assert((1 << (ctx->Const.MaxCubeTextureLevels -1 )) <= MAX_WIDTH);
1097 assert((1 << (ctx->Const.Max3DTextureLevels -1 )) <= MAX_WIDTH);
1098
1099 assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS);
1100
1101 /* XXX probably add more tests */
1102}
1103
1104
1105/**
Keith Whitwell6dc85572003-07-17 13:43:59 +00001106 * Initialize the attribute groups in a GL context.
1107 *
1108 * \param ctx GL context.
1109 *
1110 * Initializes all the attributes, calling the respective <tt>init*</tt>
1111 * functions for the more complex data structures.
1112 */
1113static GLboolean
1114init_attrib_groups( GLcontext *ctx )
1115{
1116 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001117
Keith Whitwell6dc85572003-07-17 13:43:59 +00001118 /* Constants */
1119 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001120
Brian Paul4d053dd2000-01-14 04:45:47 +00001121 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001122 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001123
Keith Whitwell6dc85572003-07-17 13:43:59 +00001124 /* Attribute Groups */
1125 _mesa_init_accum( ctx );
1126 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001127 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001128 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001129 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001130 _mesa_init_current( ctx );
1131 _mesa_init_depth( ctx );
1132 _mesa_init_debug( ctx );
1133 _mesa_init_display_list( ctx );
1134 _mesa_init_eval( ctx );
1135 _mesa_init_feedback( ctx );
1136 _mesa_init_fog( ctx );
1137 _mesa_init_histogram( ctx );
1138 _mesa_init_hint( ctx );
1139 _mesa_init_line( ctx );
1140 _mesa_init_lighting( ctx );
1141 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001142 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001143 _mesa_init_pixel( ctx );
1144 _mesa_init_point( ctx );
1145 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001146 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001147 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001148 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001149 _mesa_init_scissor( ctx );
Michal Krol9b3752c2005-01-13 14:08:47 +00001150 _mesa_init_shaderobjects (ctx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001151 _mesa_init_stencil( ctx );
1152 _mesa_init_transform( ctx );
1153 _mesa_init_varray( ctx );
1154 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001155
Keith Whitwell6dc85572003-07-17 13:43:59 +00001156 if (!_mesa_init_texture( ctx ))
1157 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001158
Brian Paul8f04c122004-04-27 13:39:20 +00001159 _mesa_init_texture_s3tc( ctx );
1160 _mesa_init_texture_fxt1( ctx );
1161
Brian Paul4d053dd2000-01-14 04:45:47 +00001162 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001163 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001164 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001165 ctx->_Facing = 0;
Brian Paul4d053dd2000-01-14 04:45:47 +00001166
Brian Paula3f13702003-04-01 16:41:50 +00001167 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001168}
1169
1170
Brian Paulf44898c2003-07-18 15:44:57 +00001171/**
Brian Paul21f69782004-11-27 05:05:32 +00001172 * This is the default function we plug into all dispatch table slots
1173 * This helps prevents a segfault when someone calls a GL function without
1174 * first checking if the extension's supported.
1175 */
1176static int
1177generic_nop(void)
1178{
1179 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1180 return 0;
1181}
1182
1183
1184/**
1185 * Allocate and initialize a new dispatch table.
1186 */
1187static struct _glapi_table *
1188alloc_dispatch_table(void)
1189{
1190 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1191 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1192 * Mesa we do this to accomodate different versions of libGL and various
1193 * DRI drivers.
1194 */
1195 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1196 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1197 struct _glapi_table *table =
1198 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1199 if (table) {
1200 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001201 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001202 for (i = 0; i < numEntries; i++) {
1203 entry[i] = (_glapi_proc) generic_nop;
1204 }
1205 }
1206 return table;
1207}
1208
1209
1210/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001211 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001212 *
1213 * This includes allocating all the other structs and arrays which hang off of
1214 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001215 * Note that the driver needs to pass in its dd_function_table here since
1216 * we need to at least call driverFunctions->NewTextureObject to create the
1217 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001218 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001219 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001220 *
1221 * Performs the imports and exports callback tables initialization, and
1222 * miscellaneous one-time initializations. If no shared context is supplied one
1223 * is allocated, and increase its reference count. Setups the GL API dispatch
1224 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1225 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1226 * for debug flags.
1227 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001228 * \param ctx the context to initialize
1229 * \param visual describes the visual attributes for this context
1230 * \param share_list points to context to share textures, display lists,
1231 * etc with, or NULL
1232 * \param driverFunctions table of device driver functions for this context
1233 * to use
1234 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001235 */
Brian Paul178a1c52000-04-22 01:05:00 +00001236GLboolean
1237_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001238 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001239 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001240 const struct dd_function_table *driverFunctions,
1241 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001242{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001243 ASSERT(driverContext);
1244 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001245 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001246
Brian Paul3c634522002-10-24 23:57:19 +00001247 /* If the driver wants core Mesa to use special imports, it'll have to
1248 * override these defaults.
1249 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001250 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001251
Brian Paul9a33a112002-06-13 04:28:29 +00001252 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001253 _mesa_init_default_exports( &(ctx->exports) );
1254
1255 /* misc one-time initializations */
1256 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001257
Brian Paulb1394fa2000-09-26 20:53:53 +00001258 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001259 ctx->DrawBuffer = NULL;
1260 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001261 ctx->WinSysDrawBuffer = NULL;
1262 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001263
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001264 /* Plug in driver functions and context pointer here.
1265 * This is important because when we call alloc_shared_state() below
1266 * we'll call ctx->Driver.NewTextureObject() to create the default
1267 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001268 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001269 ctx->Driver = *driverFunctions;
1270 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001271
jtgafb833d1999-08-19 00:55:39 +00001272 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001273 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001274 ctx->Shared = share_list->Shared;
1275 }
1276 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001277 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001278 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001279 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001280 }
1281 }
Brian Paul9560f052000-01-31 23:11:39 +00001282 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001283 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001284 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001285
Keith Whitwell6dc85572003-07-17 13:43:59 +00001286 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001287 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001288 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001289 }
jtgafb833d1999-08-19 00:55:39 +00001290
Brian Paul21f69782004-11-27 05:05:32 +00001291 /* setup the API dispatch tables */
1292 ctx->Exec = alloc_dispatch_table();
1293 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001294 if (!ctx->Exec || !ctx->Save) {
1295 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001296 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001297 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001298 }
Brian Paul21f69782004-11-27 05:05:32 +00001299 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001300 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001301#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001302 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001303 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001304 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001305 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001306 ctx->TnlModule.Current = NULL;
1307 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001308#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001309
Keith Whitwell47b29f52005-05-04 11:44:44 +00001310 ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001311 ctx->_UseTexEnvProgram = ctx->_MaintainTexEnvProgram;
1312
Keith Whitwell47b29f52005-05-04 11:44:44 +00001313 ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL);
Keith Whitwell40332052005-12-12 12:57:08 +00001314 if (ctx->_MaintainTnlProgram)
1315 ctx->_MaintainTexEnvProgram = 1; /* this is required... */
Keith Whitwell47b29f52005-05-04 11:44:44 +00001316
Brian Paula96f8892005-09-13 01:19:29 +00001317 ctx->FirstTimeCurrent = GL_TRUE;
1318
Brian Paul4d053dd2000-01-14 04:45:47 +00001319 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001320}
1321
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001322
Brian Paulde4f4602003-07-03 02:15:06 +00001323/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001324 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001325 * Note that the driver needs to pass in its dd_function_table here since
1326 * we need to at least call driverFunctions->NewTextureObject to initialize
1327 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001328 *
1329 * \param visual a GLvisual pointer (we copy the struct contents)
1330 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001331 * \param driverFunctions points to the dd_function_table into which the
1332 * driver has plugged in all its special functions.
1333 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001334 *
1335 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001336 */
Brian Paul178a1c52000-04-22 01:05:00 +00001337GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001338_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001339 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001340 const struct dd_function_table *driverFunctions,
1341 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001342
Brian Paul4d053dd2000-01-14 04:45:47 +00001343{
Brian Paul4753d602002-06-15 02:38:15 +00001344 GLcontext *ctx;
1345
1346 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001347 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001348
Brian Paul3c634522002-10-24 23:57:19 +00001349 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001350 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001351 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001352
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001353 if (_mesa_initialize_context(ctx, visual, share_list,
1354 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001355 return ctx;
1356 }
1357 else {
Brian Paul3c634522002-10-24 23:57:19 +00001358 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001359 return NULL;
1360 }
1361}
1362
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001363
Keith Whitwell6dc85572003-07-17 13:43:59 +00001364/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001365 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001366 *
1367 * But doesn't free the GLcontext struct itself.
1368 *
1369 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001370 */
Brian Paul178a1c52000-04-22 01:05:00 +00001371void
Brian Paulb1394fa2000-09-26 20:53:53 +00001372_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001373{
Brian Paul4d053dd2000-01-14 04:45:47 +00001374 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001375 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001376 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001377 }
1378
Keith Whitwell6dc85572003-07-17 13:43:59 +00001379 _mesa_free_lighting_data( ctx );
1380 _mesa_free_eval_data( ctx );
1381 _mesa_free_texture_data( ctx );
1382 _mesa_free_matrix_data( ctx );
1383 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001384 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001385 _mesa_free_program_data(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001386 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001387
1388#if FEATURE_ARB_vertex_buffer_object
1389 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001390#endif
Brian Paulfd284452001-07-19 15:54:34 +00001391
Brian Paul65a66f52004-11-27 22:47:59 +00001392 /* free dispatch tables */
1393 _mesa_free(ctx->Exec);
1394 _mesa_free(ctx->Save);
1395
Brian Paul30f51ae2001-12-18 04:06:44 +00001396 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001397 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001398 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001399 assert(ctx->Shared->RefCount >= 0);
1400 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1401 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001402 /* free shared state */
1403 free_shared_state( ctx, ctx->Shared );
1404 }
1405
Brian Paul702ca202003-07-18 15:22:16 +00001406 if (ctx->Extensions.String)
Brian Paulc7e164f2006-06-30 15:44:30 +00001407 _mesa_free((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001408}
1409
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001410
Keith Whitwell6dc85572003-07-17 13:43:59 +00001411/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001412 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001413 *
1414 * \param ctx GL context.
1415 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001416 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001417 */
Brian Paul178a1c52000-04-22 01:05:00 +00001418void
Brian Paulb1394fa2000-09-26 20:53:53 +00001419_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001420{
1421 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001422 _mesa_free_context_data(ctx);
Brian Paulc7e164f2006-06-30 15:44:30 +00001423 _mesa_free( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001424 }
1425}
1426
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001427
Keith Whitwell6dc85572003-07-17 13:43:59 +00001428#if _HAVE_FULL_GL
1429/**
jtgafb833d1999-08-19 00:55:39 +00001430 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001431 *
1432 * \param src source context
1433 * \param dst destination context
1434 * \param mask bitwise OR of GL_*_BIT flags
1435 *
1436 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001437 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001438 * memcpy is not enough due to the existence of internal pointers in their data
1439 * structures.
jtgafb833d1999-08-19 00:55:39 +00001440 */
Brian Paul178a1c52000-04-22 01:05:00 +00001441void
Brian Paulb1394fa2000-09-26 20:53:53 +00001442_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001443{
1444 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001445 /* OK to memcpy */
1446 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001447 }
1448 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001449 /* OK to memcpy */
1450 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001451 }
1452 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001453 /* OK to memcpy */
1454 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001455 }
1456 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001457 /* OK to memcpy */
1458 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001459 }
1460 if (mask & GL_ENABLE_BIT) {
1461 /* no op */
1462 }
1463 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001464 /* OK to memcpy */
1465 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001466 }
1467 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001468 /* OK to memcpy */
1469 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001470 }
1471 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001472 /* OK to memcpy */
1473 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001474 }
1475 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001476 GLuint i;
1477 /* begin with memcpy */
Brian Paul2aabdc72006-02-24 18:19:11 +00001478 dst->Light = src->Light;
Brian Paul85d81602002-06-17 23:36:31 +00001479 /* fixup linked lists to prevent pointer insanity */
1480 make_empty_list( &(dst->Light.EnabledList) );
1481 for (i = 0; i < MAX_LIGHTS; i++) {
1482 if (dst->Light.Light[i].Enabled) {
1483 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1484 }
1485 }
jtgafb833d1999-08-19 00:55:39 +00001486 }
1487 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001488 /* OK to memcpy */
1489 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001490 }
1491 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001492 /* OK to memcpy */
1493 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001494 }
1495 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001496 /* OK to memcpy */
1497 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001498 }
1499 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001500 /* OK to memcpy */
1501 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001502 }
1503 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001504 /* OK to memcpy */
1505 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001506 }
1507 if (mask & GL_POLYGON_STIPPLE_BIT) {
1508 /* Use loop instead of MEMCPY due to problem with Portland Group's
1509 * C compiler. Reported by John Stone.
1510 */
Brian Paul85d81602002-06-17 23:36:31 +00001511 GLuint i;
1512 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001513 dst->PolygonStipple[i] = src->PolygonStipple[i];
1514 }
1515 }
1516 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001517 /* OK to memcpy */
1518 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001519 }
1520 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001521 /* OK to memcpy */
1522 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001523 }
1524 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001525 /* Cannot memcpy because of pointers */
1526 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001527 }
1528 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001529 /* OK to memcpy */
1530 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001531 }
1532 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001533 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1534 dst->Viewport.X = src->Viewport.X;
1535 dst->Viewport.Y = src->Viewport.Y;
1536 dst->Viewport.Width = src->Viewport.Width;
1537 dst->Viewport.Height = src->Viewport.Height;
1538 dst->Viewport.Near = src->Viewport.Near;
1539 dst->Viewport.Far = src->Viewport.Far;
1540 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001541 }
Brian Paul85d81602002-06-17 23:36:31 +00001542
Keith Whitwella96308c2000-10-30 13:31:59 +00001543 /* XXX FIXME: Call callbacks?
1544 */
1545 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001546}
Keith Whitwell23caf202000-11-16 21:05:34 +00001547#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001548
1549
Brian Paulb1d53d92003-06-11 18:48:19 +00001550/**
1551 * Check if the given context can render into the given framebuffer
1552 * by checking visual attributes.
Brian Paulca007cb2006-03-07 03:01:26 +00001553 *
1554 * XXX this may go away someday because we're moving toward more freedom
1555 * in binding contexts to drawables with different visual attributes.
1556 * The GL_EXT_f_b_o extension is prompting some of that.
1557 *
Brian Paulb1d53d92003-06-11 18:48:19 +00001558 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1559 */
1560static GLboolean
1561check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1562{
1563 const GLvisual *ctxvis = &ctx->Visual;
1564 const GLvisual *bufvis = &buffer->Visual;
1565
1566 if (ctxvis == bufvis)
1567 return GL_TRUE;
1568
1569 if (ctxvis->rgbMode != bufvis->rgbMode)
1570 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001571#if 0
1572 /* disabling this fixes the fgl_glxgears pbuffer demo */
Brian Paulb1d53d92003-06-11 18:48:19 +00001573 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1574 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001575#endif
Brian Paulb1d53d92003-06-11 18:48:19 +00001576 if (ctxvis->stereoMode && !bufvis->stereoMode)
1577 return GL_FALSE;
1578 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1579 return GL_FALSE;
1580 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1581 return GL_FALSE;
1582 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1583 return GL_FALSE;
1584 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1585 return GL_FALSE;
1586 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1587 return GL_FALSE;
1588 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1589 return GL_FALSE;
1590 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1591 return GL_FALSE;
1592 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1593 return GL_FALSE;
1594
1595 return GL_TRUE;
1596}
1597
1598
Keith Whitwell6dc85572003-07-17 13:43:59 +00001599/**
Brian Paula702bbf2005-09-14 03:11:36 +00001600 * Do one-time initialization for the given framebuffer. Specifically,
1601 * ask the driver for the window's current size and update the framebuffer
1602 * object to match.
1603 * Really, the device driver should totally take care of this.
1604 */
1605static void
1606initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1607{
1608 GLuint width, height;
1609 ASSERT(ctx->Driver.GetBufferSize);
1610 ctx->Driver.GetBufferSize(fb, &width, &height);
1611 if (ctx->Driver.ResizeBuffers)
1612 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1613 fb->Initialized = GL_TRUE;
1614}
1615
1616
1617/**
1618 * Bind the given context to the given drawBuffer and readBuffer and
1619 * make it the current context for the calling thread.
1620 * We'll render into the drawBuffer and read pixels from the
1621 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001622 *
Brian Paula702bbf2005-09-14 03:11:36 +00001623 * We check that the context's and framebuffer's visuals are compatible
1624 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001625 *
Brian Paula702bbf2005-09-14 03:11:36 +00001626 * \param newCtx the new GL context. If NULL then there will be no current GL
1627 * context.
1628 * \param drawBuffer the drawing framebuffer
1629 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001630 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001631void
Brian Paule4b23562005-05-04 20:11:35 +00001632_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1633 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001634{
Keith Whitwell5c728372005-05-12 10:22:29 +00001635 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001636 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001637
Brian Paulbe3602d2001-02-28 00:27:48 +00001638 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001639 */
Brian Paulf1038f82006-03-20 15:20:57 +00001640 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001641 if (!check_compatible(newCtx, drawBuffer)) {
1642 _mesa_warning(newCtx,
1643 "MakeCurrent: incompatible visuals for context and drawbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001644 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001645 }
Brian Paulb1d53d92003-06-11 18:48:19 +00001646 }
Brian Paulf1038f82006-03-20 15:20:57 +00001647 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001648 if (!check_compatible(newCtx, readBuffer)) {
1649 _mesa_warning(newCtx,
1650 "MakeCurrent: incompatible visuals for context and readbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001651 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001652 }
Brian Paulbe3602d2001-02-28 00:27:48 +00001653 }
1654
Brian Paulc6c0f942006-03-16 18:05:25 +00001655 /* We used to call _glapi_check_multithread() here. Now do it in drivers */
Brian Paulf9b97d92000-01-28 20:17:42 +00001656 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001657 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001658
Keith Whitwell23caf202000-11-16 21:05:34 +00001659 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001660 _glapi_set_dispatch(NULL); /* none current */
1661 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001662 else {
1663 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001664
Keith Whitwell23caf202000-11-16 21:05:34 +00001665 if (drawBuffer && readBuffer) {
1666 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001667
Brian Paule4b23562005-05-04 20:11:35 +00001668 ASSERT(drawBuffer->Name == 0);
1669 ASSERT(readBuffer->Name == 0);
1670 newCtx->WinSysDrawBuffer = drawBuffer;
1671 newCtx->WinSysReadBuffer = readBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001672
1673 /*
1674 * Only set the context's Draw/ReadBuffer fields if they're NULL
1675 * or not bound to a user-created FBO.
1676 */
Brian Paule4b23562005-05-04 20:11:35 +00001677 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1678 newCtx->DrawBuffer = drawBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001679 }
1680 if (!newCtx->ReadBuffer || newCtx->ReadBuffer->Name == 0) {
Brian Paule4b23562005-05-04 20:11:35 +00001681 newCtx->ReadBuffer = readBuffer;
1682 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001683
Keith Whitwell23caf202000-11-16 21:05:34 +00001684 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001685
Keith Whitwell6dc85572003-07-17 13:43:59 +00001686#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001687 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001688 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001689 }
Brian Paul65a66f52004-11-27 22:47:59 +00001690 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001691 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001692 }
Keith Whitwell6dc85572003-07-17 13:43:59 +00001693#endif
Brian Paul65a66f52004-11-27 22:47:59 +00001694 if (newCtx->FirstTimeCurrent) {
1695 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001696 _mesa_set_viewport(newCtx, 0, 0,
1697 drawBuffer->Width, drawBuffer->Height);
Brian Pauldb79d2a2006-03-29 18:41:19 +00001698 _mesa_set_scissor(newCtx, 0, 0,
1699 drawBuffer->Width, drawBuffer->Height );
Brian Paul5e2e96b2006-05-15 15:26:04 +00001700 check_context_limits(newCtx);
Brian Paul65a66f52004-11-27 22:47:59 +00001701 }
Brian Paul00037781999-12-17 14:52:35 +00001702 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001703
Keith Whitwell23caf202000-11-16 21:05:34 +00001704 /* We can use this to help debug user's problems. Tell them to set
1705 * the MESA_INFO env variable before running their app. Then the
1706 * first time each context is made current we'll print some useful
1707 * information.
1708 */
1709 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001710 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001711 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001712 }
1713 newCtx->FirstTimeCurrent = GL_FALSE;
1714 }
Brian Paul00037781999-12-17 14:52:35 +00001715 }
1716}
1717
Brian Paul635ee2d2005-04-15 17:25:07 +00001718
1719/**
1720 * Make context 'ctx' share the display lists, textures and programs
1721 * that are associated with 'ctxToShare'.
1722 * Any display lists, textures or programs associated with 'ctx' will
1723 * be deleted if nobody else is sharing them.
1724 */
1725GLboolean
1726_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1727{
1728 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1729 ctx->Shared->RefCount--;
1730 if (ctx->Shared->RefCount == 0) {
1731 free_shared_state(ctx, ctx->Shared);
1732 }
1733 ctx->Shared = ctxToShare->Shared;
1734 ctx->Shared->RefCount++;
1735 return GL_TRUE;
1736 }
1737 else {
1738 return GL_FALSE;
1739 }
1740}
1741
1742
1743
Keith Whitwell6dc85572003-07-17 13:43:59 +00001744/**
1745 * Get current context for the calling thread.
1746 *
1747 * \return pointer to the current GL context.
1748 *
1749 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1750 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001751 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001752GLcontext *
1753_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001754{
Brian Paulf9b97d92000-01-28 20:17:42 +00001755 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001756}
1757
Keith Whitwell6dc85572003-07-17 13:43:59 +00001758/**
1759 * Get context's current API dispatch table.
1760 *
1761 * It'll either be the immediate-mode execute dispatcher or the display list
1762 * compile dispatcher.
1763 *
1764 * \param ctx GL context.
1765 *
1766 * \return pointer to dispatch_table.
1767 *
1768 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001769 */
1770struct _glapi_table *
1771_mesa_get_dispatch(GLcontext *ctx)
1772{
1773 return ctx->CurrentDispatch;
1774}
1775
Keith Whitwell6dc85572003-07-17 13:43:59 +00001776/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001777
1778
jtgafb833d1999-08-19 00:55:39 +00001779/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001780/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001781/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001782/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001783
Keith Whitwell6dc85572003-07-17 13:43:59 +00001784/**
1785 * Record an error.
1786 *
1787 * \param ctx GL context.
1788 * \param error error code.
1789 *
1790 * Records the given error code and call the driver's dd_function_table::Error
1791 * function if defined.
1792 *
1793 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001794 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001795 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001796void
Brian Paul4e9676f2002-06-29 19:48:15 +00001797_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001798{
Brian Paul18a285a2002-03-16 00:53:15 +00001799 if (!ctx)
1800 return;
1801
Brian Paul7eb06032000-07-14 04:13:40 +00001802 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001803 ctx->ErrorValue = error;
1804 }
1805
1806 /* Call device driver's error handler, if any. This is used on the Mac. */
1807 if (ctx->Driver.Error) {
1808 (*ctx->Driver.Error)( ctx );
1809 }
1810}
1811
Keith Whitwell6dc85572003-07-17 13:43:59 +00001812/**
1813 * Execute glFinish().
1814 *
1815 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1816 * dd_function_table::Finish driver callback, if not NULL.
1817 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001818void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001819_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001820{
Brian Paulfa9df402000-02-02 19:16:46 +00001821 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001822 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001823 if (ctx->Driver.Finish) {
1824 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001825 }
1826}
1827
Keith Whitwell6dc85572003-07-17 13:43:59 +00001828/**
1829 * Execute glFlush().
1830 *
1831 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1832 * dd_function_table::Flush driver callback, if not NULL.
1833 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001834void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001835_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001836{
Brian Paulfa9df402000-02-02 19:16:46 +00001837 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001838 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001839 if (ctx->Driver.Flush) {
1840 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001841 }
jtgafb833d1999-08-19 00:55:39 +00001842}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001843
1844
Keith Whitwell6dc85572003-07-17 13:43:59 +00001845/*@}*/