blob: c5220b5b2eb7a7858363f66145e6ae630b77c90a [file] [log] [blame]
Keith Whitwell6dc85572003-07-17 13:43:59 +00001/**
2 * \file context.c
3 * Mesa context/visual/framebuffer management functions.
4 * \author Brian Paul
5 */
6
jtgafb833d1999-08-19 00:55:39 +00007/*
8 * Mesa 3-D graphics library
Brian Paul363344f2005-09-13 14:48:28 +00009 * Version: 6.5
jtgafb833d1999-08-19 00:55:39 +000010 *
Brian Paul2aabdc72006-02-24 18:19:11 +000011 * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
jtgafb833d1999-08-19 00:55:39 +000012 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included
21 * in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
27 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
Keith Whitwell6dc85572003-07-17 13:43:59 +000032/**
Brian Paul253204f2004-09-10 00:45:12 +000033 * \mainpage Mesa Main Module
Keith Whitwell6dc85572003-07-17 13:43:59 +000034 *
Brian Paul253204f2004-09-10 00:45:12 +000035 * \section MainIntroduction Introduction
Keith Whitwell6dc85572003-07-17 13:43:59 +000036 *
Brian Paul253204f2004-09-10 00:45:12 +000037 * The Mesa Main module consists of all the files in the main/ directory.
38 * Among the features of this module are:
39 * <UL>
40 * <LI> Structures to represent most GL state </LI>
41 * <LI> State set/get functions </LI>
42 * <LI> Display lists </LI>
43 * <LI> Texture unit, object and image handling </LI>
44 * <LI> Matrix and attribute stacks </LI>
45 * </UL>
Keith Whitwell6dc85572003-07-17 13:43:59 +000046 *
Brian Paul253204f2004-09-10 00:45:12 +000047 * Other modules are responsible for API dispatch, vertex transformation,
48 * point/line/triangle setup, rasterization, vertex array caching,
49 * vertex/fragment programs/shaders, etc.
Keith Whitwell6dc85572003-07-17 13:43:59 +000050 *
51 *
52 * \section AboutDoxygen About Doxygen
53 *
54 * If you're viewing this information as Doxygen-generated HTML you'll
55 * see the documentation index at the top of this page.
56 *
57 * The first line lists the Mesa source code modules.
58 * The second line lists the indexes available for viewing the documentation
59 * for each module.
60 *
61 * Selecting the <b>Main page</b> link will display a summary of the module
62 * (this page).
63 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000064 * Selecting <b>Data Structures</b> will list all C structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +000065 *
66 * Selecting the <b>File List</b> link will list all the source files in
67 * the module.
68 * Selecting a filename will show a list of all functions defined in that file.
69 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000070 * Selecting the <b>Data Fields</b> link will display a list of all
Keith Whitwell6dc85572003-07-17 13:43:59 +000071 * documented structure members.
72 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000073 * Selecting the <b>Globals</b> link will display a list
Keith Whitwell6dc85572003-07-17 13:43:59 +000074 * of all functions, structures, global variables and macros in the module.
75 *
76 */
77
78
Brian Paulfbd8f211999-11-11 01:22:25 +000079#include "glheader.h"
Brian Paul3c634522002-10-24 23:57:19 +000080#include "imports.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000081#include "accum.h"
Brian Paulc04bb512006-07-11 21:56:43 +000082#include "arrayobj.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000083#include "attrib.h"
84#include "blend.h"
Brian Paulb1394fa2000-09-26 20:53:53 +000085#include "buffers.h"
Brian Paul148a2842003-09-17 03:40:11 +000086#include "bufferobj.h"
Brian Paul4bdcfe52000-04-17 17:57:04 +000087#include "colortab.h"
jtgafb833d1999-08-19 00:55:39 +000088#include "context.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000089#include "debug.h"
90#include "depth.h"
jtgafb833d1999-08-19 00:55:39 +000091#include "dlist.h"
92#include "eval.h"
93#include "enums.h"
Brian Paul585a68c1999-09-11 11:31:34 +000094#include "extensions.h"
Brian Paule4b23562005-05-04 20:11:35 +000095#include "fbobject.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000096#include "feedback.h"
jtgafb833d1999-08-19 00:55:39 +000097#include "fog.h"
Brian Paulb7a43041999-11-30 20:34:51 +000098#include "get.h"
Brian Paul9560f052000-01-31 23:11:39 +000099#include "glthread.h"
Brian Paulf44898c2003-07-18 15:44:57 +0000100#include "glapioffsets.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000101#include "histogram.h"
102#include "hint.h"
jtgafb833d1999-08-19 00:55:39 +0000103#include "hash.h"
Brian Paul63d68302005-11-19 16:43:04 +0000104#include "atifragshader.h"
jtgafb833d1999-08-19 00:55:39 +0000105#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000106#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000107#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000108#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000109#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000110#include "pixel.h"
111#include "points.h"
112#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000113#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
114#include "program.h"
115#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000116#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000117#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000118#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000119#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000120#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000121#include "teximage.h"
122#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000123#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000124#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000125#include "varray.h"
Brian Paul363344f2005-09-13 14:48:28 +0000126#include "version.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000127#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000128#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000129#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000130#include "math/m_matrix.h"
131#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000132#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000133#endif
Brian0bf5dbe2006-12-19 18:02:41 -0700134#include "shaders.h"
jtgafb833d1999-08-19 00:55:39 +0000135
davem69775355a2001-06-05 23:54:00 +0000136#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000137#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000138#endif
jtgafb833d1999-08-19 00:55:39 +0000139
Keith Whitwell23caf202000-11-16 21:05:34 +0000140#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000141int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000142#endif
143
144#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000145int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000146#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000147
Brian Paul86b84272001-12-14 02:50:01 +0000148
Brian Paul27558a12003-03-01 01:50:20 +0000149/* ubyte -> float conversion */
150GLfloat _mesa_ubyte_to_float_color_tab[256];
151
Brian Paul9a33a112002-06-13 04:28:29 +0000152static void
153free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
154
Brian Paul86b84272001-12-14 02:50:01 +0000155
Brian Paulb1394fa2000-09-26 20:53:53 +0000156/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000157/** \name OpenGL SI-style interface (new in Mesa 3.5)
158 *
159 * \if subset
160 * \note Most of these functions are never called in the Mesa subset.
161 * \endif
162 */
163/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000164
Keith Whitwell6dc85572003-07-17 13:43:59 +0000165/**
166 * Destroy context callback.
167 *
168 * \param gc context.
169 * \return GL_TRUE on success, or GL_FALSE on failure.
170 *
171 * \ifnot subset
172 * Called by window system/device driver (via __GLexports::destroyCurrent) when
173 * the rendering context is to be destroyed.
174 * \endif
175 *
176 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000177 */
178GLboolean
179_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000180{
181 if (gc) {
182 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000183 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000184 }
185 return GL_TRUE;
186}
187
Keith Whitwell6dc85572003-07-17 13:43:59 +0000188/**
189 * Unbind context callback.
190 *
191 * \param gc context.
192 * \return GL_TRUE on success, or GL_FALSE on failure.
193 *
194 * \ifnot subset
195 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000196 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000197 * \endif
198 *
199 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000200 */
201GLboolean
202_mesa_loseCurrent(__GLcontext *gc)
203{
204 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000205 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000206 return GL_TRUE;
207}
208
Keith Whitwell6dc85572003-07-17 13:43:59 +0000209/**
210 * Bind context callback.
211 *
212 * \param gc context.
213 * \return GL_TRUE on success, or GL_FALSE on failure.
214 *
215 * \ifnot subset
216 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000217 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000218 * \endif
219 *
220 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000221 */
222GLboolean
223_mesa_makeCurrent(__GLcontext *gc)
224{
225 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000226 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000227 return GL_TRUE;
228}
229
Keith Whitwell6dc85572003-07-17 13:43:59 +0000230/**
231 * Share context callback.
232 *
233 * \param gc context.
234 * \param gcShare shared context.
235 * \return GL_TRUE on success, or GL_FALSE on failure.
236 *
237 * \ifnot subset
238 * Called by window system/device driver (via __GLexports::shareContext)
239 * \endif
240 *
241 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000242 */
243GLboolean
244_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
245{
246 if (gc && gcShare && gc->Shared && gcShare->Shared) {
247 gc->Shared->RefCount--;
248 if (gc->Shared->RefCount == 0) {
249 free_shared_state(gc, gc->Shared);
250 }
251 gc->Shared = gcShare->Shared;
252 gc->Shared->RefCount++;
253 return GL_TRUE;
254 }
255 else {
256 return GL_FALSE;
257 }
258}
259
Keith Whitwell6dc85572003-07-17 13:43:59 +0000260
261#if _HAVE_FULL_GL
262/**
263 * Copy context callback.
264 */
Brian Paul9a33a112002-06-13 04:28:29 +0000265GLboolean
266_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
267{
268 if (dst && src) {
269 _mesa_copy_context( src, dst, mask );
270 return GL_TRUE;
271 }
272 else {
273 return GL_FALSE;
274 }
275}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000276#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000277
Keith Whitwell6dc85572003-07-17 13:43:59 +0000278/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000279GLboolean
280_mesa_forceCurrent(__GLcontext *gc)
281{
Brian Paula6c423d2004-08-25 15:59:48 +0000282 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000283 return GL_TRUE;
284}
285
Keith Whitwell6dc85572003-07-17 13:43:59 +0000286/**
287 * Windows/buffer resizing notification callback.
288 *
289 * \param gc GL context.
290 * \return GL_TRUE on success, or GL_FALSE on failure.
291 */
Brian Paul9a33a112002-06-13 04:28:29 +0000292GLboolean
293_mesa_notifyResize(__GLcontext *gc)
294{
295 GLint x, y;
296 GLuint width, height;
297 __GLdrawablePrivate *d = gc->imports.getDrawablePrivate(gc);
298 if (!d || !d->getDrawableSize)
299 return GL_FALSE;
300 d->getDrawableSize( d, &x, &y, &width, &height );
301 /* update viewport, resize software buffers, etc. */
302 return GL_TRUE;
303}
304
Keith Whitwell6dc85572003-07-17 13:43:59 +0000305/**
306 * Window/buffer destruction notification callback.
307 *
308 * \param gc GL context.
309 *
310 * Called when the context's window/buffer is going to be destroyed.
311 *
312 * No-op
313 */
Brian Paul9a33a112002-06-13 04:28:29 +0000314void
315_mesa_notifyDestroy(__GLcontext *gc)
316{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000317 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000318 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000319}
320
Keith Whitwell6dc85572003-07-17 13:43:59 +0000321/**
322 * Swap buffers notification callback.
323 *
324 * \param gc GL context.
325 *
326 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000327 * We have to finish any pending rendering.
328 */
329void
330_mesa_notifySwapBuffers(__GLcontext *gc)
331{
332 FLUSH_VERTICES( gc, 0 );
333}
334
Keith Whitwell6dc85572003-07-17 13:43:59 +0000335/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000336struct __GLdispatchStateRec *
337_mesa_dispatchExec(__GLcontext *gc)
338{
Brian Paula6c423d2004-08-25 15:59:48 +0000339 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000340 return NULL;
341}
342
Keith Whitwell6dc85572003-07-17 13:43:59 +0000343/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000344void
345_mesa_beginDispatchOverride(__GLcontext *gc)
346{
Brian Paula6c423d2004-08-25 15:59:48 +0000347 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000348}
349
Keith Whitwell6dc85572003-07-17 13:43:59 +0000350/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000351void
352_mesa_endDispatchOverride(__GLcontext *gc)
353{
Brian Paula6c423d2004-08-25 15:59:48 +0000354 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000355}
356
Keith Whitwell6dc85572003-07-17 13:43:59 +0000357/**
358 * \ifnot subset
359 * Setup the exports.
360 *
361 * The window system will call these functions when it needs Mesa to do
362 * something.
363 *
364 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000365 * the Xlib driver should plug in the XMesa*-style functions into this
366 * structure. The XMesa-style functions should then call the _mesa_*
367 * version of these functions. This is an approximation to OO design
368 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000369 * \endif
370 *
371 * \if subset
372 * No-op.
373 *
374 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000375 */
376static void
377_mesa_init_default_exports(__GLexports *exports)
378{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000379#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000380 exports->destroyContext = _mesa_destroyContext;
381 exports->loseCurrent = _mesa_loseCurrent;
382 exports->makeCurrent = _mesa_makeCurrent;
383 exports->shareContext = _mesa_shareContext;
384 exports->copyContext = _mesa_copyContext;
385 exports->forceCurrent = _mesa_forceCurrent;
386 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000387 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000388 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
389 exports->dispatchExec = _mesa_dispatchExec;
390 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
391 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000392#else
393 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000394#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000395}
396
Keith Whitwell6dc85572003-07-17 13:43:59 +0000397/**
398 * Exported OpenGL SI interface.
399 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000400__GLcontext *
401__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
402{
403 GLcontext *ctx;
404
Brian Paul4753d602002-06-15 02:38:15 +0000405 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000406 if (ctx == NULL) {
407 return NULL;
408 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000409
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000410 /* XXX doesn't work at this time */
411 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000412 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000413
414 return ctx;
415}
416
Keith Whitwell6dc85572003-07-17 13:43:59 +0000417/**
418 * Exported OpenGL SI interface.
419 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000420void
421__glCoreNopDispatch(void)
422{
423#if 0
424 /* SI */
425 __gl_dispatch = __glNopDispatchState;
426#else
427 /* Mesa */
428 _glapi_set_dispatch(NULL);
429#endif
430}
431
Keith Whitwell6dc85572003-07-17 13:43:59 +0000432/*@}*/
433
Brian Paulb1394fa2000-09-26 20:53:53 +0000434
jtgafb833d1999-08-19 00:55:39 +0000435/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000436/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000437/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000438/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000439
Keith Whitwell6dc85572003-07-17 13:43:59 +0000440/**
Brian Paul894844a2004-03-21 17:05:03 +0000441 * Allocates a GLvisual structure and initializes it via
442 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000443 *
444 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
445 * \param dbFlag double buffering
446 * \param stereoFlag stereo buffer
447 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
448 * is acceptable but the actual depth type will be GLushort or GLuint as
449 * needed.
450 * \param stencilBits requested minimum bits per stencil buffer value
451 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
452 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
453 * \param redBits number of bits per color component in frame buffer for RGB(A)
454 * mode. We always use 8 in core Mesa though.
455 * \param greenBits same as above.
456 * \param blueBits same as above.
457 * \param alphaBits same as above.
458 * \param numSamples not really used.
459 *
460 * \return pointer to new GLvisual or NULL if requested parameters can't be
461 * met.
462 *
Brian Paul894844a2004-03-21 17:05:03 +0000463 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000464 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000465GLvisual *
466_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000467 GLboolean dbFlag,
468 GLboolean stereoFlag,
469 GLint redBits,
470 GLint greenBits,
471 GLint blueBits,
472 GLint alphaBits,
473 GLint indexBits,
474 GLint depthBits,
475 GLint stencilBits,
476 GLint accumRedBits,
477 GLint accumGreenBits,
478 GLint accumBlueBits,
479 GLint accumAlphaBits,
480 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000481{
Brian Paulc7e164f2006-06-30 15:44:30 +0000482 GLvisual *vis = (GLvisual *) _mesa_calloc(sizeof(GLvisual));
Brian Paul178a1c52000-04-22 01:05:00 +0000483 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000484 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000485 redBits, greenBits, blueBits, alphaBits,
486 indexBits, depthBits, stencilBits,
487 accumRedBits, accumGreenBits,
488 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000489 numSamples)) {
Brian Paulc7e164f2006-06-30 15:44:30 +0000490 _mesa_free(vis);
Brian Paul178a1c52000-04-22 01:05:00 +0000491 return NULL;
492 }
493 }
494 return vis;
495}
496
Keith Whitwell6dc85572003-07-17 13:43:59 +0000497/**
Brian Paul894844a2004-03-21 17:05:03 +0000498 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000499 * GLvisual object with the given parameters. If the caller needs
500 * to set additional fields, he should just probably init the whole GLvisual
501 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000502 * \return GL_TRUE on success, or GL_FALSE on failure.
503 *
504 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000505 */
506GLboolean
507_mesa_initialize_visual( GLvisual *vis,
508 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000509 GLboolean dbFlag,
510 GLboolean stereoFlag,
511 GLint redBits,
512 GLint greenBits,
513 GLint blueBits,
514 GLint alphaBits,
515 GLint indexBits,
516 GLint depthBits,
517 GLint stencilBits,
518 GLint accumRedBits,
519 GLint accumGreenBits,
520 GLint accumBlueBits,
521 GLint accumAlphaBits,
522 GLint numSamples )
523{
524 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000525
Brian Pauled30dfa2000-03-03 17:47:39 +0000526 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000527 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000528 }
Brian Paule4b23562005-05-04 20:11:35 +0000529 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000530 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000531 }
Brian Paul978ef2b2005-09-21 03:35:08 +0000532 assert(accumRedBits >= 0);
533 assert(accumGreenBits >= 0);
534 assert(accumBlueBits >= 0);
535 assert(accumAlphaBits >= 0);
Brian Paul4d053dd2000-01-14 04:45:47 +0000536
Brian Paulb6bcae52001-01-23 23:39:36 +0000537 vis->rgbMode = rgbFlag;
538 vis->doubleBufferMode = dbFlag;
539 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000540
Brian Paulb6bcae52001-01-23 23:39:36 +0000541 vis->redBits = redBits;
542 vis->greenBits = greenBits;
543 vis->blueBits = blueBits;
544 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000545 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000546
Brian Paulb6bcae52001-01-23 23:39:36 +0000547 vis->indexBits = indexBits;
548 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000549 vis->stencilBits = stencilBits;
550
551 vis->accumRedBits = accumRedBits;
552 vis->accumGreenBits = accumGreenBits;
553 vis->accumBlueBits = accumBlueBits;
554 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000555
Brian Paul153f1542002-10-29 15:04:35 +0000556 vis->haveAccumBuffer = accumRedBits > 0;
557 vis->haveDepthBuffer = depthBits > 0;
558 vis->haveStencilBuffer = stencilBits > 0;
559
560 vis->numAuxBuffers = 0;
561 vis->level = 0;
562 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000563 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000564 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000565
Brian Paul178a1c52000-04-22 01:05:00 +0000566 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000567}
568
Brian Paul894844a2004-03-21 17:05:03 +0000569
Keith Whitwell6dc85572003-07-17 13:43:59 +0000570/**
Brian Paul894844a2004-03-21 17:05:03 +0000571 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000572 *
573 * \param vis visual.
574 *
575 * Frees the visual structure.
576 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000577void
578_mesa_destroy_visual( GLvisual *vis )
579{
Brian Paulc7e164f2006-06-30 15:44:30 +0000580 _mesa_free(vis);
Brian Paulb371e0d2000-03-31 01:05:51 +0000581}
582
Keith Whitwell6dc85572003-07-17 13:43:59 +0000583/*@}*/
584
Brian Paulb371e0d2000-03-31 01:05:51 +0000585
Brian Paul4d053dd2000-01-14 04:45:47 +0000586/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000587/** \name Context allocation, initialization, destroying
588 *
589 * The purpose of the most initialization functions here is to provide the
590 * default state values according to the OpenGL specification.
591 */
jtgafb833d1999-08-19 00:55:39 +0000592/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000593/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000594
Keith Whitwell6dc85572003-07-17 13:43:59 +0000595/**
596 * One-time initialization mutex lock.
597 *
598 * \sa Used by one_time_init().
599 */
Brian Paul9560f052000-01-31 23:11:39 +0000600_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
601
Keith Whitwell6dc85572003-07-17 13:43:59 +0000602/**
603 * Calls all the various one-time-init functions in Mesa.
604 *
605 * While holding a global mutex lock, calls several initialization functions,
606 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
607 * defined.
608 *
Brian Paula764b7e2006-02-26 17:16:37 +0000609 * \sa _math_init().
jtgafb833d1999-08-19 00:55:39 +0000610 */
Brian Paul178a1c52000-04-22 01:05:00 +0000611static void
Brian Paul4753d602002-06-15 02:38:15 +0000612one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000613{
614 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000615 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000616 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000617 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000618 GLuint i;
619
Brian Paul4d053dd2000-01-14 04:45:47 +0000620 /* do some implementation tests */
621 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000622 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000623 assert( sizeof(GLshort) == 2 );
624 assert( sizeof(GLushort) == 2 );
625 assert( sizeof(GLint) == 4 );
626 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000627
Keith Whitwell6dc85572003-07-17 13:43:59 +0000628#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000629 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000630
631 for (i = 0; i < 256; i++) {
632 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
633 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000634#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000635
davem69775355a2001-06-05 23:54:00 +0000636#ifdef USE_SPARC_ASM
637 _mesa_init_sparc_glapi_relocs();
638#endif
Brian Paul3c634522002-10-24 23:57:19 +0000639 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000640 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul4e9676f2002-06-29 19:48:15 +0000641 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul68ee4bc2000-01-28 19:02:22 +0000642 }
643 else {
644 _glapi_noop_enable_warnings(GL_FALSE);
645 }
646
jtgafb833d1999-08-19 00:55:39 +0000647#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul363344f2005-09-13 14:48:28 +0000648 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
649 MESA_VERSION_STRING, __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000650#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000651
652 alreadyCalled = GL_TRUE;
653 }
Brian Paul9560f052000-01-31 23:11:39 +0000654 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000655}
656
Brian Paul894844a2004-03-21 17:05:03 +0000657
Keith Whitwell6dc85572003-07-17 13:43:59 +0000658/**
jtgafb833d1999-08-19 00:55:39 +0000659 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000660 * Initializes the display list, texture objects and vertex programs hash
661 * tables, allocates the texture objects. If it runs out of memory, frees
662 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000663 *
664 * \return pointer to a gl_shared_state structure on success, or NULL on
665 * failure.
jtgafb833d1999-08-19 00:55:39 +0000666 */
Brian Paula3f13702003-04-01 16:41:50 +0000667static GLboolean
668alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000669{
Brian Paula3f13702003-04-01 16:41:50 +0000670 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000671 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000672 return GL_FALSE;
673
674 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000675
Brian Paule4b684c2000-09-12 21:07:40 +0000676 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000677
Brian Paule4b684c2000-09-12 21:07:40 +0000678 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000679 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000680#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000681 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000682#endif
jtgafb833d1999-08-19 00:55:39 +0000683
Brian Paul451f3102003-04-17 01:48:19 +0000684#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000685 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000686 if (!ss->DefaultVertexProgram)
687 goto cleanup;
688#endif
689#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000690 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000691 if (!ss->DefaultFragmentProgram)
692 goto cleanup;
693#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000694#if FEATURE_ATI_fragment_shader
Brian Paul63d68302005-11-19 16:43:04 +0000695 ss->ATIShaders = _mesa_NewHashTable();
696 ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000697 if (!ss->DefaultFragmentShader)
698 goto cleanup;
699#endif
Brian Paul451f3102003-04-17 01:48:19 +0000700
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000701#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulddc82ee2005-02-05 19:56:45 +0000702 ss->BufferObjects = _mesa_NewHashTable();
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000703#endif
704
Ian Romanickee34e6e2006-06-12 16:26:29 +0000705 ss->ArrayObjects = _mesa_NewHashTable();
Brian Paulddc82ee2005-02-05 19:56:45 +0000706
Michal Krol365582d2006-08-01 20:07:31 +0000707#if FEATURE_ARB_shader_objects
Briana90046f2006-12-15 10:07:26 -0700708 ss->ShaderObjects = _mesa_NewHashTable();
709 ss->ProgramObjects = _mesa_NewHashTable();
Michal Krol365582d2006-08-01 20:07:31 +0000710#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000711
Brian Paula3f13702003-04-01 16:41:50 +0000712 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
713 if (!ss->Default1D)
714 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000715
Brian Paula3f13702003-04-01 16:41:50 +0000716 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
717 if (!ss->Default2D)
718 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000719
Brian Paula3f13702003-04-01 16:41:50 +0000720 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
721 if (!ss->Default3D)
722 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000723
Brian Paula3f13702003-04-01 16:41:50 +0000724 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
725 if (!ss->DefaultCubeMap)
726 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000727
Brian Paula3f13702003-04-01 16:41:50 +0000728 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
729 if (!ss->DefaultRect)
730 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000731
Brian Paula3f13702003-04-01 16:41:50 +0000732 /* Effectively bind the default textures to all texture units */
733 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
734 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
735 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
736 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
737 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
738
Keith Whitwell5ac93f82006-11-01 14:21:57 +0000739 _glthread_INIT_MUTEX(ss->TexMutex);
740 ss->TextureStateStamp = 0;
741
742
Brian Paulddc82ee2005-02-05 19:56:45 +0000743#if FEATURE_EXT_framebuffer_object
744 ss->FrameBuffers = _mesa_NewHashTable();
745 if (!ss->FrameBuffers)
746 goto cleanup;
747 ss->RenderBuffers = _mesa_NewHashTable();
748 if (!ss->RenderBuffers)
749 goto cleanup;
750#endif
751
752
Brian Paula3f13702003-04-01 16:41:50 +0000753 return GL_TRUE;
754
755 cleanup:
756 /* Ran out of memory at some point. Free everything and return NULL */
757 if (ss->DisplayList)
758 _mesa_DeleteHashTable(ss->DisplayList);
759 if (ss->TexObjects)
760 _mesa_DeleteHashTable(ss->TexObjects);
761#if FEATURE_NV_vertex_program
762 if (ss->Programs)
763 _mesa_DeleteHashTable(ss->Programs);
764#endif
Brian Paul451f3102003-04-17 01:48:19 +0000765#if FEATURE_ARB_vertex_program
766 if (ss->DefaultVertexProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000767 ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000768#endif
769#if FEATURE_ARB_fragment_program
770 if (ss->DefaultFragmentProgram)
Brian Paul4d859f72004-01-23 18:57:05 +0000771 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram);
Brian Paul451f3102003-04-17 01:48:19 +0000772#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000773#if FEATURE_ATI_fragment_shader
774 if (ss->DefaultFragmentShader)
Brian Paul63d68302005-11-19 16:43:04 +0000775 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000776#endif
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000777#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000778 if (ss->BufferObjects)
779 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000780#endif
781
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000782 if (ss->ArrayObjects)
783 _mesa_DeleteHashTable (ss->ArrayObjects);
784
Michal Krol365582d2006-08-01 20:07:31 +0000785#if FEATURE_ARB_shader_objects
Brian0bf5dbe2006-12-19 18:02:41 -0700786 if (ss->ShaderObjects)
Briana90046f2006-12-15 10:07:26 -0700787 _mesa_DeleteHashTable (ss->ShaderObjects);
Brian0bf5dbe2006-12-19 18:02:41 -0700788 if (ss->ProgramObjects)
Briana90046f2006-12-15 10:07:26 -0700789 _mesa_DeleteHashTable (ss->ProgramObjects);
Michal Krol365582d2006-08-01 20:07:31 +0000790#endif
Ian Romanick0207b472003-09-09 00:10:12 +0000791
Brian Paulddc82ee2005-02-05 19:56:45 +0000792#if FEATURE_EXT_framebuffer_object
793 if (ss->FrameBuffers)
794 _mesa_DeleteHashTable(ss->FrameBuffers);
795 if (ss->RenderBuffers)
796 _mesa_DeleteHashTable(ss->RenderBuffers);
797#endif
798
Brian Paula3f13702003-04-01 16:41:50 +0000799 if (ss->Default1D)
800 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
801 if (ss->Default2D)
802 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
803 if (ss->Default3D)
804 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
805 if (ss->DefaultCubeMap)
806 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
807 if (ss->DefaultRect)
808 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
809 if (ss)
810 _mesa_free(ss);
811 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000812}
813
Brian Paulc7e164f2006-06-30 15:44:30 +0000814
Keith Whitwell6dc85572003-07-17 13:43:59 +0000815/**
Brian Paulc7e164f2006-06-30 15:44:30 +0000816 * Callback for deleting a display list. Called by _mesa_HashDeleteAll().
817 */
818static void
819delete_displaylist_cb(GLuint id, void *data, void *userData)
820{
821 struct mesa_display_list *list = (struct mesa_display_list *) data;
822 GLcontext *ctx = (GLcontext *) userData;
823 _mesa_delete_list(ctx, list);
824}
825
826/**
827 * Callback for deleting a texture object. Called by _mesa_HashDeleteAll().
828 */
829static void
830delete_texture_cb(GLuint id, void *data, void *userData)
831{
832 struct gl_texture_object *texObj = (struct gl_texture_object *) data;
833 GLcontext *ctx = (GLcontext *) userData;
834 ctx->Driver.DeleteTexture(ctx, texObj);
835}
836
837/**
838 * Callback for deleting a program object. Called by _mesa_HashDeleteAll().
839 */
840static void
841delete_program_cb(GLuint id, void *data, void *userData)
842{
Brian Paul122629f2006-07-20 16:49:57 +0000843 struct gl_program *prog = (struct gl_program *) data;
Brian Paulc7e164f2006-06-30 15:44:30 +0000844 GLcontext *ctx = (GLcontext *) userData;
845 ctx->Driver.DeleteProgram(ctx, prog);
846}
847
848/**
849 * Callback for deleting an ATI fragment shader object.
850 * Called by _mesa_HashDeleteAll().
851 */
852static void
853delete_fragshader_cb(GLuint id, void *data, void *userData)
854{
855 struct ati_fragment_shader *shader = (struct ati_fragment_shader *) data;
856 GLcontext *ctx = (GLcontext *) userData;
857 _mesa_delete_ati_fragment_shader(ctx, shader);
858}
859
860/**
861 * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll().
862 */
863static void
864delete_bufferobj_cb(GLuint id, void *data, void *userData)
865{
866 struct gl_buffer_object *bufObj = (struct gl_buffer_object *) data;
867 GLcontext *ctx = (GLcontext *) userData;
868 ctx->Driver.DeleteBuffer(ctx, bufObj);
869}
870
Brian Paulc04bb512006-07-11 21:56:43 +0000871/**
872 * Callback for deleting an array object. Called by _mesa_HashDeleteAll().
873 */
874static void
875delete_arrayobj_cb(GLuint id, void *data, void *userData)
876{
877 struct gl_array_object *arrayObj = (struct gl_array_object *) data;
878 GLcontext *ctx = (GLcontext *) userData;
879 _mesa_delete_array_object(ctx, arrayObj);
880}
881
Brian Paul4d4373b2006-11-18 17:44:28 +0000882/**
883 * Callback for deleting an shader object. Called by _mesa_HashDeleteAll().
884 */
885static void
886delete_shaderobj_cb(GLuint id, void *data, void *userData)
887{
888 /* XXX probably need to fix this */
889 _mesa_free(data);
890}
891
Brian Paulc7e164f2006-06-30 15:44:30 +0000892
893/**
894 * Deallocate a shared state object and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000895 *
896 * \param ctx GL context.
897 * \param ss shared state pointer.
898 *
899 * Frees the display lists, the texture objects (calling the driver texture
900 * deletion callback to free its private data) and the vertex programs, as well
901 * as their hash tables.
902 *
903 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000904 */
Brian Paul178a1c52000-04-22 01:05:00 +0000905static void
906free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000907{
Brian Paulc7e164f2006-06-30 15:44:30 +0000908 /*
909 * Free display lists
910 */
911 _mesa_HashDeleteAll(ss->DisplayList, delete_displaylist_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000912 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000913
Brian Paulc7e164f2006-06-30 15:44:30 +0000914 /*
915 * Free texture objects
916 */
Brian Paula3f13702003-04-01 16:41:50 +0000917 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000918 /* the default textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000919 ctx->Driver.DeleteTexture(ctx, ss->Default1D);
920 ctx->Driver.DeleteTexture(ctx, ss->Default2D);
921 ctx->Driver.DeleteTexture(ctx, ss->Default3D);
922 ctx->Driver.DeleteTexture(ctx, ss->DefaultCubeMap);
923 ctx->Driver.DeleteTexture(ctx, ss->DefaultRect);
Brian Paul21841f02004-08-14 14:28:11 +0000924 /* all other textures */
Brian Paulc7e164f2006-06-30 15:44:30 +0000925 _mesa_HashDeleteAll(ss->TexObjects, delete_texture_cb, ctx);
Brian Paulbb797902000-01-24 16:19:54 +0000926 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000927
Brian Paul1096eae2006-01-16 16:35:13 +0000928#if defined(FEATURE_NV_vertex_program) || defined(FEATURE_NV_fragment_program)
Brian Paulc7e164f2006-06-30 15:44:30 +0000929 _mesa_HashDeleteAll(ss->Programs, delete_program_cb, ctx);
Brian Paul610d5992003-01-14 04:55:45 +0000930 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000931#endif
Brian Paul21841f02004-08-14 14:28:11 +0000932#if FEATURE_ARB_vertex_program
933 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
934#endif
935#if FEATURE_ARB_fragment_program
936 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
937#endif
Brian Paul1096eae2006-01-16 16:35:13 +0000938
Dave Airlie7f752fe2004-12-19 03:06:59 +0000939#if FEATURE_ATI_fragment_shader
Brian Paulc7e164f2006-06-30 15:44:30 +0000940 _mesa_HashDeleteAll(ss->ATIShaders, delete_fragshader_cb, ctx);
Brian Paul1096eae2006-01-16 16:35:13 +0000941 _mesa_DeleteHashTable(ss->ATIShaders);
942 _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader);
Dave Airlie7f752fe2004-12-19 03:06:59 +0000943#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000944
Tilman Sauerbeck17b50632006-07-11 19:03:21 +0000945#if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object
Brian Paulc7e164f2006-06-30 15:44:30 +0000946 _mesa_HashDeleteAll(ss->BufferObjects, delete_bufferobj_cb, ctx);
Ian Romanick0207b472003-09-09 00:10:12 +0000947 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000948#endif
949
Brian Paulc04bb512006-07-11 21:56:43 +0000950 _mesa_HashDeleteAll(ss->ArrayObjects, delete_arrayobj_cb, ctx);
Tilman Sauerbeckc0eb7772006-07-11 19:36:27 +0000951 _mesa_DeleteHashTable(ss->ArrayObjects);
952
Michal Krol365582d2006-08-01 20:07:31 +0000953#if FEATURE_ARB_shader_objects
Brian0bf5dbe2006-12-19 18:02:41 -0700954 /* XXX SLANG TO-DO */
955 /*
956 struct _mesa_HashTable *ShaderObjects;
957 struct _mesa_HashTable *ProgramObjects;
958 */
Michal Krol365582d2006-08-01 20:07:31 +0000959#endif
Brian Paulddc82ee2005-02-05 19:56:45 +0000960
961#if FEATURE_EXT_framebuffer_object
962 _mesa_DeleteHashTable(ss->FrameBuffers);
963 _mesa_DeleteHashTable(ss->RenderBuffers);
964#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000965
Keith Whitwelle15fd852002-12-12 13:03:15 +0000966 _glthread_DESTROY_MUTEX(ss->Mutex);
967
Brian Paulc7e164f2006-06-30 15:44:30 +0000968 _mesa_free(ss);
jtgafb833d1999-08-19 00:55:39 +0000969}
970
971
Brian Paul4d859f72004-01-23 18:57:05 +0000972/**
973 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
974 */
975static void
976_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000977{
Brian Paul88bf0382004-02-13 15:30:08 +0000978 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000979
Brian Paul94b30dc2006-04-25 00:53:25 +0000980 /* Init all to (0,0,0,1) */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000981 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
982 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000983 }
Brian Paul94b30dc2006-04-25 00:53:25 +0000984
985 /* redo special cases: */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000986 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
987 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
988 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000989 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000990 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul94b30dc2006-04-25 00:53:25 +0000991 ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX][0] = 1.0;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000992 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000993}
994
995
Brian Paul4d859f72004-01-23 18:57:05 +0000996/**
Brian Paul05051032005-11-01 04:36:33 +0000997 * Init vertex/fragment program native limits from logical limits.
998 */
999static void
1000init_natives(struct gl_program_constants *prog)
1001{
1002 prog->MaxNativeInstructions = prog->MaxInstructions;
1003 prog->MaxNativeAluInstructions = prog->MaxAluInstructions;
1004 prog->MaxNativeTexInstructions = prog->MaxTexInstructions;
1005 prog->MaxNativeTexIndirections = prog->MaxTexIndirections;
1006 prog->MaxNativeAttribs = prog->MaxAttribs;
1007 prog->MaxNativeTemps = prog->MaxTemps;
1008 prog->MaxNativeAddressRegs = prog->MaxAddressRegs;
1009 prog->MaxNativeParameters = prog->MaxParameters;
1010}
1011
1012
1013/**
Brian Paul4d859f72004-01-23 18:57:05 +00001014 * Initialize fields of gl_constants (aka ctx->Const.*).
1015 * Use defaults from config.h. The device drivers will often override
1016 * some of these values (such as number of texture units).
1017 */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001018static void
1019_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001020{
Brian Paul4d053dd2000-01-14 04:45:47 +00001021 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +00001022
Brian Paulcd1cefa2001-06-13 14:56:14 +00001023 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
1024 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
1025
Brian Paulda238ee2006-04-13 19:21:58 +00001026 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_COORD_UNITS);
1027 assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_IMAGE_UNITS);
1028
Brian Paul53f82c52004-10-02 16:39:09 +00001029 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +00001030 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +00001031 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
1032 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +00001033 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul610d5992003-01-14 04:55:45 +00001034 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
1035 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Brian Paulda238ee2006-04-13 19:21:58 +00001036 ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits,
1037 ctx->Const.MaxTextureImageUnits);
Gareth Hughes2c3d34c2001-03-18 08:53:49 +00001038 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +00001039 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +00001040 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +00001041 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
1042 ctx->Const.MinPointSize = MIN_POINT_SIZE;
1043 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
1044 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
1045 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001046 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +00001047 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
1048 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
1049 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
1050 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +00001051 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +00001052 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +00001053 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
1054 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +00001055 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
1056 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +00001057 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +00001058 ctx->Const.MaxSpotExponent = 128.0;
1059 ctx->Const.MaxViewportWidth = MAX_WIDTH;
1060 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +00001061#if FEATURE_ARB_vertex_program
Brian Paul05051032005-11-01 04:36:33 +00001062 ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
1063 ctx->Const.VertexProgram.MaxAluInstructions = 0;
1064 ctx->Const.VertexProgram.MaxTexInstructions = 0;
1065 ctx->Const.VertexProgram.MaxTexIndirections = 0;
1066 ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
1067 ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
1068 ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS;
1069 ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1070 ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
1071 ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
Briana90046f2006-12-15 10:07:26 -07001072 ctx->Const.VertexProgram.MaxUniformComponents = 4 * MAX_UNIFORMS;
Brian Paul05051032005-11-01 04:36:33 +00001073 init_natives(&ctx->Const.VertexProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001074#endif
Briana90046f2006-12-15 10:07:26 -07001075
Brian Pauld0492cf2003-04-11 01:20:06 +00001076#if FEATURE_ARB_fragment_program
Brian Paul05051032005-11-01 04:36:33 +00001077 ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
1078 ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
1079 ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
1080 ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
1081 ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
1082 ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
1083 ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1084 ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
1085 ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
1086 ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
Briana90046f2006-12-15 10:07:26 -07001087 ctx->Const.FragmentProgram.MaxUniformComponents = 4 * MAX_UNIFORMS;
Brian Paul05051032005-11-01 04:36:33 +00001088 init_natives(&ctx->Const.FragmentProgram);
Brian Pauld0492cf2003-04-11 01:20:06 +00001089#endif
Brian Pauledd67742003-04-18 18:02:43 +00001090 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
1091 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +00001092
Brian Paula2b9bad2003-11-10 19:08:37 +00001093 /* If we're running in the X server, do bounds checking to prevent
1094 * segfaults and server crashes!
1095 */
Brian Paul3e6ef122006-11-27 16:33:43 +00001096#if defined(XFree86Server)
Brian Paula2b9bad2003-11-10 19:08:37 +00001097 ctx->Const.CheckArrayBounds = GL_TRUE;
1098#else
1099 ctx->Const.CheckArrayBounds = GL_FALSE;
1100#endif
1101
Brian Paul05051032005-11-01 04:36:33 +00001102 /* GL_ARB_draw_buffers */
Brian Paul53f82c52004-10-02 16:39:09 +00001103 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1104
Brian Paul3deaa012005-02-07 05:08:24 +00001105 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001106 ctx->Const.ColorReadFormat = GL_RGBA;
1107 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1108
Brian Paul3deaa012005-02-07 05:08:24 +00001109#if FEATURE_EXT_framebuffer_object
1110 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1111 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1112#endif
1113
Brian Paul90fcf6c2006-11-01 00:12:41 +00001114#if FEATURE_ARB_vertex_shader
1115 ctx->Const.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS;
Briana90046f2006-12-15 10:07:26 -07001116 ctx->Const.MaxVarying = MAX_VARYING;
Brian Paul90fcf6c2006-11-01 00:12:41 +00001117#endif
1118
Brian Paul53f82c52004-10-02 16:39:09 +00001119 /* sanity checks */
Brian Paulda238ee2006-04-13 19:21:58 +00001120 ASSERT(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.MaxTextureImageUnits,
1121 ctx->Const.MaxTextureCoordUnits));
Brian Paul05051032005-11-01 04:36:33 +00001122 ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
1123 ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
Briana90046f2006-12-15 10:07:26 -07001124
1125 ASSERT(MAX_NV_FRAGMENT_PROGRAM_TEMPS <= MAX_PROGRAM_TEMPS);
1126 ASSERT(MAX_NV_VERTEX_PROGRAM_TEMPS <= MAX_PROGRAM_TEMPS);
1127 ASSERT(MAX_NV_VERTEX_PROGRAM_INPUTS <= VERT_ATTRIB_MAX);
1128 ASSERT(MAX_NV_VERTEX_PROGRAM_OUTPUTS <= VERT_RESULT_MAX);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001129}
jtgafb833d1999-08-19 00:55:39 +00001130
Brian Paul4d859f72004-01-23 18:57:05 +00001131
Keith Whitwell6dc85572003-07-17 13:43:59 +00001132/**
Brian Paul5e2e96b2006-05-15 15:26:04 +00001133 * Do some sanity checks on the limits/constants for the given context.
1134 * Only called the first time a context is bound.
1135 */
1136static void
1137check_context_limits(GLcontext *ctx)
1138{
1139 /* Many context limits/constants are limited by the size of
1140 * internal arrays.
1141 */
1142 assert(ctx->Const.MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS);
1143 assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS);
1144 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS);
1145 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS);
1146
1147 assert(ctx->Const.MaxViewportWidth <= MAX_WIDTH);
1148 assert(ctx->Const.MaxViewportHeight <= MAX_WIDTH);
1149
1150 /* make sure largest texture image is <= MAX_WIDTH in size */
1151 assert((1 << (ctx->Const.MaxTextureLevels -1 )) <= MAX_WIDTH);
1152 assert((1 << (ctx->Const.MaxCubeTextureLevels -1 )) <= MAX_WIDTH);
1153 assert((1 << (ctx->Const.Max3DTextureLevels -1 )) <= MAX_WIDTH);
1154
1155 assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS);
1156
1157 /* XXX probably add more tests */
1158}
1159
1160
1161/**
Keith Whitwell6dc85572003-07-17 13:43:59 +00001162 * Initialize the attribute groups in a GL context.
1163 *
1164 * \param ctx GL context.
1165 *
1166 * Initializes all the attributes, calling the respective <tt>init*</tt>
1167 * functions for the more complex data structures.
1168 */
1169static GLboolean
1170init_attrib_groups( GLcontext *ctx )
1171{
1172 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001173
Keith Whitwell6dc85572003-07-17 13:43:59 +00001174 /* Constants */
1175 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001176
Brian Paul4d053dd2000-01-14 04:45:47 +00001177 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001178 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001179
Keith Whitwell6dc85572003-07-17 13:43:59 +00001180 /* Attribute Groups */
1181 _mesa_init_accum( ctx );
1182 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001183 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001184 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001185 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001186 _mesa_init_current( ctx );
1187 _mesa_init_depth( ctx );
1188 _mesa_init_debug( ctx );
1189 _mesa_init_display_list( ctx );
1190 _mesa_init_eval( ctx );
1191 _mesa_init_feedback( ctx );
1192 _mesa_init_fog( ctx );
1193 _mesa_init_histogram( ctx );
1194 _mesa_init_hint( ctx );
1195 _mesa_init_line( ctx );
1196 _mesa_init_lighting( ctx );
1197 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001198 _mesa_init_multisample( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001199 _mesa_init_pixel( ctx );
1200 _mesa_init_point( ctx );
1201 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001202 _mesa_init_program( ctx );
Brian Paul4fb99502005-09-02 13:42:49 +00001203 _mesa_init_query( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001204 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001205 _mesa_init_scissor( ctx );
Brian0bf5dbe2006-12-19 18:02:41 -07001206 _mesa_init_shader_state( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001207 _mesa_init_stencil( ctx );
1208 _mesa_init_transform( ctx );
1209 _mesa_init_varray( ctx );
1210 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001211
Keith Whitwell6dc85572003-07-17 13:43:59 +00001212 if (!_mesa_init_texture( ctx ))
1213 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001214
Brian Paul8f04c122004-04-27 13:39:20 +00001215 _mesa_init_texture_s3tc( ctx );
1216 _mesa_init_texture_fxt1( ctx );
1217
Brian Paul4d053dd2000-01-14 04:45:47 +00001218 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001219 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001220 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001221 ctx->_Facing = 0;
Brian Paul4d053dd2000-01-14 04:45:47 +00001222
Brian Paula3f13702003-04-01 16:41:50 +00001223 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001224}
1225
1226
Brian Paulf44898c2003-07-18 15:44:57 +00001227/**
Brian Paul21f69782004-11-27 05:05:32 +00001228 * This is the default function we plug into all dispatch table slots
1229 * This helps prevents a segfault when someone calls a GL function without
1230 * first checking if the extension's supported.
1231 */
1232static int
1233generic_nop(void)
1234{
1235 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1236 return 0;
1237}
1238
1239
1240/**
1241 * Allocate and initialize a new dispatch table.
1242 */
1243static struct _glapi_table *
1244alloc_dispatch_table(void)
1245{
1246 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1247 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1248 * Mesa we do this to accomodate different versions of libGL and various
1249 * DRI drivers.
1250 */
1251 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1252 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1253 struct _glapi_table *table =
1254 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1255 if (table) {
1256 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001257 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001258 for (i = 0; i < numEntries; i++) {
1259 entry[i] = (_glapi_proc) generic_nop;
1260 }
1261 }
1262 return table;
1263}
1264
1265
1266/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001267 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001268 *
1269 * This includes allocating all the other structs and arrays which hang off of
1270 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001271 * Note that the driver needs to pass in its dd_function_table here since
1272 * we need to at least call driverFunctions->NewTextureObject to create the
1273 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001274 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001275 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001276 *
1277 * Performs the imports and exports callback tables initialization, and
1278 * miscellaneous one-time initializations. If no shared context is supplied one
1279 * is allocated, and increase its reference count. Setups the GL API dispatch
1280 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1281 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1282 * for debug flags.
1283 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001284 * \param ctx the context to initialize
1285 * \param visual describes the visual attributes for this context
1286 * \param share_list points to context to share textures, display lists,
1287 * etc with, or NULL
1288 * \param driverFunctions table of device driver functions for this context
1289 * to use
1290 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001291 */
Brian Paul178a1c52000-04-22 01:05:00 +00001292GLboolean
1293_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001294 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001295 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001296 const struct dd_function_table *driverFunctions,
1297 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001298{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001299 ASSERT(driverContext);
1300 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001301 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001302
Brian Paul3c634522002-10-24 23:57:19 +00001303 /* If the driver wants core Mesa to use special imports, it'll have to
1304 * override these defaults.
1305 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001306 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001307
Brian Paul9a33a112002-06-13 04:28:29 +00001308 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001309 _mesa_init_default_exports( &(ctx->exports) );
1310
1311 /* misc one-time initializations */
1312 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001313
Brian Paulb1394fa2000-09-26 20:53:53 +00001314 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001315 ctx->DrawBuffer = NULL;
1316 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001317 ctx->WinSysDrawBuffer = NULL;
1318 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001319
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001320 /* Plug in driver functions and context pointer here.
1321 * This is important because when we call alloc_shared_state() below
1322 * we'll call ctx->Driver.NewTextureObject() to create the default
1323 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001324 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001325 ctx->Driver = *driverFunctions;
1326 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001327
jtgafb833d1999-08-19 00:55:39 +00001328 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001329 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001330 ctx->Shared = share_list->Shared;
1331 }
1332 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001333 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001334 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001335 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001336 }
1337 }
Brian Paul9560f052000-01-31 23:11:39 +00001338 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001339 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001340 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001341
Keith Whitwell6dc85572003-07-17 13:43:59 +00001342 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001343 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001344 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001345 }
jtgafb833d1999-08-19 00:55:39 +00001346
Brian Paul21f69782004-11-27 05:05:32 +00001347 /* setup the API dispatch tables */
1348 ctx->Exec = alloc_dispatch_table();
1349 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001350 if (!ctx->Exec || !ctx->Save) {
1351 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001352 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001353 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001354 }
Brian Paul21f69782004-11-27 05:05:32 +00001355 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001356 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001357#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001358 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001359 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001360 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001361 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001362 ctx->TnlModule.Current = NULL;
1363 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001364#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001365
Briana90046f2006-12-15 10:07:26 -07001366 ctx->VertexProgram._MaintainTnlProgram
1367 = (_mesa_getenv("MESA_TNL_PROG") != NULL);
1368 if (ctx->VertexProgram._MaintainTnlProgram)
1369 /* this is required... */
1370 ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
1371 else
1372 ctx->FragmentProgram._MaintainTexEnvProgram
1373 = (_mesa_getenv("MESA_TEX_PROG") != NULL);
Keith Whitwell47b29f52005-05-04 11:44:44 +00001374
Brian Paula96f8892005-09-13 01:19:29 +00001375 ctx->FirstTimeCurrent = GL_TRUE;
1376
Brian Paul4d053dd2000-01-14 04:45:47 +00001377 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001378}
1379
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001380
Brian Paulde4f4602003-07-03 02:15:06 +00001381/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001382 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001383 * Note that the driver needs to pass in its dd_function_table here since
1384 * we need to at least call driverFunctions->NewTextureObject to initialize
1385 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001386 *
1387 * \param visual a GLvisual pointer (we copy the struct contents)
1388 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001389 * \param driverFunctions points to the dd_function_table into which the
1390 * driver has plugged in all its special functions.
1391 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001392 *
1393 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001394 */
Brian Paul178a1c52000-04-22 01:05:00 +00001395GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001396_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001397 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001398 const struct dd_function_table *driverFunctions,
1399 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001400
Brian Paul4d053dd2000-01-14 04:45:47 +00001401{
Brian Paul4753d602002-06-15 02:38:15 +00001402 GLcontext *ctx;
1403
1404 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001405 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001406
Brian Paul3c634522002-10-24 23:57:19 +00001407 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001408 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001409 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001410
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001411 if (_mesa_initialize_context(ctx, visual, share_list,
1412 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001413 return ctx;
1414 }
1415 else {
Brian Paul3c634522002-10-24 23:57:19 +00001416 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001417 return NULL;
1418 }
1419}
1420
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001421
Keith Whitwell6dc85572003-07-17 13:43:59 +00001422/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001423 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001424 *
1425 * But doesn't free the GLcontext struct itself.
1426 *
1427 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001428 */
Brian Paul178a1c52000-04-22 01:05:00 +00001429void
Brian Paulb1394fa2000-09-26 20:53:53 +00001430_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001431{
Brian Paul4d053dd2000-01-14 04:45:47 +00001432 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001433 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001434 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001435 }
1436
Keith Whitwell6dc85572003-07-17 13:43:59 +00001437 _mesa_free_lighting_data( ctx );
1438 _mesa_free_eval_data( ctx );
1439 _mesa_free_texture_data( ctx );
1440 _mesa_free_matrix_data( ctx );
1441 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001442 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001443 _mesa_free_program_data(ctx);
Brian Paul4fb99502005-09-02 13:42:49 +00001444 _mesa_free_query_data(ctx);
Brian Paul21841f02004-08-14 14:28:11 +00001445
1446#if FEATURE_ARB_vertex_buffer_object
1447 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001448#endif
Brian Paulc04bb512006-07-11 21:56:43 +00001449 _mesa_delete_array_object(ctx, ctx->Array.DefaultArrayObj);
Brian Paulfd284452001-07-19 15:54:34 +00001450
Brian Paul65a66f52004-11-27 22:47:59 +00001451 /* free dispatch tables */
1452 _mesa_free(ctx->Exec);
1453 _mesa_free(ctx->Save);
1454
Brian Paul30f51ae2001-12-18 04:06:44 +00001455 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001456 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001457 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001458 assert(ctx->Shared->RefCount >= 0);
1459 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1460 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001461 /* free shared state */
1462 free_shared_state( ctx, ctx->Shared );
1463 }
1464
Brian Paul702ca202003-07-18 15:22:16 +00001465 if (ctx->Extensions.String)
Brian Paulc7e164f2006-06-30 15:44:30 +00001466 _mesa_free((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001467}
1468
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001469
Keith Whitwell6dc85572003-07-17 13:43:59 +00001470/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001471 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001472 *
1473 * \param ctx GL context.
1474 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001475 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001476 */
Brian Paul178a1c52000-04-22 01:05:00 +00001477void
Brian Paulb1394fa2000-09-26 20:53:53 +00001478_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001479{
1480 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001481 _mesa_free_context_data(ctx);
Brian Paulc7e164f2006-06-30 15:44:30 +00001482 _mesa_free( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001483 }
1484}
1485
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001486
Keith Whitwell6dc85572003-07-17 13:43:59 +00001487#if _HAVE_FULL_GL
1488/**
jtgafb833d1999-08-19 00:55:39 +00001489 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001490 *
1491 * \param src source context
1492 * \param dst destination context
1493 * \param mask bitwise OR of GL_*_BIT flags
1494 *
1495 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001496 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001497 * memcpy is not enough due to the existence of internal pointers in their data
1498 * structures.
jtgafb833d1999-08-19 00:55:39 +00001499 */
Brian Paul178a1c52000-04-22 01:05:00 +00001500void
Brian Paulb1394fa2000-09-26 20:53:53 +00001501_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001502{
1503 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001504 /* OK to memcpy */
1505 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001506 }
1507 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001508 /* OK to memcpy */
1509 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001510 }
1511 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001512 /* OK to memcpy */
1513 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001514 }
1515 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001516 /* OK to memcpy */
1517 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001518 }
1519 if (mask & GL_ENABLE_BIT) {
1520 /* no op */
1521 }
1522 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001523 /* OK to memcpy */
1524 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001525 }
1526 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001527 /* OK to memcpy */
1528 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001529 }
1530 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001531 /* OK to memcpy */
1532 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001533 }
1534 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001535 GLuint i;
1536 /* begin with memcpy */
Brian Paul2aabdc72006-02-24 18:19:11 +00001537 dst->Light = src->Light;
Brian Paul85d81602002-06-17 23:36:31 +00001538 /* fixup linked lists to prevent pointer insanity */
1539 make_empty_list( &(dst->Light.EnabledList) );
1540 for (i = 0; i < MAX_LIGHTS; i++) {
1541 if (dst->Light.Light[i].Enabled) {
1542 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1543 }
1544 }
jtgafb833d1999-08-19 00:55:39 +00001545 }
1546 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001547 /* OK to memcpy */
1548 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001549 }
1550 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001551 /* OK to memcpy */
1552 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001553 }
1554 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001555 /* OK to memcpy */
1556 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001557 }
1558 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001559 /* OK to memcpy */
1560 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001561 }
1562 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001563 /* OK to memcpy */
1564 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001565 }
1566 if (mask & GL_POLYGON_STIPPLE_BIT) {
1567 /* Use loop instead of MEMCPY due to problem with Portland Group's
1568 * C compiler. Reported by John Stone.
1569 */
Brian Paul85d81602002-06-17 23:36:31 +00001570 GLuint i;
1571 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001572 dst->PolygonStipple[i] = src->PolygonStipple[i];
1573 }
1574 }
1575 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001576 /* OK to memcpy */
1577 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001578 }
1579 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001580 /* OK to memcpy */
1581 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001582 }
1583 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001584 /* Cannot memcpy because of pointers */
1585 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001586 }
1587 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001588 /* OK to memcpy */
1589 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001590 }
1591 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001592 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1593 dst->Viewport.X = src->Viewport.X;
1594 dst->Viewport.Y = src->Viewport.Y;
1595 dst->Viewport.Width = src->Viewport.Width;
1596 dst->Viewport.Height = src->Viewport.Height;
1597 dst->Viewport.Near = src->Viewport.Near;
1598 dst->Viewport.Far = src->Viewport.Far;
1599 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001600 }
Brian Paul85d81602002-06-17 23:36:31 +00001601
Keith Whitwella96308c2000-10-30 13:31:59 +00001602 /* XXX FIXME: Call callbacks?
1603 */
1604 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001605}
Keith Whitwell23caf202000-11-16 21:05:34 +00001606#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001607
1608
Brian Paulb1d53d92003-06-11 18:48:19 +00001609/**
1610 * Check if the given context can render into the given framebuffer
1611 * by checking visual attributes.
Brian Paulca007cb2006-03-07 03:01:26 +00001612 *
1613 * XXX this may go away someday because we're moving toward more freedom
1614 * in binding contexts to drawables with different visual attributes.
1615 * The GL_EXT_f_b_o extension is prompting some of that.
1616 *
Brian Paulb1d53d92003-06-11 18:48:19 +00001617 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1618 */
1619static GLboolean
1620check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1621{
1622 const GLvisual *ctxvis = &ctx->Visual;
1623 const GLvisual *bufvis = &buffer->Visual;
1624
1625 if (ctxvis == bufvis)
1626 return GL_TRUE;
1627
1628 if (ctxvis->rgbMode != bufvis->rgbMode)
1629 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001630#if 0
1631 /* disabling this fixes the fgl_glxgears pbuffer demo */
Brian Paulb1d53d92003-06-11 18:48:19 +00001632 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1633 return GL_FALSE;
Brian Pauld75963d2006-03-07 02:57:04 +00001634#endif
Brian Paulb1d53d92003-06-11 18:48:19 +00001635 if (ctxvis->stereoMode && !bufvis->stereoMode)
1636 return GL_FALSE;
1637 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1638 return GL_FALSE;
1639 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1640 return GL_FALSE;
1641 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1642 return GL_FALSE;
1643 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1644 return GL_FALSE;
1645 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1646 return GL_FALSE;
1647 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1648 return GL_FALSE;
1649 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1650 return GL_FALSE;
1651 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1652 return GL_FALSE;
1653
1654 return GL_TRUE;
1655}
1656
1657
Keith Whitwell6dc85572003-07-17 13:43:59 +00001658/**
Brian Paula702bbf2005-09-14 03:11:36 +00001659 * Do one-time initialization for the given framebuffer. Specifically,
1660 * ask the driver for the window's current size and update the framebuffer
1661 * object to match.
1662 * Really, the device driver should totally take care of this.
1663 */
1664static void
1665initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb)
1666{
1667 GLuint width, height;
Brian Paul55e42e52006-10-17 17:43:47 +00001668 if (ctx->Driver.GetBufferSize) {
1669 ctx->Driver.GetBufferSize(fb, &width, &height);
1670 if (ctx->Driver.ResizeBuffers)
1671 ctx->Driver.ResizeBuffers(ctx, fb, width, height);
1672 fb->Initialized = GL_TRUE;
1673 }
Brian Paula702bbf2005-09-14 03:11:36 +00001674}
1675
1676
1677/**
1678 * Bind the given context to the given drawBuffer and readBuffer and
1679 * make it the current context for the calling thread.
1680 * We'll render into the drawBuffer and read pixels from the
1681 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001682 *
Brian Paula702bbf2005-09-14 03:11:36 +00001683 * We check that the context's and framebuffer's visuals are compatible
1684 * and return immediately if they're not.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001685 *
Brian Paula702bbf2005-09-14 03:11:36 +00001686 * \param newCtx the new GL context. If NULL then there will be no current GL
1687 * context.
1688 * \param drawBuffer the drawing framebuffer
1689 * \param readBuffer the reading framebuffer
Brian Paul00037781999-12-17 14:52:35 +00001690 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001691void
Brian Paule4b23562005-05-04 20:11:35 +00001692_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1693 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001694{
Briana90046f2006-12-15 10:07:26 -07001695#if 0
1696 GET_CURRENT_CONTEXT(oldCtx);
1697#endif
1698
Keith Whitwell5c728372005-05-12 10:22:29 +00001699 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001700 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001701
Brian Paulbe3602d2001-02-28 00:27:48 +00001702 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001703 */
Brian Paulf1038f82006-03-20 15:20:57 +00001704 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001705 if (!check_compatible(newCtx, drawBuffer)) {
1706 _mesa_warning(newCtx,
1707 "MakeCurrent: incompatible visuals for context and drawbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001708 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001709 }
Brian Paulb1d53d92003-06-11 18:48:19 +00001710 }
Brian Paulf1038f82006-03-20 15:20:57 +00001711 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
Brian Pauld75963d2006-03-07 02:57:04 +00001712 if (!check_compatible(newCtx, readBuffer)) {
1713 _mesa_warning(newCtx,
1714 "MakeCurrent: incompatible visuals for context and readbuffer");
Brian Paulb1d53d92003-06-11 18:48:19 +00001715 return;
Brian Pauld75963d2006-03-07 02:57:04 +00001716 }
Brian Paulbe3602d2001-02-28 00:27:48 +00001717 }
1718
Briana90046f2006-12-15 10:07:26 -07001719#if 0 /** XXX enable this someday */
1720 if (oldCtx && oldCtx != newCtx) {
1721 /* unbind old context's draw/read buffers */
1722 if (oldCtx->DrawBuffer && oldCtx->DrawBuffer->Name == 0) {
1723 oldCtx->DrawBuffer->RefCount--;
1724 oldCtx->DrawBuffer = NULL;
1725 }
1726 if (oldCtx->ReadBuffer && oldCtx->ReadBuffer->Name == 0) {
1727 oldCtx->ReadBuffer->RefCount--;
1728 oldCtx->ReadBuffer = NULL;
1729 }
1730 if (oldCtx->WinSysDrawBuffer) {
1731 ASSERT(oldCtx->WinSysDrawBuffer->Name == 0);
1732 oldCtx->WinSysDrawBuffer->RefCount--;
1733 oldCtx->WinSysDrawBuffer = NULL;
1734 }
1735 if (oldCtx->WinSysReadBuffer) {
1736 ASSERT(oldCtx->WinSysReadBuffer->Name == 0);
1737 oldCtx->WinSysReadBuffer->RefCount--;
1738 oldCtx->WinSysReadBuffer = NULL;
1739 }
1740 }
1741#endif
1742
Brian Paulc6c0f942006-03-16 18:05:25 +00001743 /* We used to call _glapi_check_multithread() here. Now do it in drivers */
Brian Paulf9b97d92000-01-28 20:17:42 +00001744 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001745 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001746
Keith Whitwell23caf202000-11-16 21:05:34 +00001747 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001748 _glapi_set_dispatch(NULL); /* none current */
1749 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001750 else {
1751 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001752
Keith Whitwell23caf202000-11-16 21:05:34 +00001753 if (drawBuffer && readBuffer) {
1754 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001755
Brian Paule4b23562005-05-04 20:11:35 +00001756 ASSERT(drawBuffer->Name == 0);
1757 ASSERT(readBuffer->Name == 0);
1758 newCtx->WinSysDrawBuffer = drawBuffer;
1759 newCtx->WinSysReadBuffer = readBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001760
1761 /*
1762 * Only set the context's Draw/ReadBuffer fields if they're NULL
1763 * or not bound to a user-created FBO.
1764 */
Brian Paule4b23562005-05-04 20:11:35 +00001765 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1766 newCtx->DrawBuffer = drawBuffer;
Brian Paulf1038f82006-03-20 15:20:57 +00001767 }
1768 if (!newCtx->ReadBuffer || newCtx->ReadBuffer->Name == 0) {
Brian Paule4b23562005-05-04 20:11:35 +00001769 newCtx->ReadBuffer = readBuffer;
1770 }
Brian Paulbb5c84f2005-07-01 01:22:25 +00001771
Keith Whitwell23caf202000-11-16 21:05:34 +00001772 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001773
Brian Paul4d4add02006-10-15 19:26:43 +00001774#if 1
1775 /* We want to get rid of these lines: */
1776
Keith Whitwell6dc85572003-07-17 13:43:59 +00001777#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001778 if (!drawBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001779 initialize_framebuffer_size(newCtx, drawBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001780 }
Brian Paul65a66f52004-11-27 22:47:59 +00001781 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paula702bbf2005-09-14 03:11:36 +00001782 initialize_framebuffer_size(newCtx, readBuffer);
Brian Paul10d7f542002-06-17 23:38:14 +00001783 }
Keith Whitwellf9bfdb12006-09-22 11:36:30 +00001784
1785 _mesa_resizebuffers(newCtx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001786#endif
Brian Paul4d4add02006-10-15 19:26:43 +00001787
1788#else
1789 /* We want the drawBuffer and readBuffer to be initialized by
1790 * the driver.
1791 * This generally means the Width and Height match the actual
1792 * window size and the renderbuffers (both hardware and software
1793 * based) are allocated to match. The later can generally be
1794 * done with a call to _mesa_resize_framebuffer().
1795 *
1796 * It's theoretically possible for a buffer to have zero width
1797 * or height, but for now, assert check that the driver did what's
1798 * expected of it.
1799 */
1800 ASSERT(drawBuffer->Width > 0);
1801 ASSERT(drawBuffer->Height > 0);
1802#endif
1803
Brian Paul65a66f52004-11-27 22:47:59 +00001804 if (newCtx->FirstTimeCurrent) {
1805 /* set initial viewport and scissor size now */
Brian Paula702bbf2005-09-14 03:11:36 +00001806 _mesa_set_viewport(newCtx, 0, 0,
1807 drawBuffer->Width, drawBuffer->Height);
Brian Pauldb79d2a2006-03-29 18:41:19 +00001808 _mesa_set_scissor(newCtx, 0, 0,
1809 drawBuffer->Width, drawBuffer->Height );
Brian Paul5e2e96b2006-05-15 15:26:04 +00001810 check_context_limits(newCtx);
Brian Paul65a66f52004-11-27 22:47:59 +00001811 }
Brian Paul00037781999-12-17 14:52:35 +00001812 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001813
Keith Whitwell23caf202000-11-16 21:05:34 +00001814 /* We can use this to help debug user's problems. Tell them to set
1815 * the MESA_INFO env variable before running their app. Then the
1816 * first time each context is made current we'll print some useful
1817 * information.
1818 */
1819 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001820 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001821 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001822 }
1823 newCtx->FirstTimeCurrent = GL_FALSE;
1824 }
Brian Paul00037781999-12-17 14:52:35 +00001825 }
1826}
1827
Brian Paul635ee2d2005-04-15 17:25:07 +00001828
1829/**
1830 * Make context 'ctx' share the display lists, textures and programs
1831 * that are associated with 'ctxToShare'.
1832 * Any display lists, textures or programs associated with 'ctx' will
1833 * be deleted if nobody else is sharing them.
1834 */
1835GLboolean
1836_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1837{
1838 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1839 ctx->Shared->RefCount--;
1840 if (ctx->Shared->RefCount == 0) {
1841 free_shared_state(ctx, ctx->Shared);
1842 }
1843 ctx->Shared = ctxToShare->Shared;
1844 ctx->Shared->RefCount++;
1845 return GL_TRUE;
1846 }
1847 else {
1848 return GL_FALSE;
1849 }
1850}
1851
1852
1853
Keith Whitwell6dc85572003-07-17 13:43:59 +00001854/**
1855 * Get current context for the calling thread.
1856 *
1857 * \return pointer to the current GL context.
1858 *
1859 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1860 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001861 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001862GLcontext *
1863_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001864{
Brian Paulf9b97d92000-01-28 20:17:42 +00001865 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001866}
1867
Keith Whitwell6dc85572003-07-17 13:43:59 +00001868/**
1869 * Get context's current API dispatch table.
1870 *
1871 * It'll either be the immediate-mode execute dispatcher or the display list
1872 * compile dispatcher.
1873 *
1874 * \param ctx GL context.
1875 *
1876 * \return pointer to dispatch_table.
1877 *
1878 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001879 */
1880struct _glapi_table *
1881_mesa_get_dispatch(GLcontext *ctx)
1882{
1883 return ctx->CurrentDispatch;
1884}
1885
Keith Whitwell6dc85572003-07-17 13:43:59 +00001886/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001887
1888
jtgafb833d1999-08-19 00:55:39 +00001889/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001890/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001891/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001892/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001893
Keith Whitwell6dc85572003-07-17 13:43:59 +00001894/**
1895 * Record an error.
1896 *
1897 * \param ctx GL context.
1898 * \param error error code.
1899 *
1900 * Records the given error code and call the driver's dd_function_table::Error
1901 * function if defined.
1902 *
1903 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001904 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001905 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001906void
Brian Paul4e9676f2002-06-29 19:48:15 +00001907_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001908{
Brian Paul18a285a2002-03-16 00:53:15 +00001909 if (!ctx)
1910 return;
1911
Brian Paul7eb06032000-07-14 04:13:40 +00001912 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001913 ctx->ErrorValue = error;
1914 }
1915
1916 /* Call device driver's error handler, if any. This is used on the Mac. */
1917 if (ctx->Driver.Error) {
1918 (*ctx->Driver.Error)( ctx );
1919 }
1920}
1921
Keith Whitwell6dc85572003-07-17 13:43:59 +00001922/**
1923 * Execute glFinish().
1924 *
1925 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1926 * dd_function_table::Finish driver callback, if not NULL.
1927 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001928void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001929_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001930{
Brian Paulfa9df402000-02-02 19:16:46 +00001931 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001932 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001933 if (ctx->Driver.Finish) {
1934 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001935 }
1936}
1937
Keith Whitwell6dc85572003-07-17 13:43:59 +00001938/**
1939 * Execute glFlush().
1940 *
1941 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1942 * dd_function_table::Flush driver callback, if not NULL.
1943 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001944void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001945_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001946{
Brian Paulfa9df402000-02-02 19:16:46 +00001947 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001948 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001949 if (ctx->Driver.Flush) {
1950 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001951 }
jtgafb833d1999-08-19 00:55:39 +00001952}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001953
1954
Keith Whitwell6dc85572003-07-17 13:43:59 +00001955/*@}*/