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