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