| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1 | /** |
| 2 | * \file context.c |
| 3 | * Mesa context/visual/framebuffer management functions. |
| 4 | * \author Brian Paul |
| 5 | */ |
| 6 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 7 | /* |
| 8 | * Mesa 3-D graphics library |
| Brian Paul | 363344f | 2005-09-13 14:48:28 +0000 | [diff] [blame] | 9 | * Version: 6.5 |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 10 | * |
| Brian Paul | 2aabdc7 | 2006-02-24 18:19:11 +0000 | [diff] [blame] | 11 | * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 12 | * |
| 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 Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 32 | /** |
| Brian Paul | 253204f | 2004-09-10 00:45:12 +0000 | [diff] [blame] | 33 | * \mainpage Mesa Main Module |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 34 | * |
| Brian Paul | 253204f | 2004-09-10 00:45:12 +0000 | [diff] [blame] | 35 | * \section MainIntroduction Introduction |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 36 | * |
| Brian Paul | 253204f | 2004-09-10 00:45:12 +0000 | [diff] [blame] | 37 | * 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 Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 46 | * |
| Brian Paul | 253204f | 2004-09-10 00:45:12 +0000 | [diff] [blame] | 47 | * 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 Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 50 | * |
| 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 Fonseca | 1a5709d | 2003-09-17 17:14:11 +0000 | [diff] [blame] | 64 | * Selecting <b>Data Structures</b> will list all C structures. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 65 | * |
| 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 Fonseca | 1a5709d | 2003-09-17 17:14:11 +0000 | [diff] [blame] | 70 | * Selecting the <b>Data Fields</b> link will display a list of all |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 71 | * documented structure members. |
| 72 | * |
| Jose Fonseca | 1a5709d | 2003-09-17 17:14:11 +0000 | [diff] [blame] | 73 | * Selecting the <b>Globals</b> link will display a list |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 74 | * of all functions, structures, global variables and macros in the module. |
| 75 | * |
| 76 | */ |
| 77 | |
| 78 | |
| Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 79 | #include "glheader.h" |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 80 | #include "imports.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 81 | #include "accum.h" |
| Brian Paul | c04bb51 | 2006-07-11 21:56:43 +0000 | [diff] [blame] | 82 | #include "arrayobj.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 83 | #include "attrib.h" |
| 84 | #include "blend.h" |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 85 | #include "buffers.h" |
| Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 86 | #include "bufferobj.h" |
| Brian Paul | 4bdcfe5 | 2000-04-17 17:57:04 +0000 | [diff] [blame] | 87 | #include "colortab.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 88 | #include "context.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 89 | #include "debug.h" |
| 90 | #include "depth.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 91 | #include "dlist.h" |
| 92 | #include "eval.h" |
| 93 | #include "enums.h" |
| Brian Paul | 585a68c | 1999-09-11 11:31:34 +0000 | [diff] [blame] | 94 | #include "extensions.h" |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 95 | #include "fbobject.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 96 | #include "feedback.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 97 | #include "fog.h" |
| Brian | e6a9381 | 2007-02-26 11:37:37 -0700 | [diff] [blame^] | 98 | #include "framebuffer.h" |
| Brian Paul | b7a4304 | 1999-11-30 20:34:51 +0000 | [diff] [blame] | 99 | #include "get.h" |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 100 | #include "glthread.h" |
| Brian Paul | f44898c | 2003-07-18 15:44:57 +0000 | [diff] [blame] | 101 | #include "glapioffsets.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 102 | #include "histogram.h" |
| 103 | #include "hint.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 104 | #include "hash.h" |
| Brian Paul | 63d6830 | 2005-11-19 16:43:04 +0000 | [diff] [blame] | 105 | #include "atifragshader.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 106 | #include "light.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 107 | #include "lines.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 108 | #include "macros.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 109 | #include "matrix.h" |
| Brian Paul | 05944c0 | 2003-07-22 03:51:46 +0000 | [diff] [blame] | 110 | #include "occlude.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 111 | #include "pixel.h" |
| 112 | #include "points.h" |
| 113 | #include "polygon.h" |
| Brian Paul | 3173277 | 2003-09-18 16:39:09 +0000 | [diff] [blame] | 114 | #if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program |
| 115 | #include "program.h" |
| 116 | #endif |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 117 | #include "rastpos.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 118 | #include "simple_list.h" |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 119 | #include "state.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 120 | #include "stencil.h" |
| Brian Paul | 8f04c12 | 2004-04-27 13:39:20 +0000 | [diff] [blame] | 121 | #include "texcompress.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 122 | #include "teximage.h" |
| 123 | #include "texobj.h" |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 124 | #include "texstate.h" |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 125 | #include "mtypes.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 126 | #include "varray.h" |
| Brian Paul | 363344f | 2005-09-13 14:48:28 +0000 | [diff] [blame] | 127 | #include "version.h" |
| Gareth Hughes | d4eb665 | 2001-03-12 01:32:20 +0000 | [diff] [blame] | 128 | #include "vtxfmt.h" |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 129 | #if _HAVE_FULL_GL |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 130 | #include "math/m_translate.h" |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 131 | #include "math/m_matrix.h" |
| 132 | #include "math/m_xform.h" |
| Keith Whitwell | f4b02d1 | 2001-01-05 05:31:42 +0000 | [diff] [blame] | 133 | #include "math/mathmod.h" |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 134 | #endif |
| Michal Krol | 9b3752c | 2005-01-13 14:08:47 +0000 | [diff] [blame] | 135 | #include "shaderobjects.h" |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 136 | |
| davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 137 | #ifdef USE_SPARC_ASM |
| Ian Romanick | e16f6e3 | 2004-06-26 00:02:51 +0000 | [diff] [blame] | 138 | #include "sparc/sparc.h" |
| davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 139 | #endif |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 140 | |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 141 | #ifndef MESA_VERBOSE |
| Keith Whitwell | 306d3fc | 2002-04-09 16:56:50 +0000 | [diff] [blame] | 142 | int MESA_VERBOSE = 0; |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 143 | #endif |
| 144 | |
| 145 | #ifndef MESA_DEBUG_FLAGS |
| Keith Whitwell | 306d3fc | 2002-04-09 16:56:50 +0000 | [diff] [blame] | 146 | int MESA_DEBUG_FLAGS = 0; |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 147 | #endif |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 148 | |
| Brian Paul | 86b8427 | 2001-12-14 02:50:01 +0000 | [diff] [blame] | 149 | |
| Brian Paul | 27558a1 | 2003-03-01 01:50:20 +0000 | [diff] [blame] | 150 | /* ubyte -> float conversion */ |
| 151 | GLfloat _mesa_ubyte_to_float_color_tab[256]; |
| 152 | |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 153 | static void |
| 154 | free_shared_state( GLcontext *ctx, struct gl_shared_state *ss ); |
| 155 | |
| Brian Paul | 86b8427 | 2001-12-14 02:50:01 +0000 | [diff] [blame] | 156 | |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 157 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 158 | /** \name OpenGL SI-style interface (new in Mesa 3.5) |
| 159 | * |
| 160 | * \if subset |
| 161 | * \note Most of these functions are never called in the Mesa subset. |
| 162 | * \endif |
| 163 | */ |
| 164 | /*@{*/ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 165 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 166 | /** |
| 167 | * Destroy context callback. |
| 168 | * |
| 169 | * \param gc context. |
| 170 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 171 | * |
| 172 | * \ifnot subset |
| 173 | * Called by window system/device driver (via __GLexports::destroyCurrent) when |
| 174 | * the rendering context is to be destroyed. |
| 175 | * \endif |
| 176 | * |
| 177 | * Frees the context data and the context structure. |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 178 | */ |
| 179 | GLboolean |
| 180 | _mesa_destroyContext(__GLcontext *gc) |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 181 | { |
| 182 | if (gc) { |
| 183 | _mesa_free_context_data(gc); |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 184 | _mesa_free(gc); |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 185 | } |
| 186 | return GL_TRUE; |
| 187 | } |
| 188 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 189 | /** |
| 190 | * Unbind context callback. |
| 191 | * |
| 192 | * \param gc context. |
| 193 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 194 | * |
| 195 | * \ifnot subset |
| 196 | * Called by window system/device driver (via __GLexports::loseCurrent) |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 197 | * when the rendering context is made non-current. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 198 | * \endif |
| 199 | * |
| 200 | * No-op |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 201 | */ |
| 202 | GLboolean |
| 203 | _mesa_loseCurrent(__GLcontext *gc) |
| 204 | { |
| 205 | /* XXX unbind context from thread */ |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 206 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 207 | return GL_TRUE; |
| 208 | } |
| 209 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 210 | /** |
| 211 | * Bind context callback. |
| 212 | * |
| 213 | * \param gc context. |
| 214 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 215 | * |
| 216 | * \ifnot subset |
| 217 | * Called by window system/device driver (via __GLexports::makeCurrent) |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 218 | * when the rendering context is made current. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 219 | * \endif |
| 220 | * |
| 221 | * No-op |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 222 | */ |
| 223 | GLboolean |
| 224 | _mesa_makeCurrent(__GLcontext *gc) |
| 225 | { |
| 226 | /* XXX bind context to thread */ |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 227 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 228 | return GL_TRUE; |
| 229 | } |
| 230 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 231 | /** |
| 232 | * Share context callback. |
| 233 | * |
| 234 | * \param gc context. |
| 235 | * \param gcShare shared context. |
| 236 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 237 | * |
| 238 | * \ifnot subset |
| 239 | * Called by window system/device driver (via __GLexports::shareContext) |
| 240 | * \endif |
| 241 | * |
| 242 | * Update the shared context reference count, gl_shared_state::RefCount. |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 243 | */ |
| 244 | GLboolean |
| 245 | _mesa_shareContext(__GLcontext *gc, __GLcontext *gcShare) |
| 246 | { |
| 247 | if (gc && gcShare && gc->Shared && gcShare->Shared) { |
| 248 | gc->Shared->RefCount--; |
| 249 | if (gc->Shared->RefCount == 0) { |
| 250 | free_shared_state(gc, gc->Shared); |
| 251 | } |
| 252 | gc->Shared = gcShare->Shared; |
| 253 | gc->Shared->RefCount++; |
| 254 | return GL_TRUE; |
| 255 | } |
| 256 | else { |
| 257 | return GL_FALSE; |
| 258 | } |
| 259 | } |
| 260 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 261 | |
| 262 | #if _HAVE_FULL_GL |
| 263 | /** |
| 264 | * Copy context callback. |
| 265 | */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 266 | GLboolean |
| 267 | _mesa_copyContext(__GLcontext *dst, const __GLcontext *src, GLuint mask) |
| 268 | { |
| 269 | if (dst && src) { |
| 270 | _mesa_copy_context( src, dst, mask ); |
| 271 | return GL_TRUE; |
| 272 | } |
| 273 | else { |
| 274 | return GL_FALSE; |
| 275 | } |
| 276 | } |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 277 | #endif |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 278 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 279 | /** No-op */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 280 | GLboolean |
| 281 | _mesa_forceCurrent(__GLcontext *gc) |
| 282 | { |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 283 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 284 | return GL_TRUE; |
| 285 | } |
| 286 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 287 | /** |
| 288 | * Windows/buffer resizing notification callback. |
| 289 | * |
| 290 | * \param gc GL context. |
| 291 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 292 | */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 293 | GLboolean |
| 294 | _mesa_notifyResize(__GLcontext *gc) |
| 295 | { |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 296 | /* update viewport, resize software buffers, etc. */ |
| George Sapountzis | c9b33ec | 2006-12-06 06:43:23 +0200 | [diff] [blame] | 297 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 298 | return GL_TRUE; |
| 299 | } |
| 300 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 301 | /** |
| 302 | * Window/buffer destruction notification callback. |
| 303 | * |
| 304 | * \param gc GL context. |
| 305 | * |
| 306 | * Called when the context's window/buffer is going to be destroyed. |
| 307 | * |
| 308 | * No-op |
| 309 | */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 310 | void |
| 311 | _mesa_notifyDestroy(__GLcontext *gc) |
| 312 | { |
| Brian Paul | 60b6e4f | 2002-10-14 17:08:17 +0000 | [diff] [blame] | 313 | /* Unbind from it. */ |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 314 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 315 | } |
| 316 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 317 | /** |
| 318 | * Swap buffers notification callback. |
| 319 | * |
| 320 | * \param gc GL context. |
| 321 | * |
| 322 | * Called by window system just before swapping buffers. |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 323 | * We have to finish any pending rendering. |
| 324 | */ |
| 325 | void |
| 326 | _mesa_notifySwapBuffers(__GLcontext *gc) |
| 327 | { |
| 328 | FLUSH_VERTICES( gc, 0 ); |
| 329 | } |
| 330 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 331 | /** No-op */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 332 | struct __GLdispatchStateRec * |
| 333 | _mesa_dispatchExec(__GLcontext *gc) |
| 334 | { |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 335 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 336 | return NULL; |
| 337 | } |
| 338 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 339 | /** No-op */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 340 | void |
| 341 | _mesa_beginDispatchOverride(__GLcontext *gc) |
| 342 | { |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 343 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 344 | } |
| 345 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 346 | /** No-op */ |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 347 | void |
| 348 | _mesa_endDispatchOverride(__GLcontext *gc) |
| 349 | { |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 350 | (void) gc; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 351 | } |
| 352 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 353 | /** |
| 354 | * \ifnot subset |
| 355 | * Setup the exports. |
| 356 | * |
| 357 | * The window system will call these functions when it needs Mesa to do |
| 358 | * something. |
| 359 | * |
| 360 | * \note Device drivers should override these functions! For example, |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 361 | * the Xlib driver should plug in the XMesa*-style functions into this |
| 362 | * structure. The XMesa-style functions should then call the _mesa_* |
| 363 | * version of these functions. This is an approximation to OO design |
| 364 | * (inheritance and virtual functions). |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 365 | * \endif |
| 366 | * |
| 367 | * \if subset |
| 368 | * No-op. |
| 369 | * |
| 370 | * \endif |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 371 | */ |
| 372 | static void |
| 373 | _mesa_init_default_exports(__GLexports *exports) |
| 374 | { |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 375 | #if _HAVE_FULL_GL |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 376 | exports->destroyContext = _mesa_destroyContext; |
| 377 | exports->loseCurrent = _mesa_loseCurrent; |
| 378 | exports->makeCurrent = _mesa_makeCurrent; |
| 379 | exports->shareContext = _mesa_shareContext; |
| 380 | exports->copyContext = _mesa_copyContext; |
| 381 | exports->forceCurrent = _mesa_forceCurrent; |
| 382 | exports->notifyResize = _mesa_notifyResize; |
| Brian Paul | 2f35d5e | 2002-06-13 04:31:09 +0000 | [diff] [blame] | 383 | exports->notifyDestroy = _mesa_notifyDestroy; |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 384 | exports->notifySwapBuffers = _mesa_notifySwapBuffers; |
| 385 | exports->dispatchExec = _mesa_dispatchExec; |
| 386 | exports->beginDispatchOverride = _mesa_beginDispatchOverride; |
| 387 | exports->endDispatchOverride = _mesa_endDispatchOverride; |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 388 | #else |
| 389 | (void) exports; |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 390 | #endif |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 391 | } |
| 392 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 393 | /** |
| 394 | * Exported OpenGL SI interface. |
| 395 | */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 396 | __GLcontext * |
| 397 | __glCoreCreateContext(__GLimports *imports, __GLcontextModes *modes) |
| 398 | { |
| 399 | GLcontext *ctx; |
| 400 | |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 401 | ctx = (GLcontext *) (*imports->calloc)(NULL, 1, sizeof(GLcontext)); |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 402 | if (ctx == NULL) { |
| 403 | return NULL; |
| 404 | } |
| Brian Paul | 60b6e4f | 2002-10-14 17:08:17 +0000 | [diff] [blame] | 405 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 406 | /* XXX doesn't work at this time */ |
| 407 | _mesa_initialize_context(ctx, modes, NULL, NULL, NULL); |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 408 | ctx->imports = *imports; |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 409 | |
| 410 | return ctx; |
| 411 | } |
| 412 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 413 | /** |
| 414 | * Exported OpenGL SI interface. |
| 415 | */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 416 | void |
| 417 | __glCoreNopDispatch(void) |
| 418 | { |
| 419 | #if 0 |
| 420 | /* SI */ |
| 421 | __gl_dispatch = __glNopDispatchState; |
| 422 | #else |
| 423 | /* Mesa */ |
| 424 | _glapi_set_dispatch(NULL); |
| 425 | #endif |
| 426 | } |
| 427 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 428 | /*@}*/ |
| 429 | |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 430 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 431 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 432 | /** \name GL Visual allocation/destruction */ |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 433 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 434 | /*@{*/ |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 435 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 436 | /** |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 437 | * Allocates a GLvisual structure and initializes it via |
| 438 | * _mesa_initialize_visual(). |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 439 | * |
| 440 | * \param rgbFlag GL_TRUE for RGB(A) mode, GL_FALSE for Color Index mode. |
| 441 | * \param dbFlag double buffering |
| 442 | * \param stereoFlag stereo buffer |
| 443 | * \param depthBits requested bits per depth buffer value. Any value in [0, 32] |
| 444 | * is acceptable but the actual depth type will be GLushort or GLuint as |
| 445 | * needed. |
| 446 | * \param stencilBits requested minimum bits per stencil buffer value |
| 447 | * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number of bits per color component in accum buffer. |
| 448 | * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE |
| 449 | * \param redBits number of bits per color component in frame buffer for RGB(A) |
| 450 | * mode. We always use 8 in core Mesa though. |
| 451 | * \param greenBits same as above. |
| 452 | * \param blueBits same as above. |
| 453 | * \param alphaBits same as above. |
| 454 | * \param numSamples not really used. |
| 455 | * |
| 456 | * \return pointer to new GLvisual or NULL if requested parameters can't be |
| 457 | * met. |
| 458 | * |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 459 | * \note Need to add params for level and numAuxBuffers (at least) |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 460 | */ |
| Brian Paul | b371e0d | 2000-03-31 01:05:51 +0000 | [diff] [blame] | 461 | GLvisual * |
| 462 | _mesa_create_visual( GLboolean rgbFlag, |
| Brian Paul | b371e0d | 2000-03-31 01:05:51 +0000 | [diff] [blame] | 463 | GLboolean dbFlag, |
| 464 | GLboolean stereoFlag, |
| 465 | GLint redBits, |
| 466 | GLint greenBits, |
| 467 | GLint blueBits, |
| 468 | GLint alphaBits, |
| 469 | GLint indexBits, |
| 470 | GLint depthBits, |
| 471 | GLint stencilBits, |
| 472 | GLint accumRedBits, |
| 473 | GLint accumGreenBits, |
| 474 | GLint accumBlueBits, |
| 475 | GLint accumAlphaBits, |
| 476 | GLint numSamples ) |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 477 | { |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 478 | GLvisual *vis = (GLvisual *) _mesa_calloc(sizeof(GLvisual)); |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 479 | if (vis) { |
| Brian Paul | e70c623 | 2000-05-04 13:53:55 +0000 | [diff] [blame] | 480 | if (!_mesa_initialize_visual(vis, rgbFlag, dbFlag, stereoFlag, |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 481 | redBits, greenBits, blueBits, alphaBits, |
| 482 | indexBits, depthBits, stencilBits, |
| 483 | accumRedBits, accumGreenBits, |
| 484 | accumBlueBits, accumAlphaBits, |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 485 | numSamples)) { |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 486 | _mesa_free(vis); |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 487 | return NULL; |
| 488 | } |
| 489 | } |
| 490 | return vis; |
| 491 | } |
| 492 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 493 | /** |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 494 | * Makes some sanity checks and fills in the fields of the |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 495 | * GLvisual object with the given parameters. If the caller needs |
| 496 | * to set additional fields, he should just probably init the whole GLvisual |
| 497 | * object himself. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 498 | * \return GL_TRUE on success, or GL_FALSE on failure. |
| 499 | * |
| 500 | * \sa _mesa_create_visual() above for the parameter description. |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 501 | */ |
| 502 | GLboolean |
| 503 | _mesa_initialize_visual( GLvisual *vis, |
| 504 | GLboolean rgbFlag, |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 505 | GLboolean dbFlag, |
| 506 | GLboolean stereoFlag, |
| 507 | GLint redBits, |
| 508 | GLint greenBits, |
| 509 | GLint blueBits, |
| 510 | GLint alphaBits, |
| 511 | GLint indexBits, |
| 512 | GLint depthBits, |
| 513 | GLint stencilBits, |
| 514 | GLint accumRedBits, |
| 515 | GLint accumGreenBits, |
| 516 | GLint accumBlueBits, |
| 517 | GLint accumAlphaBits, |
| 518 | GLint numSamples ) |
| 519 | { |
| 520 | assert(vis); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 521 | |
| Brian Paul | ed30dfa | 2000-03-03 17:47:39 +0000 | [diff] [blame] | 522 | if (depthBits < 0 || depthBits > 32) { |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 523 | return GL_FALSE; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 524 | } |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 525 | if (stencilBits < 0 || stencilBits > STENCIL_BITS) { |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 526 | return GL_FALSE; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 527 | } |
| Brian Paul | 978ef2b | 2005-09-21 03:35:08 +0000 | [diff] [blame] | 528 | assert(accumRedBits >= 0); |
| 529 | assert(accumGreenBits >= 0); |
| 530 | assert(accumBlueBits >= 0); |
| 531 | assert(accumAlphaBits >= 0); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 532 | |
| Brian Paul | b6bcae5 | 2001-01-23 23:39:36 +0000 | [diff] [blame] | 533 | vis->rgbMode = rgbFlag; |
| 534 | vis->doubleBufferMode = dbFlag; |
| 535 | vis->stereoMode = stereoFlag; |
| Brian Paul | 153f154 | 2002-10-29 15:04:35 +0000 | [diff] [blame] | 536 | |
| Brian Paul | b6bcae5 | 2001-01-23 23:39:36 +0000 | [diff] [blame] | 537 | vis->redBits = redBits; |
| 538 | vis->greenBits = greenBits; |
| 539 | vis->blueBits = blueBits; |
| 540 | vis->alphaBits = alphaBits; |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 541 | vis->rgbBits = redBits + greenBits + blueBits; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 542 | |
| Brian Paul | b6bcae5 | 2001-01-23 23:39:36 +0000 | [diff] [blame] | 543 | vis->indexBits = indexBits; |
| 544 | vis->depthBits = depthBits; |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 545 | vis->stencilBits = stencilBits; |
| 546 | |
| 547 | vis->accumRedBits = accumRedBits; |
| 548 | vis->accumGreenBits = accumGreenBits; |
| 549 | vis->accumBlueBits = accumBlueBits; |
| 550 | vis->accumAlphaBits = accumAlphaBits; |
| Brian Paul | ed30dfa | 2000-03-03 17:47:39 +0000 | [diff] [blame] | 551 | |
| Brian Paul | 153f154 | 2002-10-29 15:04:35 +0000 | [diff] [blame] | 552 | vis->haveAccumBuffer = accumRedBits > 0; |
| 553 | vis->haveDepthBuffer = depthBits > 0; |
| 554 | vis->haveStencilBuffer = stencilBits > 0; |
| 555 | |
| 556 | vis->numAuxBuffers = 0; |
| 557 | vis->level = 0; |
| 558 | vis->pixmapMode = 0; |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 559 | vis->sampleBuffers = numSamples > 0 ? 1 : 0; |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 560 | vis->samples = numSamples; |
| Brian Paul | 153f154 | 2002-10-29 15:04:35 +0000 | [diff] [blame] | 561 | |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 562 | return GL_TRUE; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 563 | } |
| 564 | |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 565 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 566 | /** |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 567 | * Destroy a visual and free its memory. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 568 | * |
| 569 | * \param vis visual. |
| 570 | * |
| 571 | * Frees the visual structure. |
| 572 | */ |
| Brian Paul | b371e0d | 2000-03-31 01:05:51 +0000 | [diff] [blame] | 573 | void |
| 574 | _mesa_destroy_visual( GLvisual *vis ) |
| 575 | { |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 576 | _mesa_free(vis); |
| Brian Paul | b371e0d | 2000-03-31 01:05:51 +0000 | [diff] [blame] | 577 | } |
| 578 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 579 | /*@}*/ |
| 580 | |
| Brian Paul | b371e0d | 2000-03-31 01:05:51 +0000 | [diff] [blame] | 581 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 582 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 583 | /** \name Context allocation, initialization, destroying |
| 584 | * |
| 585 | * The purpose of the most initialization functions here is to provide the |
| 586 | * default state values according to the OpenGL specification. |
| 587 | */ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 588 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 589 | /*@{*/ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 590 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 591 | /** |
| 592 | * One-time initialization mutex lock. |
| 593 | * |
| 594 | * \sa Used by one_time_init(). |
| 595 | */ |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 596 | _glthread_DECLARE_STATIC_MUTEX(OneTimeLock); |
| 597 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 598 | /** |
| 599 | * Calls all the various one-time-init functions in Mesa. |
| 600 | * |
| 601 | * While holding a global mutex lock, calls several initialization functions, |
| 602 | * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is |
| 603 | * defined. |
| 604 | * |
| Brian Paul | a764b7e | 2006-02-26 17:16:37 +0000 | [diff] [blame] | 605 | * \sa _math_init(). |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 606 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 607 | static void |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 608 | one_time_init( GLcontext *ctx ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 609 | { |
| 610 | static GLboolean alreadyCalled = GL_FALSE; |
| Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 611 | (void) ctx; |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 612 | _glthread_LOCK_MUTEX(OneTimeLock); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 613 | if (!alreadyCalled) { |
| Brian Paul | 27558a1 | 2003-03-01 01:50:20 +0000 | [diff] [blame] | 614 | GLuint i; |
| 615 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 616 | /* do some implementation tests */ |
| 617 | assert( sizeof(GLbyte) == 1 ); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 618 | assert( sizeof(GLubyte) == 1 ); |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 619 | assert( sizeof(GLshort) == 2 ); |
| 620 | assert( sizeof(GLushort) == 2 ); |
| 621 | assert( sizeof(GLint) == 4 ); |
| 622 | assert( sizeof(GLuint) == 4 ); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 623 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 624 | #if _HAVE_FULL_GL |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 625 | _math_init(); |
| Brian Paul | 27558a1 | 2003-03-01 01:50:20 +0000 | [diff] [blame] | 626 | |
| 627 | for (i = 0; i < 256; i++) { |
| 628 | _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F; |
| 629 | } |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 630 | #endif |
| Brian Paul | 68ee4bc | 2000-01-28 19:02:22 +0000 | [diff] [blame] | 631 | |
| davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 632 | #ifdef USE_SPARC_ASM |
| 633 | _mesa_init_sparc_glapi_relocs(); |
| 634 | #endif |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 635 | if (_mesa_getenv("MESA_DEBUG")) { |
| Brian Paul | 68ee4bc | 2000-01-28 19:02:22 +0000 | [diff] [blame] | 636 | _glapi_noop_enable_warnings(GL_TRUE); |
| Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 637 | _glapi_set_warning_func( (_glapi_warning_func) _mesa_warning ); |
| Brian Paul | 68ee4bc | 2000-01-28 19:02:22 +0000 | [diff] [blame] | 638 | } |
| 639 | else { |
| 640 | _glapi_noop_enable_warnings(GL_FALSE); |
| 641 | } |
| 642 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 643 | #if defined(DEBUG) && defined(__DATE__) && defined(__TIME__) |
| Brian Paul | 363344f | 2005-09-13 14:48:28 +0000 | [diff] [blame] | 644 | _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n", |
| 645 | MESA_VERSION_STRING, __DATE__, __TIME__); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 646 | #endif |
| Brian Paul | 68ee4bc | 2000-01-28 19:02:22 +0000 | [diff] [blame] | 647 | |
| 648 | alreadyCalled = GL_TRUE; |
| 649 | } |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 650 | _glthread_UNLOCK_MUTEX(OneTimeLock); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 651 | } |
| 652 | |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 653 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 654 | /** |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 655 | * Allocate and initialize a shared context state structure. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 656 | * Initializes the display list, texture objects and vertex programs hash |
| 657 | * tables, allocates the texture objects. If it runs out of memory, frees |
| 658 | * everything already allocated before returning NULL. |
| Brian Paul | 894844a | 2004-03-21 17:05:03 +0000 | [diff] [blame] | 659 | * |
| 660 | * \return pointer to a gl_shared_state structure on success, or NULL on |
| 661 | * failure. |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 662 | */ |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 663 | static GLboolean |
| 664 | alloc_shared_state( GLcontext *ctx ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 665 | { |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 666 | struct gl_shared_state *ss = CALLOC_STRUCT(gl_shared_state); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 667 | if (!ss) |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 668 | return GL_FALSE; |
| 669 | |
| 670 | ctx->Shared = ss; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 671 | |
| Brian Paul | e4b684c | 2000-09-12 21:07:40 +0000 | [diff] [blame] | 672 | _glthread_INIT_MUTEX(ss->Mutex); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 673 | |
| Brian Paul | e4b684c | 2000-09-12 21:07:40 +0000 | [diff] [blame] | 674 | ss->DisplayList = _mesa_NewHashTable(); |
| Brian Paul | bb79790 | 2000-01-24 16:19:54 +0000 | [diff] [blame] | 675 | ss->TexObjects = _mesa_NewHashTable(); |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 676 | #if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program |
| Brian Paul | 610d599 | 2003-01-14 04:55:45 +0000 | [diff] [blame] | 677 | ss->Programs = _mesa_NewHashTable(); |
| Brian Paul | 8dfc5b9 | 2002-10-16 17:57:51 +0000 | [diff] [blame] | 678 | #endif |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 679 | |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 680 | #if FEATURE_ARB_vertex_program |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 681 | ss->DefaultVertexProgram = ctx->Driver.NewProgram(ctx, GL_VERTEX_PROGRAM_ARB, 0); |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 682 | if (!ss->DefaultVertexProgram) |
| 683 | goto cleanup; |
| 684 | #endif |
| 685 | #if FEATURE_ARB_fragment_program |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 686 | ss->DefaultFragmentProgram = ctx->Driver.NewProgram(ctx, GL_FRAGMENT_PROGRAM_ARB, 0); |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 687 | if (!ss->DefaultFragmentProgram) |
| 688 | goto cleanup; |
| 689 | #endif |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 690 | #if FEATURE_ATI_fragment_shader |
| Brian Paul | 63d6830 | 2005-11-19 16:43:04 +0000 | [diff] [blame] | 691 | ss->ATIShaders = _mesa_NewHashTable(); |
| 692 | ss->DefaultFragmentShader = _mesa_new_ati_fragment_shader(ctx, 0); |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 693 | if (!ss->DefaultFragmentShader) |
| 694 | goto cleanup; |
| 695 | #endif |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 696 | |
| Tilman Sauerbeck | 17b5063 | 2006-07-11 19:03:21 +0000 | [diff] [blame] | 697 | #if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 698 | ss->BufferObjects = _mesa_NewHashTable(); |
| Tilman Sauerbeck | 17b5063 | 2006-07-11 19:03:21 +0000 | [diff] [blame] | 699 | #endif |
| 700 | |
| Ian Romanick | ee34e6e | 2006-06-12 16:26:29 +0000 | [diff] [blame] | 701 | ss->ArrayObjects = _mesa_NewHashTable(); |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 702 | |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 703 | #if FEATURE_ARB_shader_objects |
| Michal Krol | 9b3752c | 2005-01-13 14:08:47 +0000 | [diff] [blame] | 704 | ss->GL2Objects = _mesa_NewHashTable (); |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 705 | #endif |
| Ian Romanick | 0207b47 | 2003-09-09 00:10:12 +0000 | [diff] [blame] | 706 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 707 | ss->Default1D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_1D); |
| 708 | if (!ss->Default1D) |
| 709 | goto cleanup; |
| Brian Paul | a852378 | 2000-11-19 23:10:25 +0000 | [diff] [blame] | 710 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 711 | ss->Default2D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_2D); |
| 712 | if (!ss->Default2D) |
| 713 | goto cleanup; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 714 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 715 | ss->Default3D = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_3D); |
| 716 | if (!ss->Default3D) |
| 717 | goto cleanup; |
| Brian Paul | a852378 | 2000-11-19 23:10:25 +0000 | [diff] [blame] | 718 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 719 | ss->DefaultCubeMap = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_CUBE_MAP_ARB); |
| 720 | if (!ss->DefaultCubeMap) |
| 721 | goto cleanup; |
| Brian Paul | a852378 | 2000-11-19 23:10:25 +0000 | [diff] [blame] | 722 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 723 | ss->DefaultRect = (*ctx->Driver.NewTextureObject)(ctx, 0, GL_TEXTURE_RECTANGLE_NV); |
| 724 | if (!ss->DefaultRect) |
| 725 | goto cleanup; |
| Brian Paul | 413d6a2 | 2000-05-26 14:44:59 +0000 | [diff] [blame] | 726 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 727 | /* Effectively bind the default textures to all texture units */ |
| 728 | ss->Default1D->RefCount += MAX_TEXTURE_IMAGE_UNITS; |
| 729 | ss->Default2D->RefCount += MAX_TEXTURE_IMAGE_UNITS; |
| 730 | ss->Default3D->RefCount += MAX_TEXTURE_IMAGE_UNITS; |
| 731 | ss->DefaultCubeMap->RefCount += MAX_TEXTURE_IMAGE_UNITS; |
| 732 | ss->DefaultRect->RefCount += MAX_TEXTURE_IMAGE_UNITS; |
| 733 | |
| Keith Whitwell | 5ac93f8 | 2006-11-01 14:21:57 +0000 | [diff] [blame] | 734 | _glthread_INIT_MUTEX(ss->TexMutex); |
| 735 | ss->TextureStateStamp = 0; |
| 736 | |
| 737 | |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 738 | #if FEATURE_EXT_framebuffer_object |
| 739 | ss->FrameBuffers = _mesa_NewHashTable(); |
| 740 | if (!ss->FrameBuffers) |
| 741 | goto cleanup; |
| 742 | ss->RenderBuffers = _mesa_NewHashTable(); |
| 743 | if (!ss->RenderBuffers) |
| 744 | goto cleanup; |
| 745 | #endif |
| 746 | |
| 747 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 748 | return GL_TRUE; |
| 749 | |
| 750 | cleanup: |
| 751 | /* Ran out of memory at some point. Free everything and return NULL */ |
| 752 | if (ss->DisplayList) |
| 753 | _mesa_DeleteHashTable(ss->DisplayList); |
| 754 | if (ss->TexObjects) |
| 755 | _mesa_DeleteHashTable(ss->TexObjects); |
| 756 | #if FEATURE_NV_vertex_program |
| 757 | if (ss->Programs) |
| 758 | _mesa_DeleteHashTable(ss->Programs); |
| 759 | #endif |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 760 | #if FEATURE_ARB_vertex_program |
| 761 | if (ss->DefaultVertexProgram) |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 762 | ctx->Driver.DeleteProgram(ctx, ss->DefaultVertexProgram); |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 763 | #endif |
| 764 | #if FEATURE_ARB_fragment_program |
| 765 | if (ss->DefaultFragmentProgram) |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 766 | ctx->Driver.DeleteProgram(ctx, ss->DefaultFragmentProgram); |
| Brian Paul | 451f310 | 2003-04-17 01:48:19 +0000 | [diff] [blame] | 767 | #endif |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 768 | #if FEATURE_ATI_fragment_shader |
| 769 | if (ss->DefaultFragmentShader) |
| Brian Paul | 63d6830 | 2005-11-19 16:43:04 +0000 | [diff] [blame] | 770 | _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader); |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 771 | #endif |
| Tilman Sauerbeck | 17b5063 | 2006-07-11 19:03:21 +0000 | [diff] [blame] | 772 | #if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object |
| Ian Romanick | 0207b47 | 2003-09-09 00:10:12 +0000 | [diff] [blame] | 773 | if (ss->BufferObjects) |
| 774 | _mesa_DeleteHashTable(ss->BufferObjects); |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 775 | #endif |
| 776 | |
| Tilman Sauerbeck | c0eb777 | 2006-07-11 19:36:27 +0000 | [diff] [blame] | 777 | if (ss->ArrayObjects) |
| 778 | _mesa_DeleteHashTable (ss->ArrayObjects); |
| 779 | |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 780 | #if FEATURE_ARB_shader_objects |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 781 | if (ss->GL2Objects) |
| Michal Krol | 9b3752c | 2005-01-13 14:08:47 +0000 | [diff] [blame] | 782 | _mesa_DeleteHashTable (ss->GL2Objects); |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 783 | #endif |
| Ian Romanick | 0207b47 | 2003-09-09 00:10:12 +0000 | [diff] [blame] | 784 | |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 785 | #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 Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 792 | 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; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 805 | } |
| 806 | |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 807 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 808 | /** |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 809 | * Callback for deleting a display list. Called by _mesa_HashDeleteAll(). |
| 810 | */ |
| 811 | static void |
| 812 | delete_displaylist_cb(GLuint id, void *data, void *userData) |
| 813 | { |
| 814 | struct mesa_display_list *list = (struct mesa_display_list *) data; |
| 815 | GLcontext *ctx = (GLcontext *) userData; |
| 816 | _mesa_delete_list(ctx, list); |
| 817 | } |
| 818 | |
| 819 | /** |
| 820 | * Callback for deleting a texture object. Called by _mesa_HashDeleteAll(). |
| 821 | */ |
| 822 | static void |
| 823 | delete_texture_cb(GLuint id, void *data, void *userData) |
| 824 | { |
| 825 | struct gl_texture_object *texObj = (struct gl_texture_object *) data; |
| 826 | GLcontext *ctx = (GLcontext *) userData; |
| 827 | ctx->Driver.DeleteTexture(ctx, texObj); |
| 828 | } |
| 829 | |
| 830 | /** |
| 831 | * Callback for deleting a program object. Called by _mesa_HashDeleteAll(). |
| 832 | */ |
| 833 | static void |
| 834 | delete_program_cb(GLuint id, void *data, void *userData) |
| 835 | { |
| Brian Paul | 122629f | 2006-07-20 16:49:57 +0000 | [diff] [blame] | 836 | struct gl_program *prog = (struct gl_program *) data; |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 837 | GLcontext *ctx = (GLcontext *) userData; |
| 838 | ctx->Driver.DeleteProgram(ctx, prog); |
| 839 | } |
| 840 | |
| 841 | /** |
| 842 | * Callback for deleting an ATI fragment shader object. |
| 843 | * Called by _mesa_HashDeleteAll(). |
| 844 | */ |
| 845 | static void |
| 846 | delete_fragshader_cb(GLuint id, void *data, void *userData) |
| 847 | { |
| 848 | struct ati_fragment_shader *shader = (struct ati_fragment_shader *) data; |
| 849 | GLcontext *ctx = (GLcontext *) userData; |
| 850 | _mesa_delete_ati_fragment_shader(ctx, shader); |
| 851 | } |
| 852 | |
| 853 | /** |
| 854 | * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll(). |
| 855 | */ |
| 856 | static void |
| 857 | delete_bufferobj_cb(GLuint id, void *data, void *userData) |
| 858 | { |
| 859 | struct gl_buffer_object *bufObj = (struct gl_buffer_object *) data; |
| 860 | GLcontext *ctx = (GLcontext *) userData; |
| 861 | ctx->Driver.DeleteBuffer(ctx, bufObj); |
| 862 | } |
| 863 | |
| Brian Paul | c04bb51 | 2006-07-11 21:56:43 +0000 | [diff] [blame] | 864 | /** |
| 865 | * Callback for deleting an array object. Called by _mesa_HashDeleteAll(). |
| 866 | */ |
| 867 | static void |
| 868 | delete_arrayobj_cb(GLuint id, void *data, void *userData) |
| 869 | { |
| 870 | struct gl_array_object *arrayObj = (struct gl_array_object *) data; |
| 871 | GLcontext *ctx = (GLcontext *) userData; |
| 872 | _mesa_delete_array_object(ctx, arrayObj); |
| 873 | } |
| 874 | |
| Brian Paul | 4d4373b | 2006-11-18 17:44:28 +0000 | [diff] [blame] | 875 | /** |
| 876 | * Callback for deleting an shader object. Called by _mesa_HashDeleteAll(). |
| 877 | */ |
| 878 | static void |
| 879 | delete_shaderobj_cb(GLuint id, void *data, void *userData) |
| 880 | { |
| 881 | /* XXX probably need to fix this */ |
| 882 | _mesa_free(data); |
| 883 | } |
| 884 | |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 885 | |
| 886 | /** |
| 887 | * Deallocate a shared state object and all children structures. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 888 | * |
| 889 | * \param ctx GL context. |
| 890 | * \param ss shared state pointer. |
| 891 | * |
| 892 | * Frees the display lists, the texture objects (calling the driver texture |
| 893 | * deletion callback to free its private data) and the vertex programs, as well |
| 894 | * as their hash tables. |
| 895 | * |
| 896 | * \sa alloc_shared_state(). |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 897 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 898 | static void |
| 899 | free_shared_state( GLcontext *ctx, struct gl_shared_state *ss ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 900 | { |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 901 | /* |
| 902 | * Free display lists |
| 903 | */ |
| 904 | _mesa_HashDeleteAll(ss->DisplayList, delete_displaylist_cb, ctx); |
| Brian Paul | bb79790 | 2000-01-24 16:19:54 +0000 | [diff] [blame] | 905 | _mesa_DeleteHashTable(ss->DisplayList); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 906 | |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 907 | /* |
| 908 | * Free texture objects |
| 909 | */ |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 910 | ASSERT(ctx->Driver.DeleteTexture); |
| Brian Paul | 21841f0 | 2004-08-14 14:28:11 +0000 | [diff] [blame] | 911 | /* the default textures */ |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 912 | ctx->Driver.DeleteTexture(ctx, ss->Default1D); |
| 913 | ctx->Driver.DeleteTexture(ctx, ss->Default2D); |
| 914 | ctx->Driver.DeleteTexture(ctx, ss->Default3D); |
| 915 | ctx->Driver.DeleteTexture(ctx, ss->DefaultCubeMap); |
| 916 | ctx->Driver.DeleteTexture(ctx, ss->DefaultRect); |
| Brian Paul | 21841f0 | 2004-08-14 14:28:11 +0000 | [diff] [blame] | 917 | /* all other textures */ |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 918 | _mesa_HashDeleteAll(ss->TexObjects, delete_texture_cb, ctx); |
| Brian Paul | bb79790 | 2000-01-24 16:19:54 +0000 | [diff] [blame] | 919 | _mesa_DeleteHashTable(ss->TexObjects); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 920 | |
| Brian Paul | 1096eae | 2006-01-16 16:35:13 +0000 | [diff] [blame] | 921 | #if defined(FEATURE_NV_vertex_program) || defined(FEATURE_NV_fragment_program) |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 922 | _mesa_HashDeleteAll(ss->Programs, delete_program_cb, ctx); |
| Brian Paul | 610d599 | 2003-01-14 04:55:45 +0000 | [diff] [blame] | 923 | _mesa_DeleteHashTable(ss->Programs); |
| Brian Paul | 8dfc5b9 | 2002-10-16 17:57:51 +0000 | [diff] [blame] | 924 | #endif |
| Brian Paul | 21841f0 | 2004-08-14 14:28:11 +0000 | [diff] [blame] | 925 | #if FEATURE_ARB_vertex_program |
| 926 | _mesa_delete_program(ctx, ss->DefaultVertexProgram); |
| 927 | #endif |
| 928 | #if FEATURE_ARB_fragment_program |
| 929 | _mesa_delete_program(ctx, ss->DefaultFragmentProgram); |
| 930 | #endif |
| Brian Paul | 1096eae | 2006-01-16 16:35:13 +0000 | [diff] [blame] | 931 | |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 932 | #if FEATURE_ATI_fragment_shader |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 933 | _mesa_HashDeleteAll(ss->ATIShaders, delete_fragshader_cb, ctx); |
| Brian Paul | 1096eae | 2006-01-16 16:35:13 +0000 | [diff] [blame] | 934 | _mesa_DeleteHashTable(ss->ATIShaders); |
| 935 | _mesa_delete_ati_fragment_shader(ctx, ss->DefaultFragmentShader); |
| Dave Airlie | 7f752fe | 2004-12-19 03:06:59 +0000 | [diff] [blame] | 936 | #endif |
| Brian Paul | 30f51ae | 2001-12-18 04:06:44 +0000 | [diff] [blame] | 937 | |
| Tilman Sauerbeck | 17b5063 | 2006-07-11 19:03:21 +0000 | [diff] [blame] | 938 | #if FEATURE_ARB_vertex_buffer_object || FEATURE_ARB_pixel_buffer_object |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 939 | _mesa_HashDeleteAll(ss->BufferObjects, delete_bufferobj_cb, ctx); |
| Ian Romanick | 0207b47 | 2003-09-09 00:10:12 +0000 | [diff] [blame] | 940 | _mesa_DeleteHashTable(ss->BufferObjects); |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 941 | #endif |
| 942 | |
| Brian Paul | c04bb51 | 2006-07-11 21:56:43 +0000 | [diff] [blame] | 943 | _mesa_HashDeleteAll(ss->ArrayObjects, delete_arrayobj_cb, ctx); |
| Tilman Sauerbeck | c0eb777 | 2006-07-11 19:36:27 +0000 | [diff] [blame] | 944 | _mesa_DeleteHashTable(ss->ArrayObjects); |
| 945 | |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 946 | #if FEATURE_ARB_shader_objects |
| Brian Paul | 4d4373b | 2006-11-18 17:44:28 +0000 | [diff] [blame] | 947 | _mesa_HashDeleteAll(ss->GL2Objects, delete_shaderobj_cb, ctx); |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 948 | _mesa_DeleteHashTable(ss->GL2Objects); |
| Michal Krol | 365582d | 2006-08-01 20:07:31 +0000 | [diff] [blame] | 949 | #endif |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 950 | |
| 951 | #if FEATURE_EXT_framebuffer_object |
| 952 | _mesa_DeleteHashTable(ss->FrameBuffers); |
| 953 | _mesa_DeleteHashTable(ss->RenderBuffers); |
| 954 | #endif |
| Michal Krol | 9b3752c | 2005-01-13 14:08:47 +0000 | [diff] [blame] | 955 | |
| Keith Whitwell | e15fd85 | 2002-12-12 13:03:15 +0000 | [diff] [blame] | 956 | _glthread_DESTROY_MUTEX(ss->Mutex); |
| 957 | |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 958 | _mesa_free(ss); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 962 | /** |
| 963 | * Initialize fields of gl_current_attrib (aka ctx->Current.*) |
| 964 | */ |
| 965 | static void |
| 966 | _mesa_init_current( GLcontext *ctx ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 967 | { |
| Brian Paul | 88bf038 | 2004-02-13 15:30:08 +0000 | [diff] [blame] | 968 | GLuint i; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 969 | |
| Brian Paul | 94b30dc | 2006-04-25 00:53:25 +0000 | [diff] [blame] | 970 | /* Init all to (0,0,0,1) */ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 971 | for (i = 0; i < VERT_ATTRIB_MAX; i++) { |
| 972 | ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 973 | } |
| Brian Paul | 94b30dc | 2006-04-25 00:53:25 +0000 | [diff] [blame] | 974 | |
| 975 | /* redo special cases: */ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 976 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 1.0 ); |
| 977 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 ); |
| 978 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 ); |
| Brian Paul | 88bf038 | 2004-02-13 15:30:08 +0000 | [diff] [blame] | 979 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 ); |
| Keith Whitwell | fd27560 | 2006-10-30 20:16:35 +0000 | [diff] [blame] | 980 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX], 1.0, 0.0, 0.0, 1.0 ); |
| 981 | ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG], 1.0, 0.0, 0.0, 1.0 ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 985 | /** |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 986 | * Init vertex/fragment program native limits from logical limits. |
| 987 | */ |
| 988 | static void |
| 989 | init_natives(struct gl_program_constants *prog) |
| 990 | { |
| 991 | prog->MaxNativeInstructions = prog->MaxInstructions; |
| 992 | prog->MaxNativeAluInstructions = prog->MaxAluInstructions; |
| 993 | prog->MaxNativeTexInstructions = prog->MaxTexInstructions; |
| 994 | prog->MaxNativeTexIndirections = prog->MaxTexIndirections; |
| 995 | prog->MaxNativeAttribs = prog->MaxAttribs; |
| 996 | prog->MaxNativeTemps = prog->MaxTemps; |
| 997 | prog->MaxNativeAddressRegs = prog->MaxAddressRegs; |
| 998 | prog->MaxNativeParameters = prog->MaxParameters; |
| 999 | } |
| 1000 | |
| 1001 | |
| 1002 | /** |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 1003 | * Initialize fields of gl_constants (aka ctx->Const.*). |
| 1004 | * Use defaults from config.h. The device drivers will often override |
| 1005 | * some of these values (such as number of texture units). |
| 1006 | */ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1007 | static void |
| 1008 | _mesa_init_constants( GLcontext *ctx ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1009 | { |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1010 | assert(ctx); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1011 | |
| Brian Paul | cd1cefa | 2001-06-13 14:56:14 +0000 | [diff] [blame] | 1012 | assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS); |
| 1013 | assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS); |
| 1014 | |
| Brian Paul | da238ee | 2006-04-13 19:21:58 +0000 | [diff] [blame] | 1015 | assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_COORD_UNITS); |
| 1016 | assert(MAX_TEXTURE_UNITS >= MAX_TEXTURE_IMAGE_UNITS); |
| 1017 | |
| Brian Paul | 53f82c5 | 2004-10-02 16:39:09 +0000 | [diff] [blame] | 1018 | /* Constants, may be overriden (usually only reduced) by device drivers */ |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1019 | ctx->Const.MaxTextureLevels = MAX_TEXTURE_LEVELS; |
| Brian Paul | cd1cefa | 2001-06-13 14:56:14 +0000 | [diff] [blame] | 1020 | ctx->Const.Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS; |
| 1021 | ctx->Const.MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS; |
| Brian Paul | 8afe7de | 2002-06-15 03:03:06 +0000 | [diff] [blame] | 1022 | ctx->Const.MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE; |
| Brian Paul | 610d599 | 2003-01-14 04:55:45 +0000 | [diff] [blame] | 1023 | ctx->Const.MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS; |
| 1024 | ctx->Const.MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS; |
| Brian Paul | da238ee | 2006-04-13 19:21:58 +0000 | [diff] [blame] | 1025 | ctx->Const.MaxTextureUnits = MIN2(ctx->Const.MaxTextureCoordUnits, |
| 1026 | ctx->Const.MaxTextureImageUnits); |
| Gareth Hughes | 2c3d34c | 2001-03-18 08:53:49 +0000 | [diff] [blame] | 1027 | ctx->Const.MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY; |
| Brian Paul | 87c964d | 2001-11-06 15:53:00 +0000 | [diff] [blame] | 1028 | ctx->Const.MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1029 | ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE; |
| Brian Paul | 539cce5 | 2000-02-03 19:40:07 +0000 | [diff] [blame] | 1030 | ctx->Const.SubPixelBits = SUB_PIXEL_BITS; |
| 1031 | ctx->Const.MinPointSize = MIN_POINT_SIZE; |
| 1032 | ctx->Const.MaxPointSize = MAX_POINT_SIZE; |
| 1033 | ctx->Const.MinPointSizeAA = MIN_POINT_SIZE; |
| 1034 | ctx->Const.MaxPointSizeAA = MAX_POINT_SIZE; |
| Brian Paul | fde5e2c | 2001-09-15 18:02:49 +0000 | [diff] [blame] | 1035 | ctx->Const.PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY; |
| Brian Paul | 539cce5 | 2000-02-03 19:40:07 +0000 | [diff] [blame] | 1036 | ctx->Const.MinLineWidth = MIN_LINE_WIDTH; |
| 1037 | ctx->Const.MaxLineWidth = MAX_LINE_WIDTH; |
| 1038 | ctx->Const.MinLineWidthAA = MIN_LINE_WIDTH; |
| 1039 | ctx->Const.MaxLineWidthAA = MAX_LINE_WIDTH; |
| Brian Paul | fde5e2c | 2001-09-15 18:02:49 +0000 | [diff] [blame] | 1040 | ctx->Const.LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY; |
| Brian Paul | 4bdcfe5 | 2000-04-17 17:57:04 +0000 | [diff] [blame] | 1041 | ctx->Const.MaxColorTableSize = MAX_COLOR_TABLE_SIZE; |
| Brian Paul | 82b02f0 | 2000-05-07 20:37:40 +0000 | [diff] [blame] | 1042 | ctx->Const.MaxConvolutionWidth = MAX_CONVOLUTION_WIDTH; |
| 1043 | ctx->Const.MaxConvolutionHeight = MAX_CONVOLUTION_HEIGHT; |
| Brian Paul | a864432 | 2000-11-27 18:22:13 +0000 | [diff] [blame] | 1044 | ctx->Const.MaxClipPlanes = MAX_CLIP_PLANES; |
| 1045 | ctx->Const.MaxLights = MAX_LIGHTS; |
| Ian Romanick | 882caa1 | 2003-05-30 21:37:14 +0000 | [diff] [blame] | 1046 | ctx->Const.MaxShininess = 128.0; |
| Brian Paul | 53f82c5 | 2004-10-02 16:39:09 +0000 | [diff] [blame] | 1047 | ctx->Const.MaxSpotExponent = 128.0; |
| 1048 | ctx->Const.MaxViewportWidth = MAX_WIDTH; |
| 1049 | ctx->Const.MaxViewportHeight = MAX_HEIGHT; |
| Brian Paul | d0492cf | 2003-04-11 01:20:06 +0000 | [diff] [blame] | 1050 | #if FEATURE_ARB_vertex_program |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1051 | ctx->Const.VertexProgram.MaxInstructions = MAX_NV_VERTEX_PROGRAM_INSTRUCTIONS; |
| 1052 | ctx->Const.VertexProgram.MaxAluInstructions = 0; |
| 1053 | ctx->Const.VertexProgram.MaxTexInstructions = 0; |
| 1054 | ctx->Const.VertexProgram.MaxTexIndirections = 0; |
| 1055 | ctx->Const.VertexProgram.MaxAttribs = MAX_NV_VERTEX_PROGRAM_INPUTS; |
| 1056 | ctx->Const.VertexProgram.MaxTemps = MAX_NV_VERTEX_PROGRAM_TEMPS; |
| 1057 | ctx->Const.VertexProgram.MaxParameters = MAX_NV_VERTEX_PROGRAM_PARAMS; |
| 1058 | ctx->Const.VertexProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS; |
| 1059 | ctx->Const.VertexProgram.MaxEnvParams = MAX_NV_VERTEX_PROGRAM_PARAMS; |
| 1060 | ctx->Const.VertexProgram.MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS; |
| Brian Paul | 90fcf6c | 2006-11-01 00:12:41 +0000 | [diff] [blame] | 1061 | ctx->Const.VertexProgram.MaxUniformComponents = MAX_VERTEX_UNIFORM_COMPONENTS; |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1062 | init_natives(&ctx->Const.VertexProgram); |
| Brian Paul | d0492cf | 2003-04-11 01:20:06 +0000 | [diff] [blame] | 1063 | #endif |
| 1064 | #if FEATURE_ARB_fragment_program |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1065 | ctx->Const.FragmentProgram.MaxInstructions = MAX_NV_FRAGMENT_PROGRAM_INSTRUCTIONS; |
| 1066 | ctx->Const.FragmentProgram.MaxAluInstructions = MAX_FRAGMENT_PROGRAM_ALU_INSTRUCTIONS; |
| 1067 | ctx->Const.FragmentProgram.MaxTexInstructions = MAX_FRAGMENT_PROGRAM_TEX_INSTRUCTIONS; |
| 1068 | ctx->Const.FragmentProgram.MaxTexIndirections = MAX_FRAGMENT_PROGRAM_TEX_INDIRECTIONS; |
| 1069 | ctx->Const.FragmentProgram.MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS; |
| 1070 | ctx->Const.FragmentProgram.MaxTemps = MAX_NV_FRAGMENT_PROGRAM_TEMPS; |
| 1071 | ctx->Const.FragmentProgram.MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS; |
| 1072 | ctx->Const.FragmentProgram.MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS; |
| 1073 | ctx->Const.FragmentProgram.MaxEnvParams = MAX_NV_FRAGMENT_PROGRAM_PARAMS; |
| 1074 | ctx->Const.FragmentProgram.MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS; |
| Brian Paul | 90fcf6c | 2006-11-01 00:12:41 +0000 | [diff] [blame] | 1075 | ctx->Const.FragmentProgram.MaxUniformComponents = MAX_FRAGMENT_UNIFORM_COMPONENTS; |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1076 | init_natives(&ctx->Const.FragmentProgram); |
| Brian Paul | d0492cf | 2003-04-11 01:20:06 +0000 | [diff] [blame] | 1077 | #endif |
| Brian Paul | edd6774 | 2003-04-18 18:02:43 +0000 | [diff] [blame] | 1078 | ctx->Const.MaxProgramMatrices = MAX_PROGRAM_MATRICES; |
| 1079 | ctx->Const.MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH; |
| Brian Paul | d0492cf | 2003-04-11 01:20:06 +0000 | [diff] [blame] | 1080 | |
| George Sapountzis | 507167d | 2006-12-06 06:54:13 +0200 | [diff] [blame] | 1081 | /* CheckArrayBounds is overriden by drivers/x11 for X server */ |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 1082 | ctx->Const.CheckArrayBounds = GL_FALSE; |
| Brian Paul | a2b9bad | 2003-11-10 19:08:37 +0000 | [diff] [blame] | 1083 | |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1084 | /* GL_ARB_draw_buffers */ |
| Brian Paul | 53f82c5 | 2004-10-02 16:39:09 +0000 | [diff] [blame] | 1085 | ctx->Const.MaxDrawBuffers = MAX_DRAW_BUFFERS; |
| 1086 | |
| Brian Paul | 3deaa01 | 2005-02-07 05:08:24 +0000 | [diff] [blame] | 1087 | /* GL_OES_read_format */ |
| Ian Romanick | 33899b7 | 2004-10-16 01:16:54 +0000 | [diff] [blame] | 1088 | ctx->Const.ColorReadFormat = GL_RGBA; |
| 1089 | ctx->Const.ColorReadType = GL_UNSIGNED_BYTE; |
| 1090 | |
| Brian Paul | 3deaa01 | 2005-02-07 05:08:24 +0000 | [diff] [blame] | 1091 | #if FEATURE_EXT_framebuffer_object |
| 1092 | ctx->Const.MaxColorAttachments = MAX_COLOR_ATTACHMENTS; |
| 1093 | ctx->Const.MaxRenderbufferSize = MAX_WIDTH; |
| 1094 | #endif |
| 1095 | |
| Brian Paul | 90fcf6c | 2006-11-01 00:12:41 +0000 | [diff] [blame] | 1096 | #if FEATURE_ARB_vertex_shader |
| 1097 | ctx->Const.MaxVertexTextureImageUnits = MAX_VERTEX_TEXTURE_IMAGE_UNITS; |
| 1098 | ctx->Const.MaxVaryingFloats = MAX_VARYING_FLOATS; |
| 1099 | #endif |
| 1100 | |
| Brian Paul | 53f82c5 | 2004-10-02 16:39:09 +0000 | [diff] [blame] | 1101 | /* sanity checks */ |
| Brian Paul | da238ee | 2006-04-13 19:21:58 +0000 | [diff] [blame] | 1102 | ASSERT(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.MaxTextureImageUnits, |
| 1103 | ctx->Const.MaxTextureCoordUnits)); |
| Brian Paul | 0505103 | 2005-11-01 04:36:33 +0000 | [diff] [blame] | 1104 | ASSERT(ctx->Const.FragmentProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS); |
| 1105 | ASSERT(ctx->Const.VertexProgram.MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1106 | } |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1107 | |
| Brian Paul | 4d859f7 | 2004-01-23 18:57:05 +0000 | [diff] [blame] | 1108 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1109 | /** |
| Brian Paul | 5e2e96b | 2006-05-15 15:26:04 +0000 | [diff] [blame] | 1110 | * Do some sanity checks on the limits/constants for the given context. |
| 1111 | * Only called the first time a context is bound. |
| 1112 | */ |
| 1113 | static void |
| 1114 | check_context_limits(GLcontext *ctx) |
| 1115 | { |
| 1116 | /* Many context limits/constants are limited by the size of |
| 1117 | * internal arrays. |
| 1118 | */ |
| 1119 | assert(ctx->Const.MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS); |
| 1120 | assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS); |
| 1121 | assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS); |
| 1122 | assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS); |
| 1123 | |
| 1124 | assert(ctx->Const.MaxViewportWidth <= MAX_WIDTH); |
| 1125 | assert(ctx->Const.MaxViewportHeight <= MAX_WIDTH); |
| 1126 | |
| 1127 | /* make sure largest texture image is <= MAX_WIDTH in size */ |
| 1128 | assert((1 << (ctx->Const.MaxTextureLevels -1 )) <= MAX_WIDTH); |
| 1129 | assert((1 << (ctx->Const.MaxCubeTextureLevels -1 )) <= MAX_WIDTH); |
| 1130 | assert((1 << (ctx->Const.Max3DTextureLevels -1 )) <= MAX_WIDTH); |
| 1131 | |
| 1132 | assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS); |
| 1133 | |
| 1134 | /* XXX probably add more tests */ |
| 1135 | } |
| 1136 | |
| 1137 | |
| 1138 | /** |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1139 | * Initialize the attribute groups in a GL context. |
| 1140 | * |
| 1141 | * \param ctx GL context. |
| 1142 | * |
| 1143 | * Initializes all the attributes, calling the respective <tt>init*</tt> |
| 1144 | * functions for the more complex data structures. |
| 1145 | */ |
| 1146 | static GLboolean |
| 1147 | init_attrib_groups( GLcontext *ctx ) |
| 1148 | { |
| 1149 | assert(ctx); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1150 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1151 | /* Constants */ |
| 1152 | _mesa_init_constants( ctx ); |
| Brian Paul | 0771d15 | 2000-04-07 00:19:41 +0000 | [diff] [blame] | 1153 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1154 | /* Extensions */ |
| Brian Paul | de4f460 | 2003-07-03 02:15:06 +0000 | [diff] [blame] | 1155 | _mesa_init_extensions( ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1156 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1157 | /* Attribute Groups */ |
| 1158 | _mesa_init_accum( ctx ); |
| 1159 | _mesa_init_attrib( ctx ); |
| Brian Paul | 148a284 | 2003-09-17 03:40:11 +0000 | [diff] [blame] | 1160 | _mesa_init_buffer_objects( ctx ); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1161 | _mesa_init_color( ctx ); |
| Brian Paul | 05944c0 | 2003-07-22 03:51:46 +0000 | [diff] [blame] | 1162 | _mesa_init_colortables( ctx ); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1163 | _mesa_init_current( ctx ); |
| 1164 | _mesa_init_depth( ctx ); |
| 1165 | _mesa_init_debug( ctx ); |
| 1166 | _mesa_init_display_list( ctx ); |
| 1167 | _mesa_init_eval( ctx ); |
| 1168 | _mesa_init_feedback( ctx ); |
| 1169 | _mesa_init_fog( ctx ); |
| 1170 | _mesa_init_histogram( ctx ); |
| 1171 | _mesa_init_hint( ctx ); |
| 1172 | _mesa_init_line( ctx ); |
| 1173 | _mesa_init_lighting( ctx ); |
| 1174 | _mesa_init_matrix( ctx ); |
| Brian Paul | 6774238 | 2005-02-26 17:16:12 +0000 | [diff] [blame] | 1175 | _mesa_init_multisample( ctx ); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1176 | _mesa_init_pixel( ctx ); |
| 1177 | _mesa_init_point( ctx ); |
| 1178 | _mesa_init_polygon( ctx ); |
| Brian Paul | 05944c0 | 2003-07-22 03:51:46 +0000 | [diff] [blame] | 1179 | _mesa_init_program( ctx ); |
| Brian Paul | 4fb9950 | 2005-09-02 13:42:49 +0000 | [diff] [blame] | 1180 | _mesa_init_query( ctx ); |
| Brian Paul | ddc82ee | 2005-02-05 19:56:45 +0000 | [diff] [blame] | 1181 | _mesa_init_rastpos( ctx ); |
| Brian Paul | 6774238 | 2005-02-26 17:16:12 +0000 | [diff] [blame] | 1182 | _mesa_init_scissor( ctx ); |
| Michal Krol | 9b3752c | 2005-01-13 14:08:47 +0000 | [diff] [blame] | 1183 | _mesa_init_shaderobjects (ctx); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1184 | _mesa_init_stencil( ctx ); |
| 1185 | _mesa_init_transform( ctx ); |
| 1186 | _mesa_init_varray( ctx ); |
| 1187 | _mesa_init_viewport( ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1188 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1189 | if (!_mesa_init_texture( ctx )) |
| 1190 | return GL_FALSE; |
| Brian Paul | b17a722 | 2003-06-13 02:37:27 +0000 | [diff] [blame] | 1191 | |
| Brian Paul | 8f04c12 | 2004-04-27 13:39:20 +0000 | [diff] [blame] | 1192 | _mesa_init_texture_s3tc( ctx ); |
| 1193 | _mesa_init_texture_fxt1( ctx ); |
| 1194 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1195 | /* Miscellaneous */ |
| Keith Whitwell | a96308c | 2000-10-30 13:31:59 +0000 | [diff] [blame] | 1196 | ctx->NewState = _NEW_ALL; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1197 | ctx->ErrorValue = (GLenum) GL_NO_ERROR; |
| Brian Paul | f782b81 | 2002-10-04 17:37:45 +0000 | [diff] [blame] | 1198 | ctx->_Facing = 0; |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1199 | |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 1200 | return GL_TRUE; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | |
| Brian Paul | f44898c | 2003-07-18 15:44:57 +0000 | [diff] [blame] | 1204 | /** |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1205 | * This is the default function we plug into all dispatch table slots |
| 1206 | * This helps prevents a segfault when someone calls a GL function without |
| 1207 | * first checking if the extension's supported. |
| 1208 | */ |
| 1209 | static int |
| 1210 | generic_nop(void) |
| 1211 | { |
| 1212 | _mesa_problem(NULL, "User called no-op dispatch function (an unsupported extension function?)"); |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | |
| 1217 | /** |
| 1218 | * Allocate and initialize a new dispatch table. |
| 1219 | */ |
| 1220 | static struct _glapi_table * |
| 1221 | alloc_dispatch_table(void) |
| 1222 | { |
| 1223 | /* Find the larger of Mesa's dispatch table and libGL's dispatch table. |
| 1224 | * In practice, this'll be the same for stand-alone Mesa. But for DRI |
| 1225 | * Mesa we do this to accomodate different versions of libGL and various |
| 1226 | * DRI drivers. |
| 1227 | */ |
| 1228 | GLint numEntries = MAX2(_glapi_get_dispatch_table_size(), |
| 1229 | sizeof(struct _glapi_table) / sizeof(_glapi_proc)); |
| 1230 | struct _glapi_table *table = |
| 1231 | (struct _glapi_table *) _mesa_malloc(numEntries * sizeof(_glapi_proc)); |
| 1232 | if (table) { |
| 1233 | _glapi_proc *entry = (_glapi_proc *) table; |
| Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 1234 | GLint i; |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1235 | for (i = 0; i < numEntries; i++) { |
| 1236 | entry[i] = (_glapi_proc) generic_nop; |
| 1237 | } |
| 1238 | } |
| 1239 | return table; |
| 1240 | } |
| 1241 | |
| 1242 | |
| 1243 | /** |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1244 | * Initialize a GLcontext struct (rendering context). |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1245 | * |
| 1246 | * This includes allocating all the other structs and arrays which hang off of |
| 1247 | * the context by pointers. |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1248 | * Note that the driver needs to pass in its dd_function_table here since |
| 1249 | * we need to at least call driverFunctions->NewTextureObject to create the |
| 1250 | * default texture objects. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1251 | * |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1252 | * Called by _mesa_create_context(). |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1253 | * |
| 1254 | * Performs the imports and exports callback tables initialization, and |
| 1255 | * miscellaneous one-time initializations. If no shared context is supplied one |
| 1256 | * is allocated, and increase its reference count. Setups the GL API dispatch |
| 1257 | * tables. Initialize the TNL module. Sets the maximum Z buffer depth. |
| 1258 | * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables |
| 1259 | * for debug flags. |
| 1260 | * |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1261 | * \param ctx the context to initialize |
| 1262 | * \param visual describes the visual attributes for this context |
| 1263 | * \param share_list points to context to share textures, display lists, |
| 1264 | * etc with, or NULL |
| 1265 | * \param driverFunctions table of device driver functions for this context |
| 1266 | * to use |
| 1267 | * \param driverContext pointer to driver-specific context data |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1268 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1269 | GLboolean |
| 1270 | _mesa_initialize_context( GLcontext *ctx, |
| Brian Paul | be3602d | 2001-02-28 00:27:48 +0000 | [diff] [blame] | 1271 | const GLvisual *visual, |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1272 | GLcontext *share_list, |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1273 | const struct dd_function_table *driverFunctions, |
| 1274 | void *driverContext ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1275 | { |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1276 | ASSERT(driverContext); |
| 1277 | assert(driverFunctions->NewTextureObject); |
| Keith Whitwell | 3e62d3a | 2005-03-22 14:27:10 +0000 | [diff] [blame] | 1278 | assert(driverFunctions->FreeTexImageData); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1279 | |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 1280 | /* If the driver wants core Mesa to use special imports, it'll have to |
| 1281 | * override these defaults. |
| 1282 | */ |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1283 | _mesa_init_default_imports( &(ctx->imports), driverContext ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1284 | |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 1285 | /* initialize the exports (Mesa functions called by the window system) */ |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 1286 | _mesa_init_default_exports( &(ctx->exports) ); |
| 1287 | |
| 1288 | /* misc one-time initializations */ |
| 1289 | one_time_init(ctx); |
| Brian Paul | 9a33a11 | 2002-06-13 04:28:29 +0000 | [diff] [blame] | 1290 | |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1291 | ctx->Visual = *visual; |
| Brian Paul | 3f02f90 | 1999-11-24 18:48:30 +0000 | [diff] [blame] | 1292 | ctx->DrawBuffer = NULL; |
| 1293 | ctx->ReadBuffer = NULL; |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1294 | ctx->WinSysDrawBuffer = NULL; |
| 1295 | ctx->WinSysReadBuffer = NULL; |
| Jouk Jansen | 5e3bc0c | 2000-11-22 07:32:16 +0000 | [diff] [blame] | 1296 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1297 | /* Plug in driver functions and context pointer here. |
| 1298 | * This is important because when we call alloc_shared_state() below |
| 1299 | * we'll call ctx->Driver.NewTextureObject() to create the default |
| 1300 | * textures. |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 1301 | */ |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1302 | ctx->Driver = *driverFunctions; |
| 1303 | ctx->DriverCtx = driverContext; |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 1304 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1305 | if (share_list) { |
| Brian Paul | 5a2f32b | 2001-04-25 18:21:05 +0000 | [diff] [blame] | 1306 | /* share state with another context */ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1307 | ctx->Shared = share_list->Shared; |
| 1308 | } |
| 1309 | else { |
| Brian Paul | 5a2f32b | 2001-04-25 18:21:05 +0000 | [diff] [blame] | 1310 | /* allocate new, unshared state */ |
| Brian Paul | a3f1370 | 2003-04-01 16:41:50 +0000 | [diff] [blame] | 1311 | if (!alloc_shared_state( ctx )) { |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1312 | return GL_FALSE; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1313 | } |
| 1314 | } |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 1315 | _glthread_LOCK_MUTEX(ctx->Shared->Mutex); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1316 | ctx->Shared->RefCount++; |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 1317 | _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1318 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1319 | if (!init_attrib_groups( ctx )) { |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1320 | free_shared_state(ctx, ctx->Shared); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1321 | return GL_FALSE; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1322 | } |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1323 | |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1324 | /* setup the API dispatch tables */ |
| 1325 | ctx->Exec = alloc_dispatch_table(); |
| 1326 | ctx->Save = alloc_dispatch_table(); |
| Brian Paul | 3ab6bbe | 2000-02-12 17:26:15 +0000 | [diff] [blame] | 1327 | if (!ctx->Exec || !ctx->Save) { |
| 1328 | free_shared_state(ctx, ctx->Shared); |
| Brian Paul | 3ab6bbe | 2000-02-12 17:26:15 +0000 | [diff] [blame] | 1329 | if (ctx->Exec) |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1330 | _mesa_free(ctx->Exec); |
| Brian Paul | 3ab6bbe | 2000-02-12 17:26:15 +0000 | [diff] [blame] | 1331 | } |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1332 | _mesa_init_exec_table(ctx->Exec); |
| Brian Paul | 3ab6bbe | 2000-02-12 17:26:15 +0000 | [diff] [blame] | 1333 | ctx->CurrentDispatch = ctx->Exec; |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1334 | #if _HAVE_FULL_GL |
| Brian Paul | 21f6978 | 2004-11-27 05:05:32 +0000 | [diff] [blame] | 1335 | _mesa_init_dlist_table(ctx->Save); |
| Keith Whitwell | ae0eaf9 | 2003-11-24 15:23:18 +0000 | [diff] [blame] | 1336 | _mesa_install_save_vtxfmt( ctx, &ctx->ListState.ListVtxfmt ); |
| Gareth Hughes | d8aa026 | 2001-03-11 18:49:11 +0000 | [diff] [blame] | 1337 | /* Neutral tnl module stuff */ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1338 | _mesa_init_exec_vtxfmt( ctx ); |
| Gareth Hughes | d8aa026 | 2001-03-11 18:49:11 +0000 | [diff] [blame] | 1339 | ctx->TnlModule.Current = NULL; |
| 1340 | ctx->TnlModule.SwapCount = 0; |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1341 | #endif |
| Brian Paul | b6bcae5 | 2001-01-23 23:39:36 +0000 | [diff] [blame] | 1342 | |
| Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1343 | ctx->_MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL); |
| Keith Whitwell | 4033205 | 2005-12-12 12:57:08 +0000 | [diff] [blame] | 1344 | ctx->_UseTexEnvProgram = ctx->_MaintainTexEnvProgram; |
| 1345 | |
| Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1346 | ctx->_MaintainTnlProgram = (_mesa_getenv("MESA_TNL_PROG") != NULL); |
| Keith Whitwell | 4033205 | 2005-12-12 12:57:08 +0000 | [diff] [blame] | 1347 | if (ctx->_MaintainTnlProgram) |
| 1348 | ctx->_MaintainTexEnvProgram = 1; /* this is required... */ |
| Keith Whitwell | 47b29f5 | 2005-05-04 11:44:44 +0000 | [diff] [blame] | 1349 | |
| Brian Paul | a96f889 | 2005-09-13 01:19:29 +0000 | [diff] [blame] | 1350 | ctx->FirstTimeCurrent = GL_TRUE; |
| 1351 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1352 | return GL_TRUE; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1353 | } |
| 1354 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1355 | |
| Brian Paul | de4f460 | 2003-07-03 02:15:06 +0000 | [diff] [blame] | 1356 | /** |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1357 | * Allocate and initialize a GLcontext structure. |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1358 | * Note that the driver needs to pass in its dd_function_table here since |
| 1359 | * we need to at least call driverFunctions->NewTextureObject to initialize |
| 1360 | * the rendering context. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1361 | * |
| 1362 | * \param visual a GLvisual pointer (we copy the struct contents) |
| 1363 | * \param share_list another context to share display lists with or NULL |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1364 | * \param driverFunctions points to the dd_function_table into which the |
| 1365 | * driver has plugged in all its special functions. |
| 1366 | * \param driverCtx points to the device driver's private context state |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1367 | * |
| 1368 | * \return pointer to a new __GLcontextRec or NULL if error. |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1369 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1370 | GLcontext * |
| Brian Paul | be3602d | 2001-02-28 00:27:48 +0000 | [diff] [blame] | 1371 | _mesa_create_context( const GLvisual *visual, |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1372 | GLcontext *share_list, |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1373 | const struct dd_function_table *driverFunctions, |
| 1374 | void *driverContext ) |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 1375 | |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1376 | { |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 1377 | GLcontext *ctx; |
| 1378 | |
| 1379 | ASSERT(visual); |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1380 | ASSERT(driverContext); |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 1381 | |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 1382 | ctx = (GLcontext *) _mesa_calloc(sizeof(GLcontext)); |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 1383 | if (!ctx) |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1384 | return NULL; |
| Brian Paul | 4753d60 | 2002-06-15 02:38:15 +0000 | [diff] [blame] | 1385 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1386 | if (_mesa_initialize_context(ctx, visual, share_list, |
| 1387 | driverFunctions, driverContext)) { |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1388 | return ctx; |
| 1389 | } |
| 1390 | else { |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 1391 | _mesa_free(ctx); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1392 | return NULL; |
| 1393 | } |
| 1394 | } |
| 1395 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1396 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1397 | /** |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1398 | * Free the data associated with the given context. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1399 | * |
| 1400 | * But doesn't free the GLcontext struct itself. |
| 1401 | * |
| 1402 | * \sa _mesa_initialize_context() and init_attrib_groups(). |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1403 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1404 | void |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1405 | _mesa_free_context_data( GLcontext *ctx ) |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1406 | { |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1407 | /* if we're destroying the current context, unbind it first */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1408 | if (ctx == _mesa_get_current_context()) { |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1409 | _mesa_make_current(NULL, NULL, NULL); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1410 | } |
| 1411 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1412 | _mesa_free_lighting_data( ctx ); |
| 1413 | _mesa_free_eval_data( ctx ); |
| 1414 | _mesa_free_texture_data( ctx ); |
| 1415 | _mesa_free_matrix_data( ctx ); |
| 1416 | _mesa_free_viewport_data( ctx ); |
| Brian Paul | 05944c0 | 2003-07-22 03:51:46 +0000 | [diff] [blame] | 1417 | _mesa_free_colortables_data( ctx ); |
| Brian Paul | 21841f0 | 2004-08-14 14:28:11 +0000 | [diff] [blame] | 1418 | _mesa_free_program_data(ctx); |
| Brian Paul | 4fb9950 | 2005-09-02 13:42:49 +0000 | [diff] [blame] | 1419 | _mesa_free_query_data(ctx); |
| Brian Paul | 21841f0 | 2004-08-14 14:28:11 +0000 | [diff] [blame] | 1420 | |
| 1421 | #if FEATURE_ARB_vertex_buffer_object |
| 1422 | _mesa_delete_buffer_object(ctx, ctx->Array.NullBufferObj); |
| Brian Paul | 8dfc5b9 | 2002-10-16 17:57:51 +0000 | [diff] [blame] | 1423 | #endif |
| Brian Paul | c04bb51 | 2006-07-11 21:56:43 +0000 | [diff] [blame] | 1424 | _mesa_delete_array_object(ctx, ctx->Array.DefaultArrayObj); |
| Brian Paul | fd28445 | 2001-07-19 15:54:34 +0000 | [diff] [blame] | 1425 | |
| Brian Paul | 65a66f5 | 2004-11-27 22:47:59 +0000 | [diff] [blame] | 1426 | /* free dispatch tables */ |
| 1427 | _mesa_free(ctx->Exec); |
| 1428 | _mesa_free(ctx->Save); |
| 1429 | |
| Brian Paul | 30f51ae | 2001-12-18 04:06:44 +0000 | [diff] [blame] | 1430 | /* Shared context state (display lists, textures, etc) */ |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 1431 | _glthread_LOCK_MUTEX(ctx->Shared->Mutex); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1432 | ctx->Shared->RefCount--; |
| Brian Paul | 9560f05 | 2000-01-31 23:11:39 +0000 | [diff] [blame] | 1433 | assert(ctx->Shared->RefCount >= 0); |
| 1434 | _glthread_UNLOCK_MUTEX(ctx->Shared->Mutex); |
| 1435 | if (ctx->Shared->RefCount == 0) { |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1436 | /* free shared state */ |
| 1437 | free_shared_state( ctx, ctx->Shared ); |
| 1438 | } |
| 1439 | |
| Brian Paul | 702ca20 | 2003-07-18 15:22:16 +0000 | [diff] [blame] | 1440 | if (ctx->Extensions.String) |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 1441 | _mesa_free((void *) ctx->Extensions.String); |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1442 | } |
| 1443 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1444 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1445 | /** |
| Brian Paul | 4d053dd | 2000-01-14 04:45:47 +0000 | [diff] [blame] | 1446 | * Destroy a GLcontext structure. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1447 | * |
| 1448 | * \param ctx GL context. |
| 1449 | * |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1450 | * Calls _mesa_free_context_data() and frees the GLcontext structure itself. |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1451 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1452 | void |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1453 | _mesa_destroy_context( GLcontext *ctx ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1454 | { |
| 1455 | if (ctx) { |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1456 | _mesa_free_context_data(ctx); |
| Brian Paul | c7e164f | 2006-06-30 15:44:30 +0000 | [diff] [blame] | 1457 | _mesa_free( (void *) ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1458 | } |
| 1459 | } |
| 1460 | |
| Brian Paul | d3fd7ba | 2004-01-20 02:49:27 +0000 | [diff] [blame] | 1461 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1462 | #if _HAVE_FULL_GL |
| 1463 | /** |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1464 | * Copy attribute groups from one context to another. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1465 | * |
| 1466 | * \param src source context |
| 1467 | * \param dst destination context |
| 1468 | * \param mask bitwise OR of GL_*_BIT flags |
| 1469 | * |
| 1470 | * According to the bits specified in \p mask, copies the corresponding |
| Jose Fonseca | 375457b | 2004-09-09 22:23:24 +0000 | [diff] [blame] | 1471 | * attributes from \p src into \p dst. For many of the attributes a simple \c |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1472 | * memcpy is not enough due to the existence of internal pointers in their data |
| 1473 | * structures. |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1474 | */ |
| Brian Paul | 178a1c5 | 2000-04-22 01:05:00 +0000 | [diff] [blame] | 1475 | void |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1476 | _mesa_copy_context( const GLcontext *src, GLcontext *dst, GLuint mask ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1477 | { |
| 1478 | if (mask & GL_ACCUM_BUFFER_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1479 | /* OK to memcpy */ |
| 1480 | dst->Accum = src->Accum; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1481 | } |
| 1482 | if (mask & GL_COLOR_BUFFER_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1483 | /* OK to memcpy */ |
| 1484 | dst->Color = src->Color; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1485 | } |
| 1486 | if (mask & GL_CURRENT_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1487 | /* OK to memcpy */ |
| 1488 | dst->Current = src->Current; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1489 | } |
| 1490 | if (mask & GL_DEPTH_BUFFER_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1491 | /* OK to memcpy */ |
| 1492 | dst->Depth = src->Depth; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1493 | } |
| 1494 | if (mask & GL_ENABLE_BIT) { |
| 1495 | /* no op */ |
| 1496 | } |
| 1497 | if (mask & GL_EVAL_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1498 | /* OK to memcpy */ |
| 1499 | dst->Eval = src->Eval; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1500 | } |
| 1501 | if (mask & GL_FOG_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1502 | /* OK to memcpy */ |
| 1503 | dst->Fog = src->Fog; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1504 | } |
| 1505 | if (mask & GL_HINT_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1506 | /* OK to memcpy */ |
| 1507 | dst->Hint = src->Hint; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1508 | } |
| 1509 | if (mask & GL_LIGHTING_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1510 | GLuint i; |
| 1511 | /* begin with memcpy */ |
| Brian Paul | 2aabdc7 | 2006-02-24 18:19:11 +0000 | [diff] [blame] | 1512 | dst->Light = src->Light; |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1513 | /* fixup linked lists to prevent pointer insanity */ |
| 1514 | make_empty_list( &(dst->Light.EnabledList) ); |
| 1515 | for (i = 0; i < MAX_LIGHTS; i++) { |
| 1516 | if (dst->Light.Light[i].Enabled) { |
| 1517 | insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i])); |
| 1518 | } |
| 1519 | } |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1520 | } |
| 1521 | if (mask & GL_LINE_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1522 | /* OK to memcpy */ |
| 1523 | dst->Line = src->Line; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1524 | } |
| 1525 | if (mask & GL_LIST_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1526 | /* OK to memcpy */ |
| 1527 | dst->List = src->List; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1528 | } |
| 1529 | if (mask & GL_PIXEL_MODE_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1530 | /* OK to memcpy */ |
| 1531 | dst->Pixel = src->Pixel; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1532 | } |
| 1533 | if (mask & GL_POINT_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1534 | /* OK to memcpy */ |
| 1535 | dst->Point = src->Point; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1536 | } |
| 1537 | if (mask & GL_POLYGON_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1538 | /* OK to memcpy */ |
| 1539 | dst->Polygon = src->Polygon; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1540 | } |
| 1541 | if (mask & GL_POLYGON_STIPPLE_BIT) { |
| 1542 | /* Use loop instead of MEMCPY due to problem with Portland Group's |
| 1543 | * C compiler. Reported by John Stone. |
| 1544 | */ |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1545 | GLuint i; |
| 1546 | for (i = 0; i < 32; i++) { |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1547 | dst->PolygonStipple[i] = src->PolygonStipple[i]; |
| 1548 | } |
| 1549 | } |
| 1550 | if (mask & GL_SCISSOR_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1551 | /* OK to memcpy */ |
| 1552 | dst->Scissor = src->Scissor; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1553 | } |
| 1554 | if (mask & GL_STENCIL_BUFFER_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1555 | /* OK to memcpy */ |
| 1556 | dst->Stencil = src->Stencil; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1557 | } |
| 1558 | if (mask & GL_TEXTURE_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1559 | /* Cannot memcpy because of pointers */ |
| 1560 | _mesa_copy_texture_state(src, dst); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1561 | } |
| 1562 | if (mask & GL_TRANSFORM_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1563 | /* OK to memcpy */ |
| 1564 | dst->Transform = src->Transform; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1565 | } |
| 1566 | if (mask & GL_VIEWPORT_BIT) { |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1567 | /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */ |
| 1568 | dst->Viewport.X = src->Viewport.X; |
| 1569 | dst->Viewport.Y = src->Viewport.Y; |
| 1570 | dst->Viewport.Width = src->Viewport.Width; |
| 1571 | dst->Viewport.Height = src->Viewport.Height; |
| 1572 | dst->Viewport.Near = src->Viewport.Near; |
| 1573 | dst->Viewport.Far = src->Viewport.Far; |
| 1574 | _math_matrix_copy(&dst->Viewport._WindowMap, &src->Viewport._WindowMap); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1575 | } |
| Brian Paul | 85d8160 | 2002-06-17 23:36:31 +0000 | [diff] [blame] | 1576 | |
| Keith Whitwell | a96308c | 2000-10-30 13:31:59 +0000 | [diff] [blame] | 1577 | /* XXX FIXME: Call callbacks? |
| 1578 | */ |
| 1579 | dst->NewState = _NEW_ALL; |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1580 | } |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1581 | #endif |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1582 | |
| 1583 | |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1584 | /** |
| 1585 | * Check if the given context can render into the given framebuffer |
| 1586 | * by checking visual attributes. |
| Brian Paul | ca007cb | 2006-03-07 03:01:26 +0000 | [diff] [blame] | 1587 | * |
| 1588 | * XXX this may go away someday because we're moving toward more freedom |
| 1589 | * in binding contexts to drawables with different visual attributes. |
| 1590 | * The GL_EXT_f_b_o extension is prompting some of that. |
| 1591 | * |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1592 | * \return GL_TRUE if compatible, GL_FALSE otherwise. |
| 1593 | */ |
| 1594 | static GLboolean |
| 1595 | check_compatible(const GLcontext *ctx, const GLframebuffer *buffer) |
| 1596 | { |
| 1597 | const GLvisual *ctxvis = &ctx->Visual; |
| 1598 | const GLvisual *bufvis = &buffer->Visual; |
| 1599 | |
| 1600 | if (ctxvis == bufvis) |
| 1601 | return GL_TRUE; |
| 1602 | |
| 1603 | if (ctxvis->rgbMode != bufvis->rgbMode) |
| 1604 | return GL_FALSE; |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1605 | #if 0 |
| 1606 | /* disabling this fixes the fgl_glxgears pbuffer demo */ |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1607 | if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode) |
| 1608 | return GL_FALSE; |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1609 | #endif |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1610 | if (ctxvis->stereoMode && !bufvis->stereoMode) |
| 1611 | return GL_FALSE; |
| 1612 | if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer) |
| 1613 | return GL_FALSE; |
| 1614 | if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer) |
| 1615 | return GL_FALSE; |
| 1616 | if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer) |
| 1617 | return GL_FALSE; |
| 1618 | if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask) |
| 1619 | return GL_FALSE; |
| 1620 | if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask) |
| 1621 | return GL_FALSE; |
| 1622 | if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask) |
| 1623 | return GL_FALSE; |
| 1624 | if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits) |
| 1625 | return GL_FALSE; |
| 1626 | if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits) |
| 1627 | return GL_FALSE; |
| 1628 | |
| 1629 | return GL_TRUE; |
| 1630 | } |
| 1631 | |
| 1632 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1633 | /** |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1634 | * Do one-time initialization for the given framebuffer. Specifically, |
| 1635 | * ask the driver for the window's current size and update the framebuffer |
| 1636 | * object to match. |
| 1637 | * Really, the device driver should totally take care of this. |
| 1638 | */ |
| 1639 | static void |
| 1640 | initialize_framebuffer_size(GLcontext *ctx, GLframebuffer *fb) |
| 1641 | { |
| 1642 | GLuint width, height; |
| Brian Paul | 55e42e5 | 2006-10-17 17:43:47 +0000 | [diff] [blame] | 1643 | if (ctx->Driver.GetBufferSize) { |
| 1644 | ctx->Driver.GetBufferSize(fb, &width, &height); |
| 1645 | if (ctx->Driver.ResizeBuffers) |
| 1646 | ctx->Driver.ResizeBuffers(ctx, fb, width, height); |
| 1647 | fb->Initialized = GL_TRUE; |
| 1648 | } |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | |
| 1652 | /** |
| 1653 | * Bind the given context to the given drawBuffer and readBuffer and |
| 1654 | * make it the current context for the calling thread. |
| 1655 | * We'll render into the drawBuffer and read pixels from the |
| 1656 | * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc). |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1657 | * |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1658 | * We check that the context's and framebuffer's visuals are compatible |
| 1659 | * and return immediately if they're not. |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1660 | * |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1661 | * \param newCtx the new GL context. If NULL then there will be no current GL |
| 1662 | * context. |
| 1663 | * \param drawBuffer the drawing framebuffer |
| 1664 | * \param readBuffer the reading framebuffer |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1665 | */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1666 | void |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1667 | _mesa_make_current( GLcontext *newCtx, GLframebuffer *drawBuffer, |
| 1668 | GLframebuffer *readBuffer ) |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1669 | { |
| Brian | e6a9381 | 2007-02-26 11:37:37 -0700 | [diff] [blame^] | 1670 | GET_CURRENT_CONTEXT(oldCtx); |
| 1671 | |
| Keith Whitwell | 5c72837 | 2005-05-12 10:22:29 +0000 | [diff] [blame] | 1672 | if (MESA_VERBOSE & VERBOSE_API) |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1673 | _mesa_debug(newCtx, "_mesa_make_current()\n"); |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1674 | |
| Brian Paul | be3602d | 2001-02-28 00:27:48 +0000 | [diff] [blame] | 1675 | /* Check that the context's and framebuffer's visuals are compatible. |
| Brian Paul | be3602d | 2001-02-28 00:27:48 +0000 | [diff] [blame] | 1676 | */ |
| Brian Paul | f1038f8 | 2006-03-20 15:20:57 +0000 | [diff] [blame] | 1677 | if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) { |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1678 | if (!check_compatible(newCtx, drawBuffer)) { |
| 1679 | _mesa_warning(newCtx, |
| 1680 | "MakeCurrent: incompatible visuals for context and drawbuffer"); |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1681 | return; |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1682 | } |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1683 | } |
| Brian Paul | f1038f8 | 2006-03-20 15:20:57 +0000 | [diff] [blame] | 1684 | if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) { |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1685 | if (!check_compatible(newCtx, readBuffer)) { |
| 1686 | _mesa_warning(newCtx, |
| 1687 | "MakeCurrent: incompatible visuals for context and readbuffer"); |
| Brian Paul | b1d53d9 | 2003-06-11 18:48:19 +0000 | [diff] [blame] | 1688 | return; |
| Brian Paul | d75963d | 2006-03-07 02:57:04 +0000 | [diff] [blame] | 1689 | } |
| Brian Paul | be3602d | 2001-02-28 00:27:48 +0000 | [diff] [blame] | 1690 | } |
| 1691 | |
| Brian Paul | c6c0f94 | 2006-03-16 18:05:25 +0000 | [diff] [blame] | 1692 | /* We used to call _glapi_check_multithread() here. Now do it in drivers */ |
| Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 1693 | _glapi_set_context((void *) newCtx); |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1694 | ASSERT(_mesa_get_current_context() == newCtx); |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1695 | |
| Brian | e6a9381 | 2007-02-26 11:37:37 -0700 | [diff] [blame^] | 1696 | if (oldCtx) { |
| 1697 | if (oldCtx->WinSysDrawBuffer) { |
| 1698 | _mesa_dereference_framebuffer(&oldCtx->WinSysDrawBuffer); |
| 1699 | } |
| 1700 | if (oldCtx->WinSysReadBuffer) { |
| 1701 | _mesa_dereference_framebuffer(&oldCtx->WinSysReadBuffer); |
| 1702 | } |
| 1703 | } |
| 1704 | |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1705 | if (!newCtx) { |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1706 | _glapi_set_dispatch(NULL); /* none current */ |
| 1707 | } |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1708 | else { |
| 1709 | _glapi_set_dispatch(newCtx->CurrentDispatch); |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1710 | |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1711 | if (drawBuffer && readBuffer) { |
| 1712 | /* TODO: check if newCtx and buffer's visual match??? */ |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1713 | |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1714 | ASSERT(drawBuffer->Name == 0); |
| 1715 | ASSERT(readBuffer->Name == 0); |
| 1716 | newCtx->WinSysDrawBuffer = drawBuffer; |
| 1717 | newCtx->WinSysReadBuffer = readBuffer; |
| Brian | e6a9381 | 2007-02-26 11:37:37 -0700 | [diff] [blame^] | 1718 | drawBuffer->RefCount++; |
| 1719 | readBuffer->RefCount++; |
| Brian Paul | f1038f8 | 2006-03-20 15:20:57 +0000 | [diff] [blame] | 1720 | |
| 1721 | /* |
| 1722 | * Only set the context's Draw/ReadBuffer fields if they're NULL |
| 1723 | * or not bound to a user-created FBO. |
| 1724 | */ |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1725 | if (!newCtx->DrawBuffer || newCtx->DrawBuffer->Name == 0) { |
| 1726 | newCtx->DrawBuffer = drawBuffer; |
| Brian Paul | f1038f8 | 2006-03-20 15:20:57 +0000 | [diff] [blame] | 1727 | } |
| 1728 | if (!newCtx->ReadBuffer || newCtx->ReadBuffer->Name == 0) { |
| Brian Paul | e4b2356 | 2005-05-04 20:11:35 +0000 | [diff] [blame] | 1729 | newCtx->ReadBuffer = readBuffer; |
| 1730 | } |
| Brian Paul | bb5c84f | 2005-07-01 01:22:25 +0000 | [diff] [blame] | 1731 | |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1732 | newCtx->NewState |= _NEW_BUFFERS; |
| Brian Paul | 10d7f54 | 2002-06-17 23:38:14 +0000 | [diff] [blame] | 1733 | |
| Brian Paul | 4d4add0 | 2006-10-15 19:26:43 +0000 | [diff] [blame] | 1734 | #if 1 |
| 1735 | /* We want to get rid of these lines: */ |
| 1736 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1737 | #if _HAVE_FULL_GL |
| Brian Paul | 65a66f5 | 2004-11-27 22:47:59 +0000 | [diff] [blame] | 1738 | if (!drawBuffer->Initialized) { |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1739 | initialize_framebuffer_size(newCtx, drawBuffer); |
| Brian Paul | 10d7f54 | 2002-06-17 23:38:14 +0000 | [diff] [blame] | 1740 | } |
| Brian Paul | 65a66f5 | 2004-11-27 22:47:59 +0000 | [diff] [blame] | 1741 | if (readBuffer != drawBuffer && !readBuffer->Initialized) { |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1742 | initialize_framebuffer_size(newCtx, readBuffer); |
| Brian Paul | 10d7f54 | 2002-06-17 23:38:14 +0000 | [diff] [blame] | 1743 | } |
| Keith Whitwell | f9bfdb1 | 2006-09-22 11:36:30 +0000 | [diff] [blame] | 1744 | |
| 1745 | _mesa_resizebuffers(newCtx); |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1746 | #endif |
| Brian Paul | 4d4add0 | 2006-10-15 19:26:43 +0000 | [diff] [blame] | 1747 | |
| 1748 | #else |
| 1749 | /* We want the drawBuffer and readBuffer to be initialized by |
| 1750 | * the driver. |
| 1751 | * This generally means the Width and Height match the actual |
| 1752 | * window size and the renderbuffers (both hardware and software |
| 1753 | * based) are allocated to match. The later can generally be |
| 1754 | * done with a call to _mesa_resize_framebuffer(). |
| 1755 | * |
| 1756 | * It's theoretically possible for a buffer to have zero width |
| 1757 | * or height, but for now, assert check that the driver did what's |
| 1758 | * expected of it. |
| 1759 | */ |
| 1760 | ASSERT(drawBuffer->Width > 0); |
| 1761 | ASSERT(drawBuffer->Height > 0); |
| 1762 | #endif |
| 1763 | |
| Brian Paul | 65a66f5 | 2004-11-27 22:47:59 +0000 | [diff] [blame] | 1764 | if (newCtx->FirstTimeCurrent) { |
| 1765 | /* set initial viewport and scissor size now */ |
| Brian Paul | a702bbf | 2005-09-14 03:11:36 +0000 | [diff] [blame] | 1766 | _mesa_set_viewport(newCtx, 0, 0, |
| 1767 | drawBuffer->Width, drawBuffer->Height); |
| Brian Paul | db79d2a | 2006-03-29 18:41:19 +0000 | [diff] [blame] | 1768 | _mesa_set_scissor(newCtx, 0, 0, |
| 1769 | drawBuffer->Width, drawBuffer->Height ); |
| Brian Paul | 5e2e96b | 2006-05-15 15:26:04 +0000 | [diff] [blame] | 1770 | check_context_limits(newCtx); |
| Brian Paul | 65a66f5 | 2004-11-27 22:47:59 +0000 | [diff] [blame] | 1771 | } |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1772 | } |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1773 | |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1774 | /* We can use this to help debug user's problems. Tell them to set |
| 1775 | * the MESA_INFO env variable before running their app. Then the |
| 1776 | * first time each context is made current we'll print some useful |
| 1777 | * information. |
| 1778 | */ |
| 1779 | if (newCtx->FirstTimeCurrent) { |
| Brian Paul | 3c63452 | 2002-10-24 23:57:19 +0000 | [diff] [blame] | 1780 | if (_mesa_getenv("MESA_INFO")) { |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1781 | _mesa_print_info(); |
| Keith Whitwell | 23caf20 | 2000-11-16 21:05:34 +0000 | [diff] [blame] | 1782 | } |
| 1783 | newCtx->FirstTimeCurrent = GL_FALSE; |
| 1784 | } |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1785 | } |
| 1786 | } |
| 1787 | |
| Brian Paul | 635ee2d | 2005-04-15 17:25:07 +0000 | [diff] [blame] | 1788 | |
| 1789 | /** |
| 1790 | * Make context 'ctx' share the display lists, textures and programs |
| 1791 | * that are associated with 'ctxToShare'. |
| 1792 | * Any display lists, textures or programs associated with 'ctx' will |
| 1793 | * be deleted if nobody else is sharing them. |
| 1794 | */ |
| 1795 | GLboolean |
| 1796 | _mesa_share_state(GLcontext *ctx, GLcontext *ctxToShare) |
| 1797 | { |
| 1798 | if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) { |
| 1799 | ctx->Shared->RefCount--; |
| 1800 | if (ctx->Shared->RefCount == 0) { |
| 1801 | free_shared_state(ctx, ctx->Shared); |
| 1802 | } |
| 1803 | ctx->Shared = ctxToShare->Shared; |
| 1804 | ctx->Shared->RefCount++; |
| 1805 | return GL_TRUE; |
| 1806 | } |
| 1807 | else { |
| 1808 | return GL_FALSE; |
| 1809 | } |
| 1810 | } |
| 1811 | |
| 1812 | |
| 1813 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1814 | /** |
| 1815 | * Get current context for the calling thread. |
| 1816 | * |
| 1817 | * \return pointer to the current GL context. |
| 1818 | * |
| 1819 | * Calls _glapi_get_context(). This isn't the fastest way to get the current |
| 1820 | * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in context.h. |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1821 | */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1822 | GLcontext * |
| 1823 | _mesa_get_current_context( void ) |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1824 | { |
| Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 1825 | return (GLcontext *) _glapi_get_context(); |
| Brian Paul | 0003778 | 1999-12-17 14:52:35 +0000 | [diff] [blame] | 1826 | } |
| 1827 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1828 | /** |
| 1829 | * Get context's current API dispatch table. |
| 1830 | * |
| 1831 | * It'll either be the immediate-mode execute dispatcher or the display list |
| 1832 | * compile dispatcher. |
| 1833 | * |
| 1834 | * \param ctx GL context. |
| 1835 | * |
| 1836 | * \return pointer to dispatch_table. |
| 1837 | * |
| 1838 | * Simply returns __GLcontextRec::CurrentDispatch. |
| Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 1839 | */ |
| 1840 | struct _glapi_table * |
| 1841 | _mesa_get_dispatch(GLcontext *ctx) |
| 1842 | { |
| 1843 | return ctx->CurrentDispatch; |
| 1844 | } |
| 1845 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1846 | /*@}*/ |
| Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 1847 | |
| 1848 | |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1849 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1850 | /** \name Miscellaneous functions */ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1851 | /**********************************************************************/ |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1852 | /*@{*/ |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1853 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1854 | /** |
| 1855 | * Record an error. |
| 1856 | * |
| 1857 | * \param ctx GL context. |
| 1858 | * \param error error code. |
| 1859 | * |
| 1860 | * Records the given error code and call the driver's dd_function_table::Error |
| 1861 | * function if defined. |
| 1862 | * |
| 1863 | * \sa |
| Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 1864 | * This is called via _mesa_error(). |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1865 | */ |
| Brian Paul | b1394fa | 2000-09-26 20:53:53 +0000 | [diff] [blame] | 1866 | void |
| Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 1867 | _mesa_record_error( GLcontext *ctx, GLenum error ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1868 | { |
| Brian Paul | 18a285a | 2002-03-16 00:53:15 +0000 | [diff] [blame] | 1869 | if (!ctx) |
| 1870 | return; |
| 1871 | |
| Brian Paul | 7eb0603 | 2000-07-14 04:13:40 +0000 | [diff] [blame] | 1872 | if (ctx->ErrorValue == GL_NO_ERROR) { |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1873 | ctx->ErrorValue = error; |
| 1874 | } |
| 1875 | |
| 1876 | /* Call device driver's error handler, if any. This is used on the Mac. */ |
| 1877 | if (ctx->Driver.Error) { |
| 1878 | (*ctx->Driver.Error)( ctx ); |
| 1879 | } |
| 1880 | } |
| 1881 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1882 | /** |
| 1883 | * Execute glFinish(). |
| 1884 | * |
| 1885 | * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the |
| 1886 | * dd_function_table::Finish driver callback, if not NULL. |
| 1887 | */ |
| Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 1888 | void GLAPIENTRY |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1889 | _mesa_Finish( void ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1890 | { |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1891 | GET_CURRENT_CONTEXT(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 1892 | ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1893 | if (ctx->Driver.Finish) { |
| 1894 | (*ctx->Driver.Finish)( ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1895 | } |
| 1896 | } |
| 1897 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1898 | /** |
| 1899 | * Execute glFlush(). |
| 1900 | * |
| 1901 | * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the |
| 1902 | * dd_function_table::Flush driver callback, if not NULL. |
| 1903 | */ |
| Kendall Bennett | c40d1dd | 2003-10-21 22:22:17 +0000 | [diff] [blame] | 1904 | void GLAPIENTRY |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1905 | _mesa_Flush( void ) |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1906 | { |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1907 | GET_CURRENT_CONTEXT(ctx); |
| Keith Whitwell | cab974c | 2000-12-26 05:09:27 +0000 | [diff] [blame] | 1908 | ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); |
| Brian Paul | fa9df40 | 2000-02-02 19:16:46 +0000 | [diff] [blame] | 1909 | if (ctx->Driver.Flush) { |
| 1910 | (*ctx->Driver.Flush)( ctx ); |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1911 | } |
| jtg | afb833d | 1999-08-19 00:55:39 +0000 | [diff] [blame] | 1912 | } |
| Brian Paul | 48c6a6e | 2000-09-08 21:28:04 +0000 | [diff] [blame] | 1913 | |
| 1914 | |
| Keith Whitwell | 6dc8557 | 2003-07-17 13:43:59 +0000 | [diff] [blame] | 1915 | /*@}*/ |