blob: 588ef969f331497e3a759ba86798136e66120e18 [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 Paulde434842004-11-27 20:14:03 +00009 * Version: 6.3
jtgafb833d1999-08-19 00:55:39 +000010 *
Michal Krol9b3752c2005-01-13 14:08:47 +000011 * Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
jtgafb833d1999-08-19 00:55:39 +000012 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included
21 * in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
27 * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
28 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
Keith Whitwell6dc85572003-07-17 13:43:59 +000032/**
Brian Paul253204f2004-09-10 00:45:12 +000033 * \mainpage Mesa Main Module
Keith Whitwell6dc85572003-07-17 13:43:59 +000034 *
Brian Paul253204f2004-09-10 00:45:12 +000035 * \section MainIntroduction Introduction
Keith Whitwell6dc85572003-07-17 13:43:59 +000036 *
Brian Paul253204f2004-09-10 00:45:12 +000037 * The Mesa Main module consists of all the files in the main/ directory.
38 * Among the features of this module are:
39 * <UL>
40 * <LI> Structures to represent most GL state </LI>
41 * <LI> State set/get functions </LI>
42 * <LI> Display lists </LI>
43 * <LI> Texture unit, object and image handling </LI>
44 * <LI> Matrix and attribute stacks </LI>
45 * </UL>
Keith Whitwell6dc85572003-07-17 13:43:59 +000046 *
Brian Paul253204f2004-09-10 00:45:12 +000047 * Other modules are responsible for API dispatch, vertex transformation,
48 * point/line/triangle setup, rasterization, vertex array caching,
49 * vertex/fragment programs/shaders, etc.
Keith Whitwell6dc85572003-07-17 13:43:59 +000050 *
51 *
52 * \section AboutDoxygen About Doxygen
53 *
54 * If you're viewing this information as Doxygen-generated HTML you'll
55 * see the documentation index at the top of this page.
56 *
57 * The first line lists the Mesa source code modules.
58 * The second line lists the indexes available for viewing the documentation
59 * for each module.
60 *
61 * Selecting the <b>Main page</b> link will display a summary of the module
62 * (this page).
63 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000064 * Selecting <b>Data Structures</b> will list all C structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +000065 *
66 * Selecting the <b>File List</b> link will list all the source files in
67 * the module.
68 * Selecting a filename will show a list of all functions defined in that file.
69 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000070 * Selecting the <b>Data Fields</b> link will display a list of all
Keith Whitwell6dc85572003-07-17 13:43:59 +000071 * documented structure members.
72 *
Jose Fonseca1a5709d2003-09-17 17:14:11 +000073 * Selecting the <b>Globals</b> link will display a list
Keith Whitwell6dc85572003-07-17 13:43:59 +000074 * of all functions, structures, global variables and macros in the module.
75 *
76 */
77
78
Brian Paulfbd8f211999-11-11 01:22:25 +000079#include "glheader.h"
Brian Paul3c634522002-10-24 23:57:19 +000080#include "imports.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000081#include "accum.h"
82#include "attrib.h"
83#include "blend.h"
Brian Paulb1394fa2000-09-26 20:53:53 +000084#include "buffers.h"
Brian Paul148a2842003-09-17 03:40:11 +000085#include "bufferobj.h"
Brian Paul4bdcfe52000-04-17 17:57:04 +000086#include "colortab.h"
jtgafb833d1999-08-19 00:55:39 +000087#include "context.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000088#include "debug.h"
89#include "depth.h"
jtgafb833d1999-08-19 00:55:39 +000090#include "dlist.h"
91#include "eval.h"
92#include "enums.h"
Brian Paul585a68c1999-09-11 11:31:34 +000093#include "extensions.h"
Brian Paule4b23562005-05-04 20:11:35 +000094#include "fbobject.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +000095#include "feedback.h"
jtgafb833d1999-08-19 00:55:39 +000096#include "fog.h"
Brian Paulb7a43041999-11-30 20:34:51 +000097#include "get.h"
Brian Paul9560f052000-01-31 23:11:39 +000098#include "glthread.h"
Brian Paulf44898c2003-07-18 15:44:57 +000099#include "glapioffsets.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000100#include "histogram.h"
101#include "hint.h"
jtgafb833d1999-08-19 00:55:39 +0000102#include "hash.h"
103#include "light.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000104#include "lines.h"
jtgafb833d1999-08-19 00:55:39 +0000105#include "macros.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000106#include "matrix.h"
Brian Paul05944c02003-07-22 03:51:46 +0000107#include "occlude.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000108#include "pixel.h"
109#include "points.h"
110#include "polygon.h"
Brian Paul31732772003-09-18 16:39:09 +0000111#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
112#include "program.h"
113#endif
Keith Whitwell6dc85572003-07-17 13:43:59 +0000114#include "rastpos.h"
jtgafb833d1999-08-19 00:55:39 +0000115#include "simple_list.h"
Brian Paulfa9df402000-02-02 19:16:46 +0000116#include "state.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000117#include "stencil.h"
Brian Paul8f04c122004-04-27 13:39:20 +0000118#include "texcompress.h"
jtgafb833d1999-08-19 00:55:39 +0000119#include "teximage.h"
120#include "texobj.h"
Brian Paul85d81602002-06-17 23:36:31 +0000121#include "texstate.h"
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +0000122#include "mtypes.h"
jtgafb833d1999-08-19 00:55:39 +0000123#include "varray.h"
Gareth Hughesd4eb6652001-03-12 01:32:20 +0000124#include "vtxfmt.h"
Keith Whitwell6dc85572003-07-17 13:43:59 +0000125#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000126#include "math/m_translate.h"
Keith Whitwell23caf202000-11-16 21:05:34 +0000127#include "math/m_matrix.h"
128#include "math/m_xform.h"
Keith Whitwellf4b02d12001-01-05 05:31:42 +0000129#include "math/mathmod.h"
Brian Paulddc82ee2005-02-05 19:56:45 +0000130#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000131#include "shaderobjects.h"
jtgafb833d1999-08-19 00:55:39 +0000132
davem69775355a2001-06-05 23:54:00 +0000133#ifdef USE_SPARC_ASM
Ian Romanicke16f6e32004-06-26 00:02:51 +0000134#include "sparc/sparc.h"
davem69775355a2001-06-05 23:54:00 +0000135#endif
jtgafb833d1999-08-19 00:55:39 +0000136
Keith Whitwell23caf202000-11-16 21:05:34 +0000137#ifndef MESA_VERBOSE
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000138int MESA_VERBOSE = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000139#endif
140
141#ifndef MESA_DEBUG_FLAGS
Keith Whitwell306d3fc2002-04-09 16:56:50 +0000142int MESA_DEBUG_FLAGS = 0;
Keith Whitwell23caf202000-11-16 21:05:34 +0000143#endif
Brian Paulb1394fa2000-09-26 20:53:53 +0000144
Brian Paul86b84272001-12-14 02:50:01 +0000145
Brian Paul27558a12003-03-01 01:50:20 +0000146/* ubyte -> float conversion */
147GLfloat _mesa_ubyte_to_float_color_tab[256];
148
Brian Paul9a33a112002-06-13 04:28:29 +0000149static void
150free_shared_state( GLcontext *ctx, struct gl_shared_state *ss );
151
Brian Paul86b84272001-12-14 02:50:01 +0000152
Brian Paulb1394fa2000-09-26 20:53:53 +0000153/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000154/** \name OpenGL SI-style interface (new in Mesa 3.5)
155 *
156 * \if subset
157 * \note Most of these functions are never called in the Mesa subset.
158 * \endif
159 */
160/*@{*/
Brian Paulb1394fa2000-09-26 20:53:53 +0000161
Keith Whitwell6dc85572003-07-17 13:43:59 +0000162/**
163 * Destroy context callback.
164 *
165 * \param gc context.
166 * \return GL_TRUE on success, or GL_FALSE on failure.
167 *
168 * \ifnot subset
169 * Called by window system/device driver (via __GLexports::destroyCurrent) when
170 * the rendering context is to be destroyed.
171 * \endif
172 *
173 * Frees the context data and the context structure.
Brian Paul9a33a112002-06-13 04:28:29 +0000174 */
175GLboolean
176_mesa_destroyContext(__GLcontext *gc)
Brian Paulb1394fa2000-09-26 20:53:53 +0000177{
178 if (gc) {
179 _mesa_free_context_data(gc);
Brian Paul3c634522002-10-24 23:57:19 +0000180 _mesa_free(gc);
Brian Paulb1394fa2000-09-26 20:53:53 +0000181 }
182 return GL_TRUE;
183}
184
Keith Whitwell6dc85572003-07-17 13:43:59 +0000185/**
186 * Unbind context callback.
187 *
188 * \param gc context.
189 * \return GL_TRUE on success, or GL_FALSE on failure.
190 *
191 * \ifnot subset
192 * Called by window system/device driver (via __GLexports::loseCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000193 * when the rendering context is made non-current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000194 * \endif
195 *
196 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000197 */
198GLboolean
199_mesa_loseCurrent(__GLcontext *gc)
200{
201 /* XXX unbind context from thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000202 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000203 return GL_TRUE;
204}
205
Keith Whitwell6dc85572003-07-17 13:43:59 +0000206/**
207 * Bind context callback.
208 *
209 * \param gc context.
210 * \return GL_TRUE on success, or GL_FALSE on failure.
211 *
212 * \ifnot subset
213 * Called by window system/device driver (via __GLexports::makeCurrent)
Brian Paul9a33a112002-06-13 04:28:29 +0000214 * when the rendering context is made current.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000215 * \endif
216 *
217 * No-op
Brian Paul9a33a112002-06-13 04:28:29 +0000218 */
219GLboolean
220_mesa_makeCurrent(__GLcontext *gc)
221{
222 /* XXX bind context to thread */
Brian Paula6c423d2004-08-25 15:59:48 +0000223 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000224 return GL_TRUE;
225}
226
Keith Whitwell6dc85572003-07-17 13:43:59 +0000227/**
228 * Share context callback.
229 *
230 * \param gc context.
231 * \param gcShare shared context.
232 * \return GL_TRUE on success, or GL_FALSE on failure.
233 *
234 * \ifnot subset
235 * Called by window system/device driver (via __GLexports::shareContext)
236 * \endif
237 *
238 * Update the shared context reference count, gl_shared_state::RefCount.
Brian Paul9a33a112002-06-13 04:28:29 +0000239 */
240GLboolean
241_mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare)
242{
243 if (gc && gcShare && gc->Shared && gcShare->Shared) {
244 gc->Shared->RefCount--;
245 if (gc->Shared->RefCount == 0) {
246 free_shared_state(gc, gc->Shared);
247 }
248 gc->Shared = gcShare->Shared;
249 gc->Shared->RefCount++;
250 return GL_TRUE;
251 }
252 else {
253 return GL_FALSE;
254 }
255}
256
Keith Whitwell6dc85572003-07-17 13:43:59 +0000257
258#if _HAVE_FULL_GL
259/**
260 * Copy context callback.
261 */
Brian Paul9a33a112002-06-13 04:28:29 +0000262GLboolean
263_mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask)
264{
265 if (dst && src) {
266 _mesa_copy_context( src, dst, mask );
267 return GL_TRUE;
268 }
269 else {
270 return GL_FALSE;
271 }
272}
Keith Whitwell6dc85572003-07-17 13:43:59 +0000273#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000274
Keith Whitwell6dc85572003-07-17 13:43:59 +0000275/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000276GLboolean
277_mesa_forceCurrent(__GLcontext *gc)
278{
Brian Paula6c423d2004-08-25 15:59:48 +0000279 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000280 return GL_TRUE;
281}
282
Keith Whitwell6dc85572003-07-17 13:43:59 +0000283/**
284 * Windows/buffer resizing notification callback.
285 *
286 * \param gc GL context.
287 * \return GL_TRUE on success, or GL_FALSE on failure.
288 */
Brian Paul9a33a112002-06-13 04:28:29 +0000289GLboolean
290_mesa_notifyResize(__GLcontext *gc)
291{
292 GLint x, y;
293 GLuint width, height;
294 __GLdrawablePrivate *d = gc->imports.getDrawablePrivate(gc);
295 if (!d || !d->getDrawableSize)
296 return GL_FALSE;
297 d->getDrawableSize( d, &x, &y, &width, &height );
298 /* update viewport, resize software buffers, etc. */
299 return GL_TRUE;
300}
301
Keith Whitwell6dc85572003-07-17 13:43:59 +0000302/**
303 * Window/buffer destruction notification callback.
304 *
305 * \param gc GL context.
306 *
307 * Called when the context's window/buffer is going to be destroyed.
308 *
309 * No-op
310 */
Brian Paul9a33a112002-06-13 04:28:29 +0000311void
312_mesa_notifyDestroy(__GLcontext *gc)
313{
Brian Paul60b6e4f2002-10-14 17:08:17 +0000314 /* Unbind from it. */
Brian Paula6c423d2004-08-25 15:59:48 +0000315 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000316}
317
Keith Whitwell6dc85572003-07-17 13:43:59 +0000318/**
319 * Swap buffers notification callback.
320 *
321 * \param gc GL context.
322 *
323 * Called by window system just before swapping buffers.
Brian Paul9a33a112002-06-13 04:28:29 +0000324 * We have to finish any pending rendering.
325 */
326void
327_mesa_notifySwapBuffers(__GLcontext *gc)
328{
329 FLUSH_VERTICES( gc, 0 );
330}
331
Keith Whitwell6dc85572003-07-17 13:43:59 +0000332/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000333struct __GLdispatchStateRec *
334_mesa_dispatchExec(__GLcontext *gc)
335{
Brian Paula6c423d2004-08-25 15:59:48 +0000336 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000337 return NULL;
338}
339
Keith Whitwell6dc85572003-07-17 13:43:59 +0000340/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000341void
342_mesa_beginDispatchOverride(__GLcontext *gc)
343{
Brian Paula6c423d2004-08-25 15:59:48 +0000344 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000345}
346
Keith Whitwell6dc85572003-07-17 13:43:59 +0000347/** No-op */
Brian Paul9a33a112002-06-13 04:28:29 +0000348void
349_mesa_endDispatchOverride(__GLcontext *gc)
350{
Brian Paula6c423d2004-08-25 15:59:48 +0000351 (void) gc;
Brian Paul9a33a112002-06-13 04:28:29 +0000352}
353
Keith Whitwell6dc85572003-07-17 13:43:59 +0000354/**
355 * \ifnot subset
356 * Setup the exports.
357 *
358 * The window system will call these functions when it needs Mesa to do
359 * something.
360 *
361 * \note Device drivers should override these functions! For example,
Brian Paul9a33a112002-06-13 04:28:29 +0000362 * the Xlib driver should plug in the XMesa*-style functions into this
363 * structure. The XMesa-style functions should then call the _mesa_*
364 * version of these functions. This is an approximation to OO design
365 * (inheritance and virtual functions).
Keith Whitwell6dc85572003-07-17 13:43:59 +0000366 * \endif
367 *
368 * \if subset
369 * No-op.
370 *
371 * \endif
Brian Paul9a33a112002-06-13 04:28:29 +0000372 */
373static void
374_mesa_init_default_exports(__GLexports *exports)
375{
Keith Whitwell6dc85572003-07-17 13:43:59 +0000376#if _HAVE_FULL_GL
Brian Paul9a33a112002-06-13 04:28:29 +0000377 exports->destroyContext = _mesa_destroyContext;
378 exports->loseCurrent = _mesa_loseCurrent;
379 exports->makeCurrent = _mesa_makeCurrent;
380 exports->shareContext = _mesa_shareContext;
381 exports->copyContext = _mesa_copyContext;
382 exports->forceCurrent = _mesa_forceCurrent;
383 exports->notifyResize = _mesa_notifyResize;
Brian Paul2f35d5e2002-06-13 04:31:09 +0000384 exports->notifyDestroy = _mesa_notifyDestroy;
Brian Paul9a33a112002-06-13 04:28:29 +0000385 exports->notifySwapBuffers = _mesa_notifySwapBuffers;
386 exports->dispatchExec = _mesa_dispatchExec;
387 exports->beginDispatchOverride = _mesa_beginDispatchOverride;
388 exports->endDispatchOverride = _mesa_endDispatchOverride;
Brian Paula6c423d2004-08-25 15:59:48 +0000389#else
390 (void) exports;
Keith Whitwell6dc85572003-07-17 13:43:59 +0000391#endif
Brian Paul9a33a112002-06-13 04:28:29 +0000392}
393
Keith Whitwell6dc85572003-07-17 13:43:59 +0000394/**
395 * Exported OpenGL SI interface.
396 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000397__GLcontext *
398__glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes)
399{
400 GLcontext *ctx;
401
Brian Paul4753d602002-06-15 02:38:15 +0000402 ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext));
Brian Paulb1394fa2000-09-26 20:53:53 +0000403 if (ctx == NULL) {
404 return NULL;
405 }
Brian Paul60b6e4f2002-10-14 17:08:17 +0000406
Brian Pauld3fd7ba2004-01-20 02:49:27 +0000407 /* XXX doesn't work at this time */
408 _mesa_initialize_context(ctx, modes, NULL, NULL, NULL);
Brian Paulb1394fa2000-09-26 20:53:53 +0000409 ctx->imports = *imports;
Brian Paulb1394fa2000-09-26 20:53:53 +0000410
411 return ctx;
412}
413
Keith Whitwell6dc85572003-07-17 13:43:59 +0000414/**
415 * Exported OpenGL SI interface.
416 */
Brian Paulb1394fa2000-09-26 20:53:53 +0000417void
418__glCoreNopDispatch(void)
419{
420#if 0
421 /* SI */
422 __gl_dispatch = __glNopDispatchState;
423#else
424 /* Mesa */
425 _glapi_set_dispatch(NULL);
426#endif
427}
428
Keith Whitwell6dc85572003-07-17 13:43:59 +0000429/*@}*/
430
Brian Paulb1394fa2000-09-26 20:53:53 +0000431
jtgafb833d1999-08-19 00:55:39 +0000432/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000433/** \name GL Visual allocation/destruction */
Brian Paul4d053dd2000-01-14 04:45:47 +0000434/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000435/*@{*/
Brian Paul4d053dd2000-01-14 04:45:47 +0000436
Keith Whitwell6dc85572003-07-17 13:43:59 +0000437/**
Brian Paul894844a2004-03-21 17:05:03 +0000438 * Allocates a GLvisual structure and initializes it via
439 * _mesa_initialize_visual().
Keith Whitwell6dc85572003-07-17 13:43:59 +0000440 *
441 * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode.
442 * \param dbFlag double buffering
443 * \param stereoFlag stereo buffer
444 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
445 * is acceptable but the actual depth type will be GLushort or GLuint as
446 * needed.
447 * \param stencilBits requested minimum bits per stencil buffer value
448 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer.
449 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
450 * \param redBits number of bits per color component in frame buffer for RGB(A)
451 * mode. We always use 8 in core Mesa though.
452 * \param greenBits same as above.
453 * \param blueBits same as above.
454 * \param alphaBits same as above.
455 * \param numSamples not really used.
456 *
457 * \return pointer to new GLvisual or NULL if requested parameters can't be
458 * met.
459 *
Brian Paul894844a2004-03-21 17:05:03 +0000460 * \note Need to add params for level and numAuxBuffers (at least)
Brian Paul4d053dd2000-01-14 04:45:47 +0000461 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000462GLvisual *
463_mesa_create_visual( GLboolean rgbFlag,
Brian Paulb371e0d2000-03-31 01:05:51 +0000464 GLboolean dbFlag,
465 GLboolean stereoFlag,
466 GLint redBits,
467 GLint greenBits,
468 GLint blueBits,
469 GLint alphaBits,
470 GLint indexBits,
471 GLint depthBits,
472 GLint stencilBits,
473 GLint accumRedBits,
474 GLint accumGreenBits,
475 GLint accumBlueBits,
476 GLint accumAlphaBits,
477 GLint numSamples )
Brian Paul4d053dd2000-01-14 04:45:47 +0000478{
Brian Paul178a1c52000-04-22 01:05:00 +0000479 GLvisual *vis = (GLvisual *) CALLOC( sizeof(GLvisual) );
480 if (vis) {
Brian Paule70c6232000-05-04 13:53:55 +0000481 if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000482 redBits, greenBits, blueBits, alphaBits,
483 indexBits, depthBits, stencilBits,
484 accumRedBits, accumGreenBits,
485 accumBlueBits, accumAlphaBits,
Brian Paulb1394fa2000-09-26 20:53:53 +0000486 numSamples)) {
Brian Paul178a1c52000-04-22 01:05:00 +0000487 FREE(vis);
488 return NULL;
489 }
490 }
491 return vis;
492}
493
Keith Whitwell6dc85572003-07-17 13:43:59 +0000494/**
Brian Paul894844a2004-03-21 17:05:03 +0000495 * Makes some sanity checks and fills in the fields of the
Brian Paule4b23562005-05-04 20:11:35 +0000496 * GLvisual object with the given parameters. If the caller needs
497 * to set additional fields, he should just probably init the whole GLvisual
498 * object himself.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000499 * \return GL_TRUE on success, or GL_FALSE on failure.
500 *
501 * \sa _mesa_create_visual() above for the parameter description.
Brian Paul178a1c52000-04-22 01:05:00 +0000502 */
503GLboolean
504_mesa_initialize_visual( GLvisual *vis,
505 GLboolean rgbFlag,
Brian Paul178a1c52000-04-22 01:05:00 +0000506 GLboolean dbFlag,
507 GLboolean stereoFlag,
508 GLint redBits,
509 GLint greenBits,
510 GLint blueBits,
511 GLint alphaBits,
512 GLint indexBits,
513 GLint depthBits,
514 GLint stencilBits,
515 GLint accumRedBits,
516 GLint accumGreenBits,
517 GLint accumBlueBits,
518 GLint accumAlphaBits,
519 GLint numSamples )
520{
521 assert(vis);
Brian Paul4d053dd2000-01-14 04:45:47 +0000522
Brian Pauled30dfa2000-03-03 17:47:39 +0000523 if (depthBits < 0 || depthBits > 32) {
Brian Paul178a1c52000-04-22 01:05:00 +0000524 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000525 }
Brian Paule4b23562005-05-04 20:11:35 +0000526 if (stencilBits < 0 || stencilBits > STENCIL_BITS) {
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 (accumRedBits < 0 || accumRedBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000530 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000531 }
Brian Paule4b23562005-05-04 20:11:35 +0000532 if (accumGreenBits < 0 || accumGreenBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000533 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000534 }
Brian Paule4b23562005-05-04 20:11:35 +0000535 if (accumBlueBits < 0 || accumBlueBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000536 return GL_FALSE;
Brian Paulb371e0d2000-03-31 01:05:51 +0000537 }
Brian Paule4b23562005-05-04 20:11:35 +0000538 if (accumAlphaBits < 0 || accumAlphaBits > ACCUM_BITS) {
Brian Paul178a1c52000-04-22 01:05:00 +0000539 return GL_FALSE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000540 }
541
Brian Paulb6bcae52001-01-23 23:39:36 +0000542 vis->rgbMode = rgbFlag;
543 vis->doubleBufferMode = dbFlag;
544 vis->stereoMode = stereoFlag;
Brian Paul153f1542002-10-29 15:04:35 +0000545
Brian Paulb6bcae52001-01-23 23:39:36 +0000546 vis->redBits = redBits;
547 vis->greenBits = greenBits;
548 vis->blueBits = blueBits;
549 vis->alphaBits = alphaBits;
Brian Paule4b23562005-05-04 20:11:35 +0000550 vis->rgbBits = redBits + greenBits + blueBits;
Brian Paul4d053dd2000-01-14 04:45:47 +0000551
Brian Paulb6bcae52001-01-23 23:39:36 +0000552 vis->indexBits = indexBits;
553 vis->depthBits = depthBits;
Brian Paule4b23562005-05-04 20:11:35 +0000554 vis->stencilBits = stencilBits;
555
556 vis->accumRedBits = accumRedBits;
557 vis->accumGreenBits = accumGreenBits;
558 vis->accumBlueBits = accumBlueBits;
559 vis->accumAlphaBits = accumAlphaBits;
Brian Pauled30dfa2000-03-03 17:47:39 +0000560
Brian Paul153f1542002-10-29 15:04:35 +0000561 vis->haveAccumBuffer = accumRedBits > 0;
562 vis->haveDepthBuffer = depthBits > 0;
563 vis->haveStencilBuffer = stencilBits > 0;
564
565 vis->numAuxBuffers = 0;
566 vis->level = 0;
567 vis->pixmapMode = 0;
Brian Paule4b23562005-05-04 20:11:35 +0000568 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
Brian Paul894844a2004-03-21 17:05:03 +0000569 vis->samples = numSamples;
Brian Paul153f1542002-10-29 15:04:35 +0000570
Brian Paul178a1c52000-04-22 01:05:00 +0000571 return GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000572}
573
Brian Paul894844a2004-03-21 17:05:03 +0000574
Keith Whitwell6dc85572003-07-17 13:43:59 +0000575/**
Brian Paul894844a2004-03-21 17:05:03 +0000576 * Destroy a visual and free its memory.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000577 *
578 * \param vis visual.
579 *
580 * Frees the visual structure.
581 */
Brian Paulb371e0d2000-03-31 01:05:51 +0000582void
583_mesa_destroy_visual( GLvisual *vis )
584{
585 FREE(vis);
586}
587
Keith Whitwell6dc85572003-07-17 13:43:59 +0000588/*@}*/
589
Brian Paulb371e0d2000-03-31 01:05:51 +0000590
Brian Paul4d053dd2000-01-14 04:45:47 +0000591/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000592/** \name Context allocation, initialization, destroying
593 *
594 * The purpose of the most initialization functions here is to provide the
595 * default state values according to the OpenGL specification.
596 */
jtgafb833d1999-08-19 00:55:39 +0000597/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +0000598/*@{*/
jtgafb833d1999-08-19 00:55:39 +0000599
Keith Whitwell6dc85572003-07-17 13:43:59 +0000600/**
601 * One-time initialization mutex lock.
602 *
603 * \sa Used by one_time_init().
604 */
Brian Paul9560f052000-01-31 23:11:39 +0000605_glthread_DECLARE_STATIC_MUTEX(OneTimeLock);
606
Keith Whitwell6dc85572003-07-17 13:43:59 +0000607/**
608 * Calls all the various one-time-init functions in Mesa.
609 *
610 * While holding a global mutex lock, calls several initialization functions,
611 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
612 * defined.
613 *
614 * \sa _mesa_init_lists(), _math_init().
jtgafb833d1999-08-19 00:55:39 +0000615 */
Brian Paul178a1c52000-04-22 01:05:00 +0000616static void
Brian Paul4753d602002-06-15 02:38:15 +0000617one_time_init( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000618{
619 static GLboolean alreadyCalled = GL_FALSE;
Brian Paula6c423d2004-08-25 15:59:48 +0000620 (void) ctx;
Brian Paul9560f052000-01-31 23:11:39 +0000621 _glthread_LOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000622 if (!alreadyCalled) {
Brian Paul27558a12003-03-01 01:50:20 +0000623 GLuint i;
624
Brian Paul4d053dd2000-01-14 04:45:47 +0000625 /* do some implementation tests */
626 assert( sizeof(GLbyte) == 1 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000627 assert( sizeof(GLubyte) == 1 );
Brian Paul894844a2004-03-21 17:05:03 +0000628 assert( sizeof(GLshort) == 2 );
629 assert( sizeof(GLushort) == 2 );
630 assert( sizeof(GLint) == 4 );
631 assert( sizeof(GLuint) == 4 );
Brian Paul4d053dd2000-01-14 04:45:47 +0000632
Brian Paul08836342001-03-03 20:33:27 +0000633 _mesa_init_lists();
Keith Whitwell23caf202000-11-16 21:05:34 +0000634
Keith Whitwell6dc85572003-07-17 13:43:59 +0000635#if _HAVE_FULL_GL
Keith Whitwell23caf202000-11-16 21:05:34 +0000636 _math_init();
Brian Paul27558a12003-03-01 01:50:20 +0000637
638 for (i = 0; i < 256; i++) {
639 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
640 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000641#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000642
davem69775355a2001-06-05 23:54:00 +0000643#ifdef USE_SPARC_ASM
644 _mesa_init_sparc_glapi_relocs();
645#endif
Brian Paul3c634522002-10-24 23:57:19 +0000646 if (_mesa_getenv("MESA_DEBUG")) {
Brian Paul68ee4bc2000-01-28 19:02:22 +0000647 _glapi_noop_enable_warnings(GL_TRUE);
Brian Paul71072be2002-10-10 00:22:13 +0000648#ifndef GLX_DIRECT_RENDERING
649 /* libGL from before 2002/06/28 don't have this function. Someday,
650 * when newer libGL libs are common, remove the #ifdef test. This
651 * only serves to print warnings when calling undefined GL functions.
652 */
Brian Paul4e9676f2002-06-29 19:48:15 +0000653 _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning );
Brian Paul71072be2002-10-10 00:22:13 +0000654#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000655 }
656 else {
657 _glapi_noop_enable_warnings(GL_FALSE);
658 }
659
jtgafb833d1999-08-19 00:55:39 +0000660#if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
Brian Paul4e9676f2002-06-29 19:48:15 +0000661 _mesa_debug(ctx, "Mesa DEBUG build %s %s\n", __DATE__, __TIME__);
jtgafb833d1999-08-19 00:55:39 +0000662#endif
Brian Paul68ee4bc2000-01-28 19:02:22 +0000663
664 alreadyCalled = GL_TRUE;
665 }
Brian Paul9560f052000-01-31 23:11:39 +0000666 _glthread_UNLOCK_MUTEX(OneTimeLock);
jtgafb833d1999-08-19 00:55:39 +0000667}
668
Brian Paul894844a2004-03-21 17:05:03 +0000669
Keith Whitwell6dc85572003-07-17 13:43:59 +0000670/**
jtgafb833d1999-08-19 00:55:39 +0000671 * Allocate and initialize a shared context state structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000672 * Initializes the display list, texture objects and vertex programs hash
673 * tables, allocates the texture objects. If it runs out of memory, frees
674 * everything already allocated before returning NULL.
Brian Paul894844a2004-03-21 17:05:03 +0000675 *
676 * \return pointer to a gl_shared_state structure on success, or NULL on
677 * failure.
jtgafb833d1999-08-19 00:55:39 +0000678 */
Brian Paula3f13702003-04-01 16:41:50 +0000679static GLboolean
680alloc_shared_state( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000681{
Brian Paula3f13702003-04-01 16:41:50 +0000682 struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state);
jtgafb833d1999-08-19 00:55:39 +0000683 if (!ss)
Brian Paula3f13702003-04-01 16:41:50 +0000684 return GL_FALSE;
685
686 ctx->Shared = ss;
jtgafb833d1999-08-19 00:55:39 +0000687
Brian Paule4b684c2000-09-12 21:07:40 +0000688 _glthread_INIT_MUTEX(ss->Mutex);
jtgafb833d1999-08-19 00:55:39 +0000689
Brian Paule4b684c2000-09-12 21:07:40 +0000690 ss->DisplayList = _mesa_NewHashTable();
Brian Paulbb797902000-01-24 16:19:54 +0000691 ss->TexObjects = _mesa_NewHashTable();
Brian Paul451f3102003-04-17 01:48:19 +0000692#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program
Brian Paul610d5992003-01-14 04:55:45 +0000693 ss->Programs = _mesa_NewHashTable();
Brian Paul8dfc5b92002-10-16 17:57:51 +0000694#endif
jtgafb833d1999-08-19 00:55:39 +0000695
Brian Paul451f3102003-04-17 01:48:19 +0000696#if FEATURE_ARB_vertex_program
Brian Paul4d859f72004-01-23 18:57:05 +0000697 ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000698 if (!ss->DefaultVertexProgram)
699 goto cleanup;
700#endif
701#if FEATURE_ARB_fragment_program
Brian Paul4d859f72004-01-23 18:57:05 +0000702 ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0);
Brian Paul451f3102003-04-17 01:48:19 +0000703 if (!ss->DefaultFragmentProgram)
704 goto cleanup;
705#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000706#if FEATURE_ATI_fragment_shader
707 ss->DefaultFragmentShader = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_SHADER_ATI, 0);
708 if (!ss->DefaultFragmentShader)
709 goto cleanup;
710#endif
Brian Paul451f3102003-04-17 01:48:19 +0000711
Brian Paulddc82ee2005-02-05 19:56:45 +0000712 ss->BufferObjects = _mesa_NewHashTable();
713
Michal Krol9b3752c2005-01-13 14:08:47 +0000714 ss->GL2Objects = _mesa_NewHashTable ();
Ian Romanick0207b472003-09-09 00:10:12 +0000715
Brian Paula3f13702003-04-01 16:41:50 +0000716 ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D);
717 if (!ss->Default1D)
718 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000719
Brian Paula3f13702003-04-01 16:41:50 +0000720 ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D);
721 if (!ss->Default2D)
722 goto cleanup;
jtgafb833d1999-08-19 00:55:39 +0000723
Brian Paula3f13702003-04-01 16:41:50 +0000724 ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D);
725 if (!ss->Default3D)
726 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000727
Brian Paula3f13702003-04-01 16:41:50 +0000728 ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB);
729 if (!ss->DefaultCubeMap)
730 goto cleanup;
Brian Paula8523782000-11-19 23:10:25 +0000731
Brian Paula3f13702003-04-01 16:41:50 +0000732 ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV);
733 if (!ss->DefaultRect)
734 goto cleanup;
Brian Paul413d6a22000-05-26 14:44:59 +0000735
Brian Paula3f13702003-04-01 16:41:50 +0000736 /* Effectively bind the default textures to all texture units */
737 ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
738 ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
739 ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS;
740 ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS;
741 ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS;
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)
775 ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentShader);
776#endif
Brian Paul21841f02004-08-14 14:28:11 +0000777#if FEATURE_ARB_vertex_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
782 if (ss->GL2Objects)
Michal Krol9b3752c2005-01-13 14:08:47 +0000783 _mesa_DeleteHashTable (ss->GL2Objects);
Ian Romanick0207b472003-09-09 00:10:12 +0000784
Brian Paulddc82ee2005-02-05 19:56:45 +0000785#if FEATURE_EXT_framebuffer_object
786 if (ss->FrameBuffers)
787 _mesa_DeleteHashTable(ss->FrameBuffers);
788 if (ss->RenderBuffers)
789 _mesa_DeleteHashTable(ss->RenderBuffers);
790#endif
791
Brian Paula3f13702003-04-01 16:41:50 +0000792 if (ss->Default1D)
793 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
794 if (ss->Default2D)
795 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
796 if (ss->Default3D)
797 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
798 if (ss->DefaultCubeMap)
799 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
800 if (ss->DefaultRect)
801 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
802 if (ss)
803 _mesa_free(ss);
804 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +0000805}
806
Keith Whitwell6dc85572003-07-17 13:43:59 +0000807/**
jtgafb833d1999-08-19 00:55:39 +0000808 * Deallocate a shared state context and all children structures.
Keith Whitwell6dc85572003-07-17 13:43:59 +0000809 *
810 * \param ctx GL context.
811 * \param ss shared state pointer.
812 *
813 * Frees the display lists, the texture objects (calling the driver texture
814 * deletion callback to free its private data) and the vertex programs, as well
815 * as their hash tables.
816 *
817 * \sa alloc_shared_state().
jtgafb833d1999-08-19 00:55:39 +0000818 */
Brian Paul178a1c52000-04-22 01:05:00 +0000819static void
820free_shared_state( GLcontext *ctx, struct gl_shared_state *ss )
jtgafb833d1999-08-19 00:55:39 +0000821{
822 /* Free display lists */
823 while (1) {
Brian Paulbb797902000-01-24 16:19:54 +0000824 GLuint list = _mesa_HashFirstEntry(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000825 if (list) {
Brian Paul08836342001-03-03 20:33:27 +0000826 _mesa_destroy_list(ctx, list);
jtgafb833d1999-08-19 00:55:39 +0000827 }
828 else {
829 break;
830 }
831 }
Brian Paulbb797902000-01-24 16:19:54 +0000832 _mesa_DeleteHashTable(ss->DisplayList);
jtgafb833d1999-08-19 00:55:39 +0000833
834 /* Free texture objects */
Brian Paula3f13702003-04-01 16:41:50 +0000835 ASSERT(ctx->Driver.DeleteTexture);
Brian Paul21841f02004-08-14 14:28:11 +0000836 /* the default textures */
837 (*ctx->Driver.DeleteTexture)(ctx, ss->Default1D);
838 (*ctx->Driver.DeleteTexture)(ctx, ss->Default2D);
839 (*ctx->Driver.DeleteTexture)(ctx, ss->Default3D);
840 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultCubeMap);
841 (*ctx->Driver.DeleteTexture)(ctx, ss->DefaultRect);
842 /* all other textures */
Brian Paula3f13702003-04-01 16:41:50 +0000843 while (1) {
844 GLuint texName = _mesa_HashFirstEntry(ss->TexObjects);
845 if (texName) {
846 struct gl_texture_object *texObj = (struct gl_texture_object *)
847 _mesa_HashLookup(ss->TexObjects, texName);
848 ASSERT(texObj);
849 (*ctx->Driver.DeleteTexture)(ctx, texObj);
850 _mesa_HashRemove(ss->TexObjects, texName);
851 }
852 else {
853 break;
854 }
jtgafb833d1999-08-19 00:55:39 +0000855 }
Brian Paulbb797902000-01-24 16:19:54 +0000856 _mesa_DeleteHashTable(ss->TexObjects);
jtgafb833d1999-08-19 00:55:39 +0000857
Brian Paul8dfc5b92002-10-16 17:57:51 +0000858#if FEATURE_NV_vertex_program
Brian Paul30f51ae2001-12-18 04:06:44 +0000859 /* Free vertex programs */
860 while (1) {
Brian Paul610d5992003-01-14 04:55:45 +0000861 GLuint prog = _mesa_HashFirstEntry(ss->Programs);
Brian Paul30f51ae2001-12-18 04:06:44 +0000862 if (prog) {
Brian Paul451f3102003-04-17 01:48:19 +0000863 struct program *p = (struct program *) _mesa_HashLookup(ss->Programs,
864 prog);
865 ASSERT(p);
Brian Paul4d859f72004-01-23 18:57:05 +0000866 ctx->Driver.DeleteProgram(ctx, p);
Brian Paul451f3102003-04-17 01:48:19 +0000867 _mesa_HashRemove(ss->Programs, prog);
Brian Paul30f51ae2001-12-18 04:06:44 +0000868 }
869 else {
870 break;
871 }
872 }
Brian Paul610d5992003-01-14 04:55:45 +0000873 _mesa_DeleteHashTable(ss->Programs);
Brian Paul8dfc5b92002-10-16 17:57:51 +0000874#endif
Brian Paul21841f02004-08-14 14:28:11 +0000875#if FEATURE_ARB_vertex_program
876 _mesa_delete_program(ctx, ss->DefaultVertexProgram);
877#endif
878#if FEATURE_ARB_fragment_program
879 _mesa_delete_program(ctx, ss->DefaultFragmentProgram);
880#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000881#if FEATURE_ATI_fragment_shader
882 _mesa_delete_program(ctx, ss->DefaultFragmentShader);
883#endif
Brian Paul30f51ae2001-12-18 04:06:44 +0000884
Brian Paul21841f02004-08-14 14:28:11 +0000885#if FEATURE_ARB_vertex_buffer_object
Ian Romanick0207b472003-09-09 00:10:12 +0000886 _mesa_DeleteHashTable(ss->BufferObjects);
Brian Paulddc82ee2005-02-05 19:56:45 +0000887#endif
888
889 _mesa_DeleteHashTable (ss->GL2Objects);
890
891#if FEATURE_EXT_framebuffer_object
892 _mesa_DeleteHashTable(ss->FrameBuffers);
893 _mesa_DeleteHashTable(ss->RenderBuffers);
894#endif
Michal Krol9b3752c2005-01-13 14:08:47 +0000895
Keith Whitwelle15fd852002-12-12 13:03:15 +0000896 _glthread_DESTROY_MUTEX(ss->Mutex);
897
Brian Paulbd5cdaf1999-10-13 18:42:49 +0000898 FREE(ss);
jtgafb833d1999-08-19 00:55:39 +0000899}
900
901
Brian Paul4d859f72004-01-23 18:57:05 +0000902/**
903 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
904 */
905static void
906_mesa_init_current( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000907{
Brian Paul88bf0382004-02-13 15:30:08 +0000908 GLuint i;
jtgafb833d1999-08-19 00:55:39 +0000909
Keith Whitwell6dc85572003-07-17 13:43:59 +0000910 /* Current group */
911 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
912 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
jtgafb833d1999-08-19 00:55:39 +0000913 }
Keith Whitwell6dc85572003-07-17 13:43:59 +0000914 /* special cases: */
915 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 );
916 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
917 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000918 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
Keith Whitwell6dc85572003-07-17 13:43:59 +0000919 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_FOG], 0.0, 0.0, 0.0, 0.0 );
Brian Paul88bf0382004-02-13 15:30:08 +0000920
Keith Whitwell6dc85572003-07-17 13:43:59 +0000921 ctx->Current.Index = 1;
922 ctx->Current.EdgeFlag = GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +0000923}
924
925
Brian Paul4d859f72004-01-23 18:57:05 +0000926/**
927 * Initialize fields of gl_constants (aka ctx->Const.*).
928 * Use defaults from config.h. The device drivers will often override
929 * some of these values (such as number of texture units).
930 */
Keith Whitwell6dc85572003-07-17 13:43:59 +0000931static void
932_mesa_init_constants( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +0000933{
Brian Paul4d053dd2000-01-14 04:45:47 +0000934 assert(ctx);
jtgafb833d1999-08-19 00:55:39 +0000935
Brian Paulcd1cefa2001-06-13 14:56:14 +0000936 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
937 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
938
Brian Paul53f82c52004-10-02 16:39:09 +0000939 /* Constants, may be overriden (usually only reduced) by device drivers */
Brian Paul4d053dd2000-01-14 04:45:47 +0000940 ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS;
Brian Paulcd1cefa2001-06-13 14:56:14 +0000941 ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
942 ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
Brian Paul8afe7de2002-06-15 03:03:06 +0000943 ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
Brian Paul4d053dd2000-01-14 04:45:47 +0000944 ctx->Const.MaxTextureUnits = MAX_TEXTURE_UNITS;
Brian Paul610d5992003-01-14 04:55:45 +0000945 ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
946 ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
Gareth Hughes2c3d34c2001-03-18 08:53:49 +0000947 ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
Brian Paul87c964d2001-11-06 15:53:00 +0000948 ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
Brian Paul4d053dd2000-01-14 04:45:47 +0000949 ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
Brian Paul539cce52000-02-03 19:40:07 +0000950 ctx->Const.SubPixelBits = SUB_PIXEL_BITS;
951 ctx->Const.MinPointSize = MIN_POINT_SIZE;
952 ctx->Const.MaxPointSize = MAX_POINT_SIZE;
953 ctx->Const.MinPointSizeAA = MIN_POINT_SIZE;
954 ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000955 ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
Brian Paul539cce52000-02-03 19:40:07 +0000956 ctx->Const.MinLineWidth = MIN_LINE_WIDTH;
957 ctx->Const.MaxLineWidth = MAX_LINE_WIDTH;
958 ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH;
959 ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH;
Brian Paulfde5e2c2001-09-15 18:02:49 +0000960 ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
Brian Paul4bdcfe52000-04-17 17:57:04 +0000961 ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE;
Brian Paul82b02f02000-05-07 20:37:40 +0000962 ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH;
963 ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT;
Brian Paula8644322000-11-27 18:22:13 +0000964 ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES;
965 ctx->Const.MaxLights = MAX_LIGHTS;
Ian Romanick882caa12003-05-30 21:37:14 +0000966 ctx->Const.MaxShininess = 128.0;
Brian Paul53f82c52004-10-02 16:39:09 +0000967 ctx->Const.MaxSpotExponent = 128.0;
968 ctx->Const.MaxViewportWidth = MAX_WIDTH;
969 ctx->Const.MaxViewportHeight = MAX_HEIGHT;
Brian Pauld0492cf2003-04-11 01:20:06 +0000970#if FEATURE_ARB_vertex_program
Brian Pauld0492cf2003-04-11 01:20:06 +0000971 ctx->Const.MaxVertexProgramInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS;
Brian Paul451f3102003-04-17 01:48:19 +0000972 ctx->Const.MaxVertexProgramAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS;
973 ctx->Const.MaxVertexProgramTemps = MAX_NV_VERTEX_PROGRAM_TEMPS;
974 ctx->Const.MaxVertexProgramLocalParams = MAX_NV_VERTEX_PROGRAM_PARAMS;
975 ctx->Const.MaxVertexProgramEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS;/*XXX*/
976 ctx->Const.MaxVertexProgramAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
Brian Pauld0492cf2003-04-11 01:20:06 +0000977#endif
978#if FEATURE_ARB_fragment_program
Brian Pauld0492cf2003-04-11 01:20:06 +0000979 ctx->Const.MaxFragmentProgramInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS;
Brian Paul451f3102003-04-17 01:48:19 +0000980 ctx->Const.MaxFragmentProgramAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
981 ctx->Const.MaxFragmentProgramTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS;
982 ctx->Const.MaxFragmentProgramLocalParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
983 ctx->Const.MaxFragmentProgramEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS;/*XXX*/
984 ctx->Const.MaxFragmentProgramAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
985 ctx->Const.MaxFragmentProgramAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS;
986 ctx->Const.MaxFragmentProgramTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS;
987 ctx->Const.MaxFragmentProgramTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS;
Brian Pauld0492cf2003-04-11 01:20:06 +0000988#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +0000989
Brian Pauledd67742003-04-18 18:02:43 +0000990 ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES;
991 ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
Brian Pauld0492cf2003-04-11 01:20:06 +0000992
Brian Paula2b9bad2003-11-10 19:08:37 +0000993 /* If we're running in the X server, do bounds checking to prevent
994 * segfaults and server crashes!
995 */
996#if defined(XFree86LOADER) && defined(IN_MODULE)
997 ctx->Const.CheckArrayBounds = GL_TRUE;
998#else
999 ctx->Const.CheckArrayBounds = GL_FALSE;
1000#endif
1001
Brian Paul53f82c52004-10-02 16:39:09 +00001002 ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS;
1003
Brian Paul3deaa012005-02-07 05:08:24 +00001004 /* GL_OES_read_format */
Ian Romanick33899b72004-10-16 01:16:54 +00001005 ctx->Const.ColorReadFormat = GL_RGBA;
1006 ctx->Const.ColorReadType = GL_UNSIGNED_BYTE;
1007
Brian Paul3deaa012005-02-07 05:08:24 +00001008#if FEATURE_EXT_framebuffer_object
1009 ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
1010 ctx->Const.MaxRenderbufferSize = MAX_WIDTH;
1011#endif
1012
Brian Paul53f82c52004-10-02 16:39:09 +00001013 /* sanity checks */
Brian Paul92f97852003-05-01 22:44:02 +00001014 ASSERT(ctx->Const.MaxTextureUnits == MAX2(ctx->Const.MaxTextureImageUnits, ctx->Const.MaxTextureCoordUnits));
Keith Whitwell6dc85572003-07-17 13:43:59 +00001015}
jtgafb833d1999-08-19 00:55:39 +00001016
Brian Paul4d859f72004-01-23 18:57:05 +00001017
Keith Whitwell6dc85572003-07-17 13:43:59 +00001018/**
1019 * Initialize the attribute groups in a GL context.
1020 *
1021 * \param ctx GL context.
1022 *
1023 * Initializes all the attributes, calling the respective <tt>init*</tt>
1024 * functions for the more complex data structures.
1025 */
1026static GLboolean
1027init_attrib_groups( GLcontext *ctx )
1028{
1029 assert(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001030
Keith Whitwell6dc85572003-07-17 13:43:59 +00001031 /* Constants */
1032 _mesa_init_constants( ctx );
Brian Paul0771d152000-04-07 00:19:41 +00001033
Brian Paul4d053dd2000-01-14 04:45:47 +00001034 /* Extensions */
Brian Paulde4f4602003-07-03 02:15:06 +00001035 _mesa_init_extensions( ctx );
jtgafb833d1999-08-19 00:55:39 +00001036
Keith Whitwell6dc85572003-07-17 13:43:59 +00001037 /* Attribute Groups */
1038 _mesa_init_accum( ctx );
1039 _mesa_init_attrib( ctx );
Brian Paul148a2842003-09-17 03:40:11 +00001040 _mesa_init_buffer_objects( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001041 _mesa_init_color( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001042 _mesa_init_colortables( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001043 _mesa_init_current( ctx );
1044 _mesa_init_depth( ctx );
1045 _mesa_init_debug( ctx );
1046 _mesa_init_display_list( ctx );
1047 _mesa_init_eval( ctx );
1048 _mesa_init_feedback( ctx );
1049 _mesa_init_fog( ctx );
1050 _mesa_init_histogram( ctx );
1051 _mesa_init_hint( ctx );
1052 _mesa_init_line( ctx );
1053 _mesa_init_lighting( ctx );
1054 _mesa_init_matrix( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001055 _mesa_init_multisample( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001056 _mesa_init_occlude( ctx );
Keith Whitwell6dc85572003-07-17 13:43:59 +00001057 _mesa_init_pixel( ctx );
1058 _mesa_init_point( ctx );
1059 _mesa_init_polygon( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001060 _mesa_init_program( ctx );
Brian Paulddc82ee2005-02-05 19:56:45 +00001061 _mesa_init_rastpos( ctx );
Brian Paul67742382005-02-26 17:16:12 +00001062 _mesa_init_scissor( ctx );
Michal Krol9b3752c2005-01-13 14:08:47 +00001063 _mesa_init_shaderobjects (ctx);
Keith Whitwell6dc85572003-07-17 13:43:59 +00001064 _mesa_init_stencil( ctx );
1065 _mesa_init_transform( ctx );
1066 _mesa_init_varray( ctx );
1067 _mesa_init_viewport( ctx );
jtgafb833d1999-08-19 00:55:39 +00001068
Keith Whitwell6dc85572003-07-17 13:43:59 +00001069 if (!_mesa_init_texture( ctx ))
1070 return GL_FALSE;
Brian Paulb17a7222003-06-13 02:37:27 +00001071
Brian Paul8f04c122004-04-27 13:39:20 +00001072 _mesa_init_texture_s3tc( ctx );
1073 _mesa_init_texture_fxt1( ctx );
1074
Brian Paul4d053dd2000-01-14 04:45:47 +00001075 /* Miscellaneous */
Keith Whitwella96308c2000-10-30 13:31:59 +00001076 ctx->NewState = _NEW_ALL;
Brian Paul4d053dd2000-01-14 04:45:47 +00001077 ctx->ErrorValue = (GLenum) GL_NO_ERROR;
Brian Paulf782b812002-10-04 17:37:45 +00001078 ctx->_Facing = 0;
Brian Paul4923e192004-02-28 22:30:58 +00001079#if CHAN_TYPE == GL_FLOAT
1080 ctx->ClampFragmentColors = GL_FALSE; /* XXX temporary */
1081#else
1082 ctx->ClampFragmentColors = GL_TRUE;
1083#endif
1084 ctx->ClampVertexColors = GL_TRUE;
Brian Paul4d053dd2000-01-14 04:45:47 +00001085
Brian Paula3f13702003-04-01 16:41:50 +00001086 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001087}
1088
1089
Brian Paulf44898c2003-07-18 15:44:57 +00001090/**
1091 * If the DRI libGL.so library is old, it may not have the entrypoints for
1092 * some recent OpenGL extensions. Dynamically add them now.
1093 * If we're building stand-alone Mesa where libGL.so has both the dispatcher
1094 * and driver code, this won't be an issue (and calling this function won't
1095 * do any harm).
1096 */
1097static void
1098add_newer_entrypoints(void)
1099{
Brian Paulde434842004-11-27 20:14:03 +00001100 unsigned i;
Ian Romanick3baefe62003-08-22 23:28:03 +00001101 static const struct {
1102 const char * const name;
Brian Paulde434842004-11-27 20:14:03 +00001103 unsigned offset;
Ian Romanick3baefe62003-08-22 23:28:03 +00001104 }
1105 newer_entrypoints[] = {
1106 /* GL_ARB_window_pos aliases with GL_MESA_window_pos */
1107 { "glWindowPos2dARB", 513 },
1108 { "glWindowPos2dvARB", 514 },
1109 { "glWindowPos2fARB", 515 },
1110 { "glWindowPos2fvARB", 516 },
1111 { "glWindowPos2iARB", 517 },
1112 { "glWindowPos2ivARB", 518 },
1113 { "glWindowPos2sARB", 519 },
1114 { "glWindowPos2svARB", 520 },
1115 { "glWindowPos3dARB", 521 },
1116 { "glWindowPos3dvARB", 522 },
1117 { "glWindowPos3fARB", 523 },
1118 { "glWindowPos3fvARB", 524 },
1119 { "glWindowPos3iARB", 525 },
1120 { "glWindowPos3ivARB", 526 },
1121 { "glWindowPos3sARB", 527 },
1122 { "glWindowPos3svARB", 528 },
Brian Paulf44898c2003-07-18 15:44:57 +00001123#if FEATURE_NV_vertex_program
Ian Romanick3baefe62003-08-22 23:28:03 +00001124 { "glAreProgramsResidentNV", 578 },
1125 { "glBindProgramNV", 579 },
1126 { "glDeleteProgramsNV", 580 },
1127 { "glExecuteProgramNV", 581 },
1128 { "glGenProgramsNV", 582 },
1129 { "glGetProgramParameterdvNV", 583 },
1130 { "glGetProgramParameterfvNV", 584 },
1131 { "glGetProgramivNV", 585 },
1132 { "glGetProgramStringNV", 586 },
1133 { "glGetTrackMatrixivNV", 587 },
1134 { "glGetVertexAttribdvNV", 588 },
1135 { "glGetVertexAttribfvNV", 589 },
1136 { "glGetVertexAttribivNV", 590 },
1137 { "glGetVertexAttribPointervNV", 591 },
1138 { "glIsProgramNV", 592 },
1139 { "glLoadProgramNV", 593 },
1140 { "glProgramParameter4dNV", 594 },
1141 { "glProgramParameter4dvNV", 595 },
1142 { "glProgramParameter4fNV", 596 },
1143 { "glProgramParameter4fvNV", 597 },
1144 { "glProgramParameters4dvNV", 598 },
1145 { "glProgramParameters4fvNV", 599 },
1146 { "glRequestResidentProgramsNV", 600 },
1147 { "glTrackMatrixNV", 601 },
1148 { "glVertexAttribPointerNV", 602 },
1149 { "glVertexAttrib1dNV", 603 },
1150 { "glVertexAttrib1dvNV", 604 },
1151 { "glVertexAttrib1fNV", 605 },
1152 { "glVertexAttrib1fvNV", 606 },
1153 { "glVertexAttrib1sNV", 607 },
1154 { "glVertexAttrib1svNV", 608 },
1155 { "glVertexAttrib2dNV", 609 },
1156 { "glVertexAttrib2dvNV", 610 },
1157 { "glVertexAttrib2fNV", 611 },
1158 { "glVertexAttrib2fvNV", 612 },
1159 { "glVertexAttrib2sNV", 613 },
1160 { "glVertexAttrib2svNV", 614 },
1161 { "glVertexAttrib3dNV", 615 },
1162 { "glVertexAttrib3dvNV", 616 },
1163 { "glVertexAttrib3fNV", 617 },
1164 { "glVertexAttrib3fvNV", 618 },
1165 { "glVertexAttrib3sNV", 619 },
1166 { "glVertexAttrib3svNV", 620 },
1167 { "glVertexAttrib4dNV", 621 },
1168 { "glVertexAttrib4dvNV", 622 },
1169 { "glVertexAttrib4fNV", 623 },
1170 { "glVertexAttrib4fvNV", 624 },
1171 { "glVertexAttrib4sNV", 625 },
1172 { "glVertexAttrib4svNV", 626 },
1173 { "glVertexAttrib4ubNV", 627 },
1174 { "glVertexAttrib4ubvNV", 628 },
1175 { "glVertexAttribs1dvNV", 629 },
1176 { "glVertexAttribs1fvNV", 630 },
1177 { "glVertexAttribs1svNV", 631 },
1178 { "glVertexAttribs2dvNV", 632 },
1179 { "glVertexAttribs2fvNV", 633 },
1180 { "glVertexAttribs2svNV", 634 },
1181 { "glVertexAttribs3dvNV", 635 },
1182 { "glVertexAttribs3fvNV", 636 },
1183 { "glVertexAttribs3svNV", 637 },
1184 { "glVertexAttribs4dvNV", 638 },
1185 { "glVertexAttribs4fvNV", 639 },
1186 { "glVertexAttribs4svNV", 640 },
1187 { "glVertexAttribs4ubvNV", 641 },
Brian Paulf44898c2003-07-18 15:44:57 +00001188#endif
Ian Romanick3baefe62003-08-22 23:28:03 +00001189 { "glPointParameteriNV", 642 },
1190 { "glPointParameterivNV", 643 },
1191 { "glMultiDrawArraysEXT", 644 },
1192 { "glMultiDrawElementsEXT", 645 },
1193 { "glMultiDrawArraysSUN", _gloffset_MultiDrawArraysEXT },
1194 { "glMultiDrawElementsSUN", _gloffset_MultiDrawElementsEXT },
1195 { "glActiveStencilFaceEXT", 646 },
Brian Paulf44898c2003-07-18 15:44:57 +00001196#if FEATURE_NV_fence
Ian Romanick3baefe62003-08-22 23:28:03 +00001197 { "glDeleteFencesNV", 647 },
1198 { "glGenFencesNV", 648 },
1199 { "glIsFenceNV", 649 },
1200 { "glTestFenceNV", 650 },
1201 { "glGetFenceivNV", 651 },
1202 { "glFinishFenceNV", 652 },
1203 { "glSetFenceNV", 653 },
Brian Paulf44898c2003-07-18 15:44:57 +00001204#endif
1205#if FEATURE_NV_fragment_program
Ian Romanick3baefe62003-08-22 23:28:03 +00001206 { "glProgramNamedParameter4fNV", 682 },
1207 { "glProgramNamedParameter4dNV", 683 },
1208 { "glProgramNamedParameter4fvNV", 683 },
1209 { "glProgramNamedParameter4dvNV", 684 },
1210 { "glGetProgramNamedParameterfvNV", 685 },
1211 { "glGetProgramNamedParameterdvNV", 686 },
Brian Paulf44898c2003-07-18 15:44:57 +00001212#endif
1213#if FEATURE_ARB_vertex_program
Ian Romanick3baefe62003-08-22 23:28:03 +00001214 { "glVertexAttrib1sARB", _gloffset_VertexAttrib1sNV },
1215 { "glVertexAttrib1fARB", _gloffset_VertexAttrib1fNV },
1216 { "glVertexAttrib1dARB", _gloffset_VertexAttrib1dNV },
1217 { "glVertexAttrib2sARB", _gloffset_VertexAttrib2sNV },
1218 { "glVertexAttrib2fARB", _gloffset_VertexAttrib2fNV },
1219 { "glVertexAttrib2dARB", _gloffset_VertexAttrib2dNV },
1220 { "glVertexAttrib3sARB", _gloffset_VertexAttrib3sNV },
1221 { "glVertexAttrib3fARB", _gloffset_VertexAttrib3fNV },
1222 { "glVertexAttrib3dARB", _gloffset_VertexAttrib3dNV },
1223 { "glVertexAttrib4sARB", _gloffset_VertexAttrib4sNV },
1224 { "glVertexAttrib4fARB", _gloffset_VertexAttrib4fNV },
1225 { "glVertexAttrib4dARB", _gloffset_VertexAttrib4dNV },
1226 { "glVertexAttrib4NubARB", _gloffset_VertexAttrib4ubNV },
1227 { "glVertexAttrib1svARB", _gloffset_VertexAttrib1svNV },
1228 { "glVertexAttrib1fvARB", _gloffset_VertexAttrib1fvNV },
1229 { "glVertexAttrib1dvARB", _gloffset_VertexAttrib1dvNV },
1230 { "glVertexAttrib2svARB", _gloffset_VertexAttrib2svNV },
1231 { "glVertexAttrib2fvARB", _gloffset_VertexAttrib2fvNV },
1232 { "glVertexAttrib2dvARB", _gloffset_VertexAttrib2dvNV },
1233 { "glVertexAttrib3svARB", _gloffset_VertexAttrib3svNV },
1234 { "glVertexAttrib3fvARB", _gloffset_VertexAttrib3fvNV },
1235 { "glVertexAttrib3dvARB", _gloffset_VertexAttrib3dvNV },
1236 { "glVertexAttrib4bvARB", _gloffset_VertexAttrib4bvARB },
1237 { "glVertexAttrib4svARB", _gloffset_VertexAttrib4svNV },
1238 { "glVertexAttrib4ivARB", _gloffset_VertexAttrib4ivARB },
1239 { "glVertexAttrib4ubvARB", _gloffset_VertexAttrib4ubvARB },
1240 { "glVertexAttrib4usvARB", _gloffset_VertexAttrib4usvARB },
1241 { "glVertexAttrib4uivARB", _gloffset_VertexAttrib4uivARB },
1242 { "glVertexAttrib4fvARB", _gloffset_VertexAttrib4fvNV },
1243 { "glVertexAttrib4dvARB", _gloffset_VertexAttrib4dvNV },
1244 { "glVertexAttrib4NbvARB", _gloffset_VertexAttrib4NbvARB },
1245 { "glVertexAttrib4NsvARB", _gloffset_VertexAttrib4NsvARB },
1246 { "glVertexAttrib4NivARB", _gloffset_VertexAttrib4NivARB },
1247 { "glVertexAttrib4NubvARB", _gloffset_VertexAttrib4ubvNV },
1248 { "glVertexAttrib4NusvARB", _gloffset_VertexAttrib4NusvARB },
1249 { "glVertexAttrib4NuivARB", _gloffset_VertexAttrib4NuivARB },
1250 { "glVertexAttribPointerARB", _gloffset_VertexAttribPointerARB },
1251 { "glEnableVertexAttribArrayARB", _gloffset_EnableVertexAttribArrayARB },
1252 { "glDisableVertexAttribArrayARB", _gloffset_DisableVertexAttribArrayARB },
1253 { "glProgramStringARB", _gloffset_ProgramStringARB },
1254 { "glBindProgramARB", _gloffset_BindProgramNV },
1255 { "glDeleteProgramsARB", _gloffset_DeleteProgramsNV },
1256 { "glGenProgramsARB", _gloffset_GenProgramsNV },
1257 { "glIsProgramARB", _gloffset_IsProgramNV },
1258 { "glProgramEnvParameter4dARB", _gloffset_ProgramEnvParameter4dARB },
1259 { "glProgramEnvParameter4dvARB", _gloffset_ProgramEnvParameter4dvARB },
1260 { "glProgramEnvParameter4fARB", _gloffset_ProgramEnvParameter4fARB },
1261 { "glProgramEnvParameter4fvARB", _gloffset_ProgramEnvParameter4fvARB },
1262 { "glProgramLocalParameter4dARB", _gloffset_ProgramLocalParameter4dARB },
1263 { "glProgramLocalParameter4dvARB", _gloffset_ProgramLocalParameter4dvARB },
1264 { "glProgramLocalParameter4fARB", _gloffset_ProgramLocalParameter4fARB },
1265 { "glProgramLocalParameter4fvARB", _gloffset_ProgramLocalParameter4fvARB },
1266 { "glGetProgramEnvParameterdvARB", _gloffset_GetProgramEnvParameterdvARB },
1267 { "glGetProgramEnvParameterfvARB", _gloffset_GetProgramEnvParameterfvARB },
1268 { "glGetProgramLocalParameterdvARB", _gloffset_GetProgramLocalParameterdvARB },
1269 { "glGetProgramLocalParameterfvARB", _gloffset_GetProgramLocalParameterfvARB },
1270 { "glGetProgramivARB", _gloffset_GetProgramivARB },
1271 { "glGetProgramStringARB", _gloffset_GetProgramStringARB },
1272 { "glGetVertexAttribdvARB", _gloffset_GetVertexAttribdvNV },
1273 { "glGetVertexAttribfvARB", _gloffset_GetVertexAttribfvNV },
1274 { "glGetVertexAttribivARB", _gloffset_GetVertexAttribivNV },
1275 { "glGetVertexAttribPointervARB", _gloffset_GetVertexAttribPointervNV },
Brian Paulf44898c2003-07-18 15:44:57 +00001276#endif
Ian Romanick3baefe62003-08-22 23:28:03 +00001277 { "glMultiModeDrawArraysIBM", _gloffset_MultiModeDrawArraysIBM },
1278 { "glMultiModeDrawElementsIBM", _gloffset_MultiModeDrawElementsIBM },
Brian Paulde434842004-11-27 20:14:03 +00001279 /* GL_EXT_stencil_two_side */
1280 { "glActiveStencilFaceEXT", _gloffset_ActiveStencilFaceEXT },
1281 /* GL_ARB_draw_buffers */
1282 { "glDrawBuffersARB", _gloffset_DrawBuffersARB },
Dave Airlie7f752fe2004-12-19 03:06:59 +00001283#if FEATURE_ATI_fragment_shader
1284 { "glGenFragmentShadersATI", _gloffset_GenFragmentShadersATI },
1285 { "glBindFragmentShaderATI", _gloffset_BindFragmentShaderATI },
1286 { "glDeleteFragmentShaderATI", _gloffset_DeleteFragmentShaderATI },
1287 { "glBeginFragmentShaderATI", _gloffset_BeginFragmentShaderATI },
1288 { "glEndFragmentShaderATI", _gloffset_EndFragmentShaderATI },
1289 { "glPassTexCoordATI", _gloffset_PassTexCoordATI },
1290 { "glSampleMapATI", _gloffset_SampleMapATI },
1291 { "glColorFragmentOp1ATI", _gloffset_ColorFragmentOp1ATI },
1292 { "glColorFragmentOp2ATI", _gloffset_ColorFragmentOp2ATI },
1293 { "glColorFragmentOp3ATI", _gloffset_ColorFragmentOp3ATI },
1294 { "glAlphaFragmentOp1ATI", _gloffset_AlphaFragmentOp1ATI },
1295 { "glAlphaFragmentOp2ATI", _gloffset_AlphaFragmentOp2ATI },
1296 { "glAlphaFragmentOp3ATI", _gloffset_AlphaFragmentOp3ATI },
1297 { "glSetFragmentShaderConstantATI", _gloffset_SetFragmentShaderConstantATI },
1298#endif
Ian Romanick3baefe62003-08-22 23:28:03 +00001299 };
1300
Brian Paulde434842004-11-27 20:14:03 +00001301 for (i = 0; i < Elements(newer_entrypoints); i++ ) {
Ian Romanick3baefe62003-08-22 23:28:03 +00001302 _glapi_add_entrypoint( newer_entrypoints[i].name,
Brian Paulde434842004-11-27 20:14:03 +00001303 newer_entrypoints[i].offset );
Ian Romanick3baefe62003-08-22 23:28:03 +00001304 }
Brian Paulf44898c2003-07-18 15:44:57 +00001305}
1306
Keith Whitwell306d3fc2002-04-09 16:56:50 +00001307
Brian Paulde4f4602003-07-03 02:15:06 +00001308/**
Brian Paul21f69782004-11-27 05:05:32 +00001309 * This is the default function we plug into all dispatch table slots
1310 * This helps prevents a segfault when someone calls a GL function without
1311 * first checking if the extension's supported.
1312 */
1313static int
1314generic_nop(void)
1315{
1316 _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)");
1317 return 0;
1318}
1319
1320
1321/**
1322 * Allocate and initialize a new dispatch table.
1323 */
1324static struct _glapi_table *
1325alloc_dispatch_table(void)
1326{
1327 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
1328 * In practice, this'll be the same for stand-alone Mesa. But for DRI
1329 * Mesa we do this to accomodate different versions of libGL and various
1330 * DRI drivers.
1331 */
1332 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(),
1333 sizeof(struct _glapi_table) / sizeof(_glapi_proc));
1334 struct _glapi_table *table =
1335 (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc));
1336 if (table) {
1337 _glapi_proc *entry = (_glapi_proc *) table;
Brian Paula760ccf2004-12-03 15:24:34 +00001338 GLint i;
Brian Paul21f69782004-11-27 05:05:32 +00001339 for (i = 0; i < numEntries; i++) {
1340 entry[i] = (_glapi_proc) generic_nop;
1341 }
1342 }
1343 return table;
1344}
1345
1346
1347/**
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001348 * Initialize a GLcontext struct (rendering context).
Keith Whitwell6dc85572003-07-17 13:43:59 +00001349 *
1350 * This includes allocating all the other structs and arrays which hang off of
1351 * the context by pointers.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001352 * Note that the driver needs to pass in its dd_function_table here since
1353 * we need to at least call driverFunctions->NewTextureObject to create the
1354 * default texture objects.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001355 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001356 * Called by _mesa_create_context().
Keith Whitwell6dc85572003-07-17 13:43:59 +00001357 *
1358 * Performs the imports and exports callback tables initialization, and
1359 * miscellaneous one-time initializations. If no shared context is supplied one
1360 * is allocated, and increase its reference count. Setups the GL API dispatch
1361 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1362 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1363 * for debug flags.
1364 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001365 * \param ctx the context to initialize
1366 * \param visual describes the visual attributes for this context
1367 * \param share_list points to context to share textures, display lists,
1368 * etc with, or NULL
1369 * \param driverFunctions table of device driver functions for this context
1370 * to use
1371 * \param driverContext pointer to driver-specific context data
jtgafb833d1999-08-19 00:55:39 +00001372 */
Brian Paul178a1c52000-04-22 01:05:00 +00001373GLboolean
1374_mesa_initialize_context( GLcontext *ctx,
Brian Paulbe3602d2001-02-28 00:27:48 +00001375 const GLvisual *visual,
Brian Paul178a1c52000-04-22 01:05:00 +00001376 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001377 const struct dd_function_table *driverFunctions,
1378 void *driverContext )
jtgafb833d1999-08-19 00:55:39 +00001379{
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001380 ASSERT(driverContext);
1381 assert(driverFunctions->NewTextureObject);
Keith Whitwell3e62d3a2005-03-22 14:27:10 +00001382 assert(driverFunctions->FreeTexImageData);
jtgafb833d1999-08-19 00:55:39 +00001383
Brian Paul3c634522002-10-24 23:57:19 +00001384 /* If the driver wants core Mesa to use special imports, it'll have to
1385 * override these defaults.
1386 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001387 _mesa_init_default_imports( &(ctx->imports), driverContext );
jtgafb833d1999-08-19 00:55:39 +00001388
Brian Paul9a33a112002-06-13 04:28:29 +00001389 /* initialize the exports (Mesa functions called by the window system) */
Brian Paul4753d602002-06-15 02:38:15 +00001390 _mesa_init_default_exports( &(ctx->exports) );
1391
1392 /* misc one-time initializations */
1393 one_time_init(ctx);
Brian Paul9a33a112002-06-13 04:28:29 +00001394
Brian Paulb1394fa2000-09-26 20:53:53 +00001395 ctx->Visual = *visual;
Brian Paul3f02f901999-11-24 18:48:30 +00001396 ctx->DrawBuffer = NULL;
1397 ctx->ReadBuffer = NULL;
Brian Paule4b23562005-05-04 20:11:35 +00001398 ctx->WinSysDrawBuffer = NULL;
1399 ctx->WinSysReadBuffer = NULL;
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001400
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001401 /* Plug in driver functions and context pointer here.
1402 * This is important because when we call alloc_shared_state() below
1403 * we'll call ctx->Driver.NewTextureObject() to create the default
1404 * textures.
Brian Paula3f13702003-04-01 16:41:50 +00001405 */
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001406 ctx->Driver = *driverFunctions;
1407 ctx->DriverCtx = driverContext;
Brian Paula3f13702003-04-01 16:41:50 +00001408
jtgafb833d1999-08-19 00:55:39 +00001409 if (share_list) {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001410 /* share state with another context */
jtgafb833d1999-08-19 00:55:39 +00001411 ctx->Shared = share_list->Shared;
1412 }
1413 else {
Brian Paul5a2f32b2001-04-25 18:21:05 +00001414 /* allocate new, unshared state */
Brian Paula3f13702003-04-01 16:41:50 +00001415 if (!alloc_shared_state( ctx )) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001416 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001417 }
1418 }
Brian Paul9560f052000-01-31 23:11:39 +00001419 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001420 ctx->Shared->RefCount++;
Brian Paul9560f052000-01-31 23:11:39 +00001421 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
jtgafb833d1999-08-19 00:55:39 +00001422
Keith Whitwell6dc85572003-07-17 13:43:59 +00001423 if (!init_attrib_groups( ctx )) {
jtgafb833d1999-08-19 00:55:39 +00001424 free_shared_state(ctx, ctx->Shared);
Brian Paul4d053dd2000-01-14 04:45:47 +00001425 return GL_FALSE;
jtgafb833d1999-08-19 00:55:39 +00001426 }
jtgafb833d1999-08-19 00:55:39 +00001427
Brian Paulf44898c2003-07-18 15:44:57 +00001428 /* libGL ABI coordination */
1429 add_newer_entrypoints();
Keith Whitwell6dc85572003-07-17 13:43:59 +00001430
Brian Paul21f69782004-11-27 05:05:32 +00001431 /* setup the API dispatch tables */
1432 ctx->Exec = alloc_dispatch_table();
1433 ctx->Save = alloc_dispatch_table();
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001434 if (!ctx->Exec || !ctx->Save) {
1435 free_shared_state(ctx, ctx->Shared);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001436 if (ctx->Exec)
Brian Paul21f69782004-11-27 05:05:32 +00001437 _mesa_free(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001438 }
Brian Paul21f69782004-11-27 05:05:32 +00001439 _mesa_init_exec_table(ctx->Exec);
Brian Paul3ab6bbe2000-02-12 17:26:15 +00001440 ctx->CurrentDispatch = ctx->Exec;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001441#if _HAVE_FULL_GL
Brian Paul21f69782004-11-27 05:05:32 +00001442 _mesa_init_dlist_table(ctx->Save);
Keith Whitwellae0eaf92003-11-24 15:23:18 +00001443 _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001444 /* Neutral tnl module stuff */
Keith Whitwell6dc85572003-07-17 13:43:59 +00001445 _mesa_init_exec_vtxfmt( ctx );
Gareth Hughesd8aa0262001-03-11 18:49:11 +00001446 ctx->TnlModule.Current = NULL;
1447 ctx->TnlModule.SwapCount = 0;
Keith Whitwell6dc85572003-07-17 13:43:59 +00001448#endif
Brian Paulb6bcae52001-01-23 23:39:36 +00001449
Keith Whitwell47b29f52005-05-04 11:44:44 +00001450 ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL);
1451 ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL);
1452
Brian Paul4d053dd2000-01-14 04:45:47 +00001453 return GL_TRUE;
jtgafb833d1999-08-19 00:55:39 +00001454}
1455
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001456
Brian Paulde4f4602003-07-03 02:15:06 +00001457/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001458 * Allocate and initialize a GLcontext structure.
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001459 * Note that the driver needs to pass in its dd_function_table here since
1460 * we need to at least call driverFunctions->NewTextureObject to initialize
1461 * the rendering context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001462 *
1463 * \param visual a GLvisual pointer (we copy the struct contents)
1464 * \param share_list another context to share display lists with or NULL
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001465 * \param driverFunctions points to the dd_function_table into which the
1466 * driver has plugged in all its special functions.
1467 * \param driverCtx points to the device driver's private context state
Keith Whitwell6dc85572003-07-17 13:43:59 +00001468 *
1469 * \return pointer to a new __GLcontextRec or NULL if error.
Brian Paul4d053dd2000-01-14 04:45:47 +00001470 */
Brian Paul178a1c52000-04-22 01:05:00 +00001471GLcontext *
Brian Paulbe3602d2001-02-28 00:27:48 +00001472_mesa_create_context( const GLvisual *visual,
Brian Paulb1394fa2000-09-26 20:53:53 +00001473 GLcontext *share_list,
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001474 const struct dd_function_table *driverFunctions,
1475 void *driverContext )
Brian Paul3c634522002-10-24 23:57:19 +00001476
Brian Paul4d053dd2000-01-14 04:45:47 +00001477{
Brian Paul4753d602002-06-15 02:38:15 +00001478 GLcontext *ctx;
1479
1480 ASSERT(visual);
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001481 ASSERT(driverContext);
Brian Paul4753d602002-06-15 02:38:15 +00001482
Brian Paul3c634522002-10-24 23:57:19 +00001483 ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext));
Brian Paul4753d602002-06-15 02:38:15 +00001484 if (!ctx)
Brian Paul4d053dd2000-01-14 04:45:47 +00001485 return NULL;
Brian Paul4753d602002-06-15 02:38:15 +00001486
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001487 if (_mesa_initialize_context(ctx, visual, share_list,
1488 driverFunctions, driverContext)) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001489 return ctx;
1490 }
1491 else {
Brian Paul3c634522002-10-24 23:57:19 +00001492 _mesa_free(ctx);
Brian Paul4d053dd2000-01-14 04:45:47 +00001493 return NULL;
1494 }
1495}
1496
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001497
Keith Whitwell6dc85572003-07-17 13:43:59 +00001498/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001499 * Free the data associated with the given context.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001500 *
1501 * But doesn't free the GLcontext struct itself.
1502 *
1503 * \sa _mesa_initialize_context() and init_attrib_groups().
Brian Paul4d053dd2000-01-14 04:45:47 +00001504 */
Brian Paul178a1c52000-04-22 01:05:00 +00001505void
Brian Paulb1394fa2000-09-26 20:53:53 +00001506_mesa_free_context_data( GLcontext *ctx )
Brian Paul4d053dd2000-01-14 04:45:47 +00001507{
Brian Paul4d053dd2000-01-14 04:45:47 +00001508 /* if we're destroying the current context, unbind it first */
Brian Paulb1394fa2000-09-26 20:53:53 +00001509 if (ctx == _mesa_get_current_context()) {
Brian Paule4b23562005-05-04 20:11:35 +00001510 _mesa_make_current(NULL, NULL, NULL);
Brian Paul4d053dd2000-01-14 04:45:47 +00001511 }
1512
Keith Whitwell6dc85572003-07-17 13:43:59 +00001513 _mesa_free_lighting_data( ctx );
1514 _mesa_free_eval_data( ctx );
1515 _mesa_free_texture_data( ctx );
1516 _mesa_free_matrix_data( ctx );
1517 _mesa_free_viewport_data( ctx );
Brian Paul05944c02003-07-22 03:51:46 +00001518 _mesa_free_colortables_data( ctx );
Brian Paul21841f02004-08-14 14:28:11 +00001519 _mesa_free_program_data(ctx);
1520 _mesa_free_occlude_data(ctx);
1521
1522#if FEATURE_ARB_vertex_buffer_object
1523 _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj);
Brian Paul8dfc5b92002-10-16 17:57:51 +00001524#endif
Brian Paulfd284452001-07-19 15:54:34 +00001525
Brian Paul65a66f52004-11-27 22:47:59 +00001526 /* free dispatch tables */
1527 _mesa_free(ctx->Exec);
1528 _mesa_free(ctx->Save);
1529
Brian Paul30f51ae2001-12-18 04:06:44 +00001530 /* Shared context state (display lists, textures, etc) */
Brian Paul9560f052000-01-31 23:11:39 +00001531 _glthread_LOCK_MUTEX(ctx->Shared->Mutex);
Brian Paul4d053dd2000-01-14 04:45:47 +00001532 ctx->Shared->RefCount--;
Brian Paul9560f052000-01-31 23:11:39 +00001533 assert(ctx->Shared->RefCount >= 0);
1534 _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex);
1535 if (ctx->Shared->RefCount == 0) {
Brian Paul4d053dd2000-01-14 04:45:47 +00001536 /* free shared state */
1537 free_shared_state( ctx, ctx->Shared );
1538 }
1539
Brian Paul702ca202003-07-18 15:22:16 +00001540 if (ctx->Extensions.String)
1541 FREE((void *) ctx->Extensions.String);
Brian Paul4d053dd2000-01-14 04:45:47 +00001542}
1543
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001544
Keith Whitwell6dc85572003-07-17 13:43:59 +00001545/**
Brian Paul4d053dd2000-01-14 04:45:47 +00001546 * Destroy a GLcontext structure.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001547 *
1548 * \param ctx GL context.
1549 *
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001550 * Calls _mesa_free_context_data() and frees the GLcontext structure itself.
jtgafb833d1999-08-19 00:55:39 +00001551 */
Brian Paul178a1c52000-04-22 01:05:00 +00001552void
Brian Paulb1394fa2000-09-26 20:53:53 +00001553_mesa_destroy_context( GLcontext *ctx )
jtgafb833d1999-08-19 00:55:39 +00001554{
1555 if (ctx) {
Brian Paulb1394fa2000-09-26 20:53:53 +00001556 _mesa_free_context_data(ctx);
Brian Paulbd5cdaf1999-10-13 18:42:49 +00001557 FREE( (void *) ctx );
jtgafb833d1999-08-19 00:55:39 +00001558 }
1559}
1560
Brian Pauld3fd7ba2004-01-20 02:49:27 +00001561
Keith Whitwell6dc85572003-07-17 13:43:59 +00001562#if _HAVE_FULL_GL
1563/**
jtgafb833d1999-08-19 00:55:39 +00001564 * Copy attribute groups from one context to another.
Keith Whitwell6dc85572003-07-17 13:43:59 +00001565 *
1566 * \param src source context
1567 * \param dst destination context
1568 * \param mask bitwise OR of GL_*_BIT flags
1569 *
1570 * According to the bits specified in \p mask, copies the corresponding
Jose Fonseca375457b2004-09-09 22:23:24 +00001571 * attributes from \p src into \p dst. For many of the attributes a simple \c
Keith Whitwell6dc85572003-07-17 13:43:59 +00001572 * memcpy is not enough due to the existence of internal pointers in their data
1573 * structures.
jtgafb833d1999-08-19 00:55:39 +00001574 */
Brian Paul178a1c52000-04-22 01:05:00 +00001575void
Brian Paulb1394fa2000-09-26 20:53:53 +00001576_mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask )
jtgafb833d1999-08-19 00:55:39 +00001577{
1578 if (mask & GL_ACCUM_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001579 /* OK to memcpy */
1580 dst->Accum = src->Accum;
jtgafb833d1999-08-19 00:55:39 +00001581 }
1582 if (mask & GL_COLOR_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001583 /* OK to memcpy */
1584 dst->Color = src->Color;
jtgafb833d1999-08-19 00:55:39 +00001585 }
1586 if (mask & GL_CURRENT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001587 /* OK to memcpy */
1588 dst->Current = src->Current;
jtgafb833d1999-08-19 00:55:39 +00001589 }
1590 if (mask & GL_DEPTH_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001591 /* OK to memcpy */
1592 dst->Depth = src->Depth;
jtgafb833d1999-08-19 00:55:39 +00001593 }
1594 if (mask & GL_ENABLE_BIT) {
1595 /* no op */
1596 }
1597 if (mask & GL_EVAL_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001598 /* OK to memcpy */
1599 dst->Eval = src->Eval;
jtgafb833d1999-08-19 00:55:39 +00001600 }
1601 if (mask & GL_FOG_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001602 /* OK to memcpy */
1603 dst->Fog = src->Fog;
jtgafb833d1999-08-19 00:55:39 +00001604 }
1605 if (mask & GL_HINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001606 /* OK to memcpy */
1607 dst->Hint = src->Hint;
jtgafb833d1999-08-19 00:55:39 +00001608 }
1609 if (mask & GL_LIGHTING_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001610 GLuint i;
1611 /* begin with memcpy */
1612 MEMCPY( &dst->Light, &src->Light, sizeof(struct gl_light) );
1613 /* fixup linked lists to prevent pointer insanity */
1614 make_empty_list( &(dst->Light.EnabledList) );
1615 for (i = 0; i < MAX_LIGHTS; i++) {
1616 if (dst->Light.Light[i].Enabled) {
1617 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1618 }
1619 }
jtgafb833d1999-08-19 00:55:39 +00001620 }
1621 if (mask & GL_LINE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001622 /* OK to memcpy */
1623 dst->Line = src->Line;
jtgafb833d1999-08-19 00:55:39 +00001624 }
1625 if (mask & GL_LIST_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001626 /* OK to memcpy */
1627 dst->List = src->List;
jtgafb833d1999-08-19 00:55:39 +00001628 }
1629 if (mask & GL_PIXEL_MODE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001630 /* OK to memcpy */
1631 dst->Pixel = src->Pixel;
jtgafb833d1999-08-19 00:55:39 +00001632 }
1633 if (mask & GL_POINT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001634 /* OK to memcpy */
1635 dst->Point = src->Point;
jtgafb833d1999-08-19 00:55:39 +00001636 }
1637 if (mask & GL_POLYGON_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001638 /* OK to memcpy */
1639 dst->Polygon = src->Polygon;
jtgafb833d1999-08-19 00:55:39 +00001640 }
1641 if (mask & GL_POLYGON_STIPPLE_BIT) {
1642 /* Use loop instead of MEMCPY due to problem with Portland Group's
1643 * C compiler. Reported by John Stone.
1644 */
Brian Paul85d81602002-06-17 23:36:31 +00001645 GLuint i;
1646 for (i = 0; i < 32; i++) {
jtgafb833d1999-08-19 00:55:39 +00001647 dst->PolygonStipple[i] = src->PolygonStipple[i];
1648 }
1649 }
1650 if (mask & GL_SCISSOR_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001651 /* OK to memcpy */
1652 dst->Scissor = src->Scissor;
jtgafb833d1999-08-19 00:55:39 +00001653 }
1654 if (mask & GL_STENCIL_BUFFER_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001655 /* OK to memcpy */
1656 dst->Stencil = src->Stencil;
jtgafb833d1999-08-19 00:55:39 +00001657 }
1658 if (mask & GL_TEXTURE_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001659 /* Cannot memcpy because of pointers */
1660 _mesa_copy_texture_state(src, dst);
jtgafb833d1999-08-19 00:55:39 +00001661 }
1662 if (mask & GL_TRANSFORM_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001663 /* OK to memcpy */
1664 dst->Transform = src->Transform;
jtgafb833d1999-08-19 00:55:39 +00001665 }
1666 if (mask & GL_VIEWPORT_BIT) {
Brian Paul85d81602002-06-17 23:36:31 +00001667 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1668 dst->Viewport.X = src->Viewport.X;
1669 dst->Viewport.Y = src->Viewport.Y;
1670 dst->Viewport.Width = src->Viewport.Width;
1671 dst->Viewport.Height = src->Viewport.Height;
1672 dst->Viewport.Near = src->Viewport.Near;
1673 dst->Viewport.Far = src->Viewport.Far;
1674 _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap);
jtgafb833d1999-08-19 00:55:39 +00001675 }
Brian Paul85d81602002-06-17 23:36:31 +00001676
Keith Whitwella96308c2000-10-30 13:31:59 +00001677 /* XXX FIXME: Call callbacks?
1678 */
1679 dst->NewState = _NEW_ALL;
jtgafb833d1999-08-19 00:55:39 +00001680}
Keith Whitwell23caf202000-11-16 21:05:34 +00001681#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001682
1683
Brian Paulb1d53d92003-06-11 18:48:19 +00001684/**
1685 * Check if the given context can render into the given framebuffer
1686 * by checking visual attributes.
1687 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1688 */
1689static GLboolean
1690check_compatible(const GLcontext *ctx, const GLframebuffer *buffer)
1691{
1692 const GLvisual *ctxvis = &ctx->Visual;
1693 const GLvisual *bufvis = &buffer->Visual;
1694
1695 if (ctxvis == bufvis)
1696 return GL_TRUE;
1697
1698 if (ctxvis->rgbMode != bufvis->rgbMode)
1699 return GL_FALSE;
1700 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1701 return GL_FALSE;
1702 if (ctxvis->stereoMode && !bufvis->stereoMode)
1703 return GL_FALSE;
1704 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1705 return GL_FALSE;
1706 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1707 return GL_FALSE;
1708 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1709 return GL_FALSE;
1710 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1711 return GL_FALSE;
1712 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1713 return GL_FALSE;
1714 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1715 return GL_FALSE;
1716 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1717 return GL_FALSE;
1718 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1719 return GL_FALSE;
1720
1721 return GL_TRUE;
1722}
1723
1724
Keith Whitwell6dc85572003-07-17 13:43:59 +00001725/**
Keith Whitwell6dc85572003-07-17 13:43:59 +00001726 * Bind the given context to the given draw-buffer and read-buffer and
1727 * make it the current context for this thread.
1728 *
1729 * \param newCtx new GL context. If NULL then there will be no current GL
1730 * context.
1731 * \param drawBuffer draw framebuffer.
1732 * \param readBuffer read framebuffer.
1733 *
1734 * Check that the context's and framebuffer's visuals are compatible, returning
1735 * immediately otherwise. Sets the glapi current context via
1736 * _glapi_set_context(). If \p newCtx is not NULL, associates \p drawBuffer and
1737 * \p readBuffer with it and calls dd_function_table::ResizeBuffers if the buffers size has changed.
1738 * Calls dd_function_table::MakeCurrent callback if defined.
1739 *
1740 * When a context is bound by the first time and the \c MESA_INFO environment
1741 * variable is set it calls print_info() as an aid for remote user
1742 * troubleshooting.
Brian Paul00037781999-12-17 14:52:35 +00001743 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001744void
Brian Paule4b23562005-05-04 20:11:35 +00001745_mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer,
1746 GLframebuffer *readBuffer )
Brian Paul00037781999-12-17 14:52:35 +00001747{
Keith Whitwell5c728372005-05-12 10:22:29 +00001748 if (MESA_VERBOSE & VERBOSE_API)
Brian Paule4b23562005-05-04 20:11:35 +00001749 _mesa_debug(newCtx, "_mesa_make_current()\n");
Brian Paul00037781999-12-17 14:52:35 +00001750
Brian Paulbe3602d2001-02-28 00:27:48 +00001751 /* Check that the context's and framebuffer's visuals are compatible.
Brian Paulbe3602d2001-02-28 00:27:48 +00001752 */
Brian Paulb1d53d92003-06-11 18:48:19 +00001753 if (newCtx && drawBuffer && newCtx->DrawBuffer != drawBuffer) {
1754 if (!check_compatible(newCtx, drawBuffer))
1755 return;
1756 }
1757 if (newCtx && readBuffer && newCtx->ReadBuffer != readBuffer) {
1758 if (!check_compatible(newCtx, readBuffer))
1759 return;
Brian Paulbe3602d2001-02-28 00:27:48 +00001760 }
1761
Brian Paul00037781999-12-17 14:52:35 +00001762 /* We call this function periodically (just here for now) in
1763 * order to detect when multithreading has begun.
1764 */
1765 _glapi_check_multithread();
1766
Brian Paulf9b97d92000-01-28 20:17:42 +00001767 _glapi_set_context((void *) newCtx);
Brian Paulb1394fa2000-09-26 20:53:53 +00001768 ASSERT(_mesa_get_current_context() == newCtx);
Keith Whitwell23caf202000-11-16 21:05:34 +00001769
Keith Whitwell23caf202000-11-16 21:05:34 +00001770 if (!newCtx) {
Brian Paul00037781999-12-17 14:52:35 +00001771 _glapi_set_dispatch(NULL); /* none current */
1772 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001773 else {
1774 _glapi_set_dispatch(newCtx->CurrentDispatch);
Brian Paul00037781999-12-17 14:52:35 +00001775
Keith Whitwell23caf202000-11-16 21:05:34 +00001776 if (drawBuffer && readBuffer) {
1777 /* TODO: check if newCtx and buffer's visual match??? */
Brian Paule4b23562005-05-04 20:11:35 +00001778
1779#if NEW_RENDERBUFFER
1780 ASSERT(drawBuffer->Name == 0);
1781 ASSERT(readBuffer->Name == 0);
1782 newCtx->WinSysDrawBuffer = drawBuffer;
1783 newCtx->WinSysReadBuffer = readBuffer;
1784 /* don't replace user-buffer bindings with window system buffer */
1785 if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) {
1786 newCtx->DrawBuffer = drawBuffer;
1787 newCtx->ReadBuffer = readBuffer;
1788 }
1789#else
Keith Whitwell23caf202000-11-16 21:05:34 +00001790 newCtx->DrawBuffer = drawBuffer;
1791 newCtx->ReadBuffer = readBuffer;
Brian Paule4b23562005-05-04 20:11:35 +00001792#endif
Keith Whitwell23caf202000-11-16 21:05:34 +00001793 newCtx->NewState |= _NEW_BUFFERS;
Brian Paul10d7f542002-06-17 23:38:14 +00001794
Keith Whitwell6dc85572003-07-17 13:43:59 +00001795#if _HAVE_FULL_GL
Brian Paul65a66f52004-11-27 22:47:59 +00001796 if (!drawBuffer->Initialized) {
Brian Paul10d7f542002-06-17 23:38:14 +00001797 /* get initial window size */
1798 GLuint bufWidth, bufHeight;
Brian Paul65a66f52004-11-27 22:47:59 +00001799 /* ask device driver for size of the buffer */
1800 (*newCtx->Driver.GetBufferSize)(drawBuffer, &bufWidth, &bufHeight);
1801 /* set initial buffer size */
Brian Paule4b23562005-05-04 20:11:35 +00001802 if (newCtx->Driver.ResizeBuffers)
1803 newCtx->Driver.ResizeBuffers(newCtx, drawBuffer,
1804 bufWidth, bufHeight);
Brian Paul65a66f52004-11-27 22:47:59 +00001805 drawBuffer->Initialized = GL_TRUE;
Brian Paul10d7f542002-06-17 23:38:14 +00001806 }
1807
Brian Paul65a66f52004-11-27 22:47:59 +00001808 if (readBuffer != drawBuffer && !readBuffer->Initialized) {
Brian Paul10d7f542002-06-17 23:38:14 +00001809 /* get initial window size */
1810 GLuint bufWidth, bufHeight;
Brian Paul65a66f52004-11-27 22:47:59 +00001811 /* ask device driver for size of the buffer */
1812 (*newCtx->Driver.GetBufferSize)(readBuffer, &bufWidth, &bufHeight);
1813 /* set initial buffer size */
Brian Paule4b23562005-05-04 20:11:35 +00001814 if (newCtx->Driver.ResizeBuffers)
1815 newCtx->Driver.ResizeBuffers(newCtx, readBuffer,
1816 bufWidth, bufHeight);
Brian Paul65a66f52004-11-27 22:47:59 +00001817 readBuffer->Initialized = GL_TRUE;
Brian Paul10d7f542002-06-17 23:38:14 +00001818 }
Keith Whitwell6dc85572003-07-17 13:43:59 +00001819#endif
Brian Paul65a66f52004-11-27 22:47:59 +00001820 if (newCtx->FirstTimeCurrent) {
1821 /* set initial viewport and scissor size now */
1822 _mesa_set_viewport(newCtx, 0, 0, drawBuffer->Width, drawBuffer->Height);
1823 newCtx->Scissor.Width = drawBuffer->Width;
1824 newCtx->Scissor.Height = drawBuffer->Height;
1825 }
Brian Paul00037781999-12-17 14:52:35 +00001826 }
Keith Whitwell23caf202000-11-16 21:05:34 +00001827
Keith Whitwell6dc85572003-07-17 13:43:59 +00001828 /* Alert the driver - usually passed on to the sw t&l module,
1829 * but also used to detect threaded cases in the radeon codegen
1830 * hw t&l module.
1831 */
Jouk Jansen5e3bc0c2000-11-22 07:32:16 +00001832 if (newCtx->Driver.MakeCurrent)
Keith Whitwell23caf202000-11-16 21:05:34 +00001833 newCtx->Driver.MakeCurrent( newCtx, drawBuffer, readBuffer );
1834
1835 /* We can use this to help debug user's problems. Tell them to set
1836 * the MESA_INFO env variable before running their app. Then the
1837 * first time each context is made current we'll print some useful
1838 * information.
1839 */
1840 if (newCtx->FirstTimeCurrent) {
Brian Paul3c634522002-10-24 23:57:19 +00001841 if (_mesa_getenv("MESA_INFO")) {
Keith Whitwell6dc85572003-07-17 13:43:59 +00001842 _mesa_print_info();
Keith Whitwell23caf202000-11-16 21:05:34 +00001843 }
1844 newCtx->FirstTimeCurrent = GL_FALSE;
1845 }
Brian Paul00037781999-12-17 14:52:35 +00001846 }
1847}
1848
Brian Paul635ee2d2005-04-15 17:25:07 +00001849
1850/**
1851 * Make context 'ctx' share the display lists, textures and programs
1852 * that are associated with 'ctxToShare'.
1853 * Any display lists, textures or programs associated with 'ctx' will
1854 * be deleted if nobody else is sharing them.
1855 */
1856GLboolean
1857_mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare)
1858{
1859 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1860 ctx->Shared->RefCount--;
1861 if (ctx->Shared->RefCount == 0) {
1862 free_shared_state(ctx, ctx->Shared);
1863 }
1864 ctx->Shared = ctxToShare->Shared;
1865 ctx->Shared->RefCount++;
1866 return GL_TRUE;
1867 }
1868 else {
1869 return GL_FALSE;
1870 }
1871}
1872
1873
1874
Keith Whitwell6dc85572003-07-17 13:43:59 +00001875/**
1876 * Get current context for the calling thread.
1877 *
1878 * \return pointer to the current GL context.
1879 *
1880 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1881 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h.
Brian Paul00037781999-12-17 14:52:35 +00001882 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001883GLcontext *
1884_mesa_get_current_context( void )
Brian Paul00037781999-12-17 14:52:35 +00001885{
Brian Paulf9b97d92000-01-28 20:17:42 +00001886 return (GLcontext *) _glapi_get_context();
Brian Paul00037781999-12-17 14:52:35 +00001887}
1888
Keith Whitwell6dc85572003-07-17 13:43:59 +00001889/**
1890 * Get context's current API dispatch table.
1891 *
1892 * It'll either be the immediate-mode execute dispatcher or the display list
1893 * compile dispatcher.
1894 *
1895 * \param ctx GL context.
1896 *
1897 * \return pointer to dispatch_table.
1898 *
1899 * Simply returns __GLcontextRec::CurrentDispatch.
Brian Paulfbd8f211999-11-11 01:22:25 +00001900 */
1901struct _glapi_table *
1902_mesa_get_dispatch(GLcontext *ctx)
1903{
1904 return ctx->CurrentDispatch;
1905}
1906
Keith Whitwell6dc85572003-07-17 13:43:59 +00001907/*@}*/
Brian Paulfbd8f211999-11-11 01:22:25 +00001908
1909
jtgafb833d1999-08-19 00:55:39 +00001910/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001911/** \name Miscellaneous functions */
jtgafb833d1999-08-19 00:55:39 +00001912/**********************************************************************/
Keith Whitwell6dc85572003-07-17 13:43:59 +00001913/*@{*/
jtgafb833d1999-08-19 00:55:39 +00001914
Keith Whitwell6dc85572003-07-17 13:43:59 +00001915/**
1916 * Record an error.
1917 *
1918 * \param ctx GL context.
1919 * \param error error code.
1920 *
1921 * Records the given error code and call the driver's dd_function_table::Error
1922 * function if defined.
1923 *
1924 * \sa
Brian Paul4e9676f2002-06-29 19:48:15 +00001925 * This is called via _mesa_error().
jtgafb833d1999-08-19 00:55:39 +00001926 */
Brian Paulb1394fa2000-09-26 20:53:53 +00001927void
Brian Paul4e9676f2002-06-29 19:48:15 +00001928_mesa_record_error( GLcontext *ctx, GLenum error )
jtgafb833d1999-08-19 00:55:39 +00001929{
Brian Paul18a285a2002-03-16 00:53:15 +00001930 if (!ctx)
1931 return;
1932
Brian Paul7eb06032000-07-14 04:13:40 +00001933 if (ctx->ErrorValue == GL_NO_ERROR) {
jtgafb833d1999-08-19 00:55:39 +00001934 ctx->ErrorValue = error;
1935 }
1936
1937 /* Call device driver's error handler, if any. This is used on the Mac. */
1938 if (ctx->Driver.Error) {
1939 (*ctx->Driver.Error)( ctx );
1940 }
1941}
1942
Keith Whitwell6dc85572003-07-17 13:43:59 +00001943/**
1944 * Execute glFinish().
1945 *
1946 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1947 * dd_function_table::Finish driver callback, if not NULL.
1948 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001949void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001950_mesa_Finish( void )
jtgafb833d1999-08-19 00:55:39 +00001951{
Brian Paulfa9df402000-02-02 19:16:46 +00001952 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001953 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001954 if (ctx->Driver.Finish) {
1955 (*ctx->Driver.Finish)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001956 }
1957}
1958
Keith Whitwell6dc85572003-07-17 13:43:59 +00001959/**
1960 * Execute glFlush().
1961 *
1962 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1963 * dd_function_table::Flush driver callback, if not NULL.
1964 */
Kendall Bennettc40d1dd2003-10-21 22:22:17 +00001965void GLAPIENTRY
Brian Paulfa9df402000-02-02 19:16:46 +00001966_mesa_Flush( void )
jtgafb833d1999-08-19 00:55:39 +00001967{
Brian Paulfa9df402000-02-02 19:16:46 +00001968 GET_CURRENT_CONTEXT(ctx);
Keith Whitwellcab974c2000-12-26 05:09:27 +00001969 ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
Brian Paulfa9df402000-02-02 19:16:46 +00001970 if (ctx->Driver.Flush) {
1971 (*ctx->Driver.Flush)( ctx );
jtgafb833d1999-08-19 00:55:39 +00001972 }
jtgafb833d1999-08-19 00:55:39 +00001973}
Brian Paul48c6a6e2000-09-08 21:28:04 +00001974
1975
Keith Whitwell6dc85572003-07-17 13:43:59 +00001976/*@}*/