mesa: make _mesa_alloc_dispatch_table() static
[mesa.git] / src / mesa / main / context.c
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
5 * Copyright (C) 2008 VMware, Inc. All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included
15 * in all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
23 * OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 /**
27 * \file context.c
28 * Mesa context/visual/framebuffer management functions.
29 * \author Brian Paul
30 */
31
32 /**
33 * \mainpage Mesa Main Module
34 *
35 * \section MainIntroduction Introduction
36 *
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>
46 *
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.
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 *
64 * Selecting <b>Data Structures</b> will list all C structures.
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 *
70 * Selecting the <b>Data Fields</b> link will display a list of all
71 * documented structure members.
72 *
73 * Selecting the <b>Globals</b> link will display a list
74 * of all functions, structures, global variables and macros in the module.
75 *
76 */
77
78
79 #include "glheader.h"
80 #include "imports.h"
81 #include "accum.h"
82 #include "api_exec.h"
83 #include "api_loopback.h"
84 #include "arrayobj.h"
85 #include "attrib.h"
86 #include "blend.h"
87 #include "buffers.h"
88 #include "bufferobj.h"
89 #include "context.h"
90 #include "cpuinfo.h"
91 #include "debug.h"
92 #include "depth.h"
93 #include "dlist.h"
94 #include "eval.h"
95 #include "extensions.h"
96 #include "fbobject.h"
97 #include "feedback.h"
98 #include "fog.h"
99 #include "formats.h"
100 #include "framebuffer.h"
101 #include "hint.h"
102 #include "hash.h"
103 #include "light.h"
104 #include "lines.h"
105 #include "macros.h"
106 #include "matrix.h"
107 #include "multisample.h"
108 #include "performance_monitor.h"
109 #include "pipelineobj.h"
110 #include "pixel.h"
111 #include "pixelstore.h"
112 #include "points.h"
113 #include "polygon.h"
114 #include "queryobj.h"
115 #include "syncobj.h"
116 #include "rastpos.h"
117 #include "remap.h"
118 #include "scissor.h"
119 #include "shared.h"
120 #include "shaderobj.h"
121 #include "util/simple_list.h"
122 #include "state.h"
123 #include "stencil.h"
124 #include "texcompress_s3tc.h"
125 #include "texstate.h"
126 #include "transformfeedback.h"
127 #include "mtypes.h"
128 #include "varray.h"
129 #include "version.h"
130 #include "viewport.h"
131 #include "vtxfmt.h"
132 #include "program/program.h"
133 #include "program/prog_print.h"
134 #include "math/m_matrix.h"
135 #include "main/dispatch.h" /* for _gloffset_COUNT */
136 #include "uniforms.h"
137 #include "macros.h"
138
139 #ifdef USE_SPARC_ASM
140 #include "sparc/sparc.h"
141 #endif
142
143 #include "glsl_parser_extras.h"
144 #include <stdbool.h>
145
146
147 #ifndef MESA_VERBOSE
148 int MESA_VERBOSE = 0;
149 #endif
150
151 #ifndef MESA_DEBUG_FLAGS
152 int MESA_DEBUG_FLAGS = 0;
153 #endif
154
155
156 /* ubyte -> float conversion */
157 GLfloat _mesa_ubyte_to_float_color_tab[256];
158
159
160
161 /**
162 * Swap buffers notification callback.
163 *
164 * \param ctx GL context.
165 *
166 * Called by window system just before swapping buffers.
167 * We have to finish any pending rendering.
168 */
169 void
170 _mesa_notifySwapBuffers(struct gl_context *ctx)
171 {
172 if (MESA_VERBOSE & VERBOSE_SWAPBUFFERS)
173 _mesa_debug(ctx, "SwapBuffers\n");
174 FLUSH_CURRENT( ctx, 0 );
175 if (ctx->Driver.Flush) {
176 ctx->Driver.Flush(ctx);
177 }
178 }
179
180
181 /**********************************************************************/
182 /** \name GL Visual allocation/destruction */
183 /**********************************************************************/
184 /*@{*/
185
186 /**
187 * Allocates a struct gl_config structure and initializes it via
188 * _mesa_initialize_visual().
189 *
190 * \param dbFlag double buffering
191 * \param stereoFlag stereo buffer
192 * \param depthBits requested bits per depth buffer value. Any value in [0, 32]
193 * is acceptable but the actual depth type will be GLushort or GLuint as
194 * needed.
195 * \param stencilBits requested minimum bits per stencil buffer value
196 * \param accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits number
197 * of bits per color component in accum buffer.
198 * \param indexBits number of bits per pixel if \p rgbFlag is GL_FALSE
199 * \param redBits number of bits per color component in frame buffer for RGB(A)
200 * mode. We always use 8 in core Mesa though.
201 * \param greenBits same as above.
202 * \param blueBits same as above.
203 * \param alphaBits same as above.
204 * \param numSamples not really used.
205 *
206 * \return pointer to new struct gl_config or NULL if requested parameters
207 * can't be met.
208 *
209 * \note Need to add params for level and numAuxBuffers (at least)
210 */
211 struct gl_config *
212 _mesa_create_visual( GLboolean dbFlag,
213 GLboolean stereoFlag,
214 GLint redBits,
215 GLint greenBits,
216 GLint blueBits,
217 GLint alphaBits,
218 GLint depthBits,
219 GLint stencilBits,
220 GLint accumRedBits,
221 GLint accumGreenBits,
222 GLint accumBlueBits,
223 GLint accumAlphaBits,
224 GLint numSamples )
225 {
226 struct gl_config *vis = CALLOC_STRUCT(gl_config);
227 if (vis) {
228 if (!_mesa_initialize_visual(vis, dbFlag, stereoFlag,
229 redBits, greenBits, blueBits, alphaBits,
230 depthBits, stencilBits,
231 accumRedBits, accumGreenBits,
232 accumBlueBits, accumAlphaBits,
233 numSamples)) {
234 free(vis);
235 return NULL;
236 }
237 }
238 return vis;
239 }
240
241
242 /**
243 * Makes some sanity checks and fills in the fields of the struct
244 * gl_config object with the given parameters. If the caller needs to
245 * set additional fields, he should just probably init the whole
246 * gl_config object himself.
247 *
248 * \return GL_TRUE on success, or GL_FALSE on failure.
249 *
250 * \sa _mesa_create_visual() above for the parameter description.
251 */
252 GLboolean
253 _mesa_initialize_visual( struct gl_config *vis,
254 GLboolean dbFlag,
255 GLboolean stereoFlag,
256 GLint redBits,
257 GLint greenBits,
258 GLint blueBits,
259 GLint alphaBits,
260 GLint depthBits,
261 GLint stencilBits,
262 GLint accumRedBits,
263 GLint accumGreenBits,
264 GLint accumBlueBits,
265 GLint accumAlphaBits,
266 GLint numSamples )
267 {
268 assert(vis);
269
270 if (depthBits < 0 || depthBits > 32) {
271 return GL_FALSE;
272 }
273 if (stencilBits < 0 || stencilBits > 8) {
274 return GL_FALSE;
275 }
276 assert(accumRedBits >= 0);
277 assert(accumGreenBits >= 0);
278 assert(accumBlueBits >= 0);
279 assert(accumAlphaBits >= 0);
280
281 vis->rgbMode = GL_TRUE;
282 vis->doubleBufferMode = dbFlag;
283 vis->stereoMode = stereoFlag;
284
285 vis->redBits = redBits;
286 vis->greenBits = greenBits;
287 vis->blueBits = blueBits;
288 vis->alphaBits = alphaBits;
289 vis->rgbBits = redBits + greenBits + blueBits;
290
291 vis->indexBits = 0;
292 vis->depthBits = depthBits;
293 vis->stencilBits = stencilBits;
294
295 vis->accumRedBits = accumRedBits;
296 vis->accumGreenBits = accumGreenBits;
297 vis->accumBlueBits = accumBlueBits;
298 vis->accumAlphaBits = accumAlphaBits;
299
300 vis->haveAccumBuffer = accumRedBits > 0;
301 vis->haveDepthBuffer = depthBits > 0;
302 vis->haveStencilBuffer = stencilBits > 0;
303
304 vis->numAuxBuffers = 0;
305 vis->level = 0;
306 vis->sampleBuffers = numSamples > 0 ? 1 : 0;
307 vis->samples = numSamples;
308
309 return GL_TRUE;
310 }
311
312
313 /**
314 * Destroy a visual and free its memory.
315 *
316 * \param vis visual.
317 *
318 * Frees the visual structure.
319 */
320 void
321 _mesa_destroy_visual( struct gl_config *vis )
322 {
323 free(vis);
324 }
325
326 /*@}*/
327
328
329 /**********************************************************************/
330 /** \name Context allocation, initialization, destroying
331 *
332 * The purpose of the most initialization functions here is to provide the
333 * default state values according to the OpenGL specification.
334 */
335 /**********************************************************************/
336 /*@{*/
337
338
339 /**
340 * This is lame. gdb only seems to recognize enum types that are
341 * actually used somewhere. We want to be able to print/use enum
342 * values such as TEXTURE_2D_INDEX in gdb. But we don't actually use
343 * the gl_texture_index type anywhere. Thus, this lame function.
344 */
345 static void
346 dummy_enum_func(void)
347 {
348 gl_buffer_index bi = BUFFER_FRONT_LEFT;
349 gl_face_index fi = FACE_POS_X;
350 gl_frag_result fr = FRAG_RESULT_DEPTH;
351 gl_texture_index ti = TEXTURE_2D_ARRAY_INDEX;
352 gl_vert_attrib va = VERT_ATTRIB_POS;
353 gl_varying_slot vs = VARYING_SLOT_POS;
354
355 (void) bi;
356 (void) fi;
357 (void) fr;
358 (void) ti;
359 (void) va;
360 (void) vs;
361 }
362
363
364 /**
365 * One-time initialization mutex lock.
366 *
367 * \sa Used by one_time_init().
368 */
369 mtx_t OneTimeLock = _MTX_INITIALIZER_NP;
370
371
372
373 /**
374 * Calls all the various one-time-init functions in Mesa.
375 *
376 * While holding a global mutex lock, calls several initialization functions,
377 * and sets the glapi callbacks if the \c MESA_DEBUG environment variable is
378 * defined.
379 *
380 * \sa _math_init().
381 */
382 static void
383 one_time_init( struct gl_context *ctx )
384 {
385 static GLbitfield api_init_mask = 0x0;
386
387 mtx_lock(&OneTimeLock);
388
389 /* truly one-time init */
390 if (!api_init_mask) {
391 GLuint i;
392
393 /* do some implementation tests */
394 assert( sizeof(GLbyte) == 1 );
395 assert( sizeof(GLubyte) == 1 );
396 assert( sizeof(GLshort) == 2 );
397 assert( sizeof(GLushort) == 2 );
398 assert( sizeof(GLint) == 4 );
399 assert( sizeof(GLuint) == 4 );
400
401 _mesa_one_time_init_extension_overrides();
402
403 _mesa_get_cpu_features();
404
405 for (i = 0; i < 256; i++) {
406 _mesa_ubyte_to_float_color_tab[i] = (float) i / 255.0F;
407 }
408
409 #if defined(DEBUG) && defined(__DATE__) && defined(__TIME__)
410 if (MESA_VERBOSE != 0) {
411 _mesa_debug(ctx, "Mesa %s DEBUG build %s %s\n",
412 PACKAGE_VERSION, __DATE__, __TIME__);
413 }
414 #endif
415
416 #ifdef DEBUG
417 _mesa_test_formats();
418 #endif
419 }
420
421 /* per-API one-time init */
422 if (!(api_init_mask & (1 << ctx->API))) {
423 _mesa_init_get_hash(ctx);
424
425 _mesa_init_remap_table();
426 }
427
428 api_init_mask |= 1 << ctx->API;
429
430 mtx_unlock(&OneTimeLock);
431
432 /* Hopefully atexit() is widely available. If not, we may need some
433 * #ifdef tests here.
434 */
435 atexit(_mesa_destroy_shader_compiler);
436
437 dummy_enum_func();
438 }
439
440
441 /**
442 * Initialize fields of gl_current_attrib (aka ctx->Current.*)
443 */
444 static void
445 _mesa_init_current(struct gl_context *ctx)
446 {
447 GLuint i;
448
449 /* Init all to (0,0,0,1) */
450 for (i = 0; i < ARRAY_SIZE(ctx->Current.Attrib); i++) {
451 ASSIGN_4V( ctx->Current.Attrib[i], 0.0, 0.0, 0.0, 1.0 );
452 }
453
454 /* redo special cases: */
455 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_WEIGHT], 1.0, 0.0, 0.0, 0.0 );
456 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_NORMAL], 0.0, 0.0, 1.0, 1.0 );
457 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR0], 1.0, 1.0, 1.0, 1.0 );
458 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR1], 0.0, 0.0, 0.0, 1.0 );
459 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_COLOR_INDEX], 1.0, 0.0, 0.0, 1.0 );
460 ASSIGN_4V( ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG], 1.0, 0.0, 0.0, 1.0 );
461 }
462
463
464 /**
465 * Init vertex/fragment/geometry program limits.
466 * Important: drivers should override these with actual limits.
467 */
468 static void
469 init_program_limits(struct gl_constants *consts, gl_shader_stage stage,
470 struct gl_program_constants *prog)
471 {
472 prog->MaxInstructions = MAX_PROGRAM_INSTRUCTIONS;
473 prog->MaxAluInstructions = MAX_PROGRAM_INSTRUCTIONS;
474 prog->MaxTexInstructions = MAX_PROGRAM_INSTRUCTIONS;
475 prog->MaxTexIndirections = MAX_PROGRAM_INSTRUCTIONS;
476 prog->MaxTemps = MAX_PROGRAM_TEMPS;
477 prog->MaxEnvParams = MAX_PROGRAM_ENV_PARAMS;
478 prog->MaxLocalParams = MAX_PROGRAM_LOCAL_PARAMS;
479 prog->MaxAddressOffset = MAX_PROGRAM_LOCAL_PARAMS;
480
481 switch (stage) {
482 case MESA_SHADER_VERTEX:
483 prog->MaxParameters = MAX_VERTEX_PROGRAM_PARAMS;
484 prog->MaxAttribs = MAX_VERTEX_GENERIC_ATTRIBS;
485 prog->MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
486 prog->MaxUniformComponents = 4 * MAX_UNIFORMS;
487 prog->MaxInputComponents = 0; /* value not used */
488 prog->MaxOutputComponents = 16 * 4; /* old limit not to break tnl and swrast */
489 break;
490 case MESA_SHADER_FRAGMENT:
491 prog->MaxParameters = MAX_NV_FRAGMENT_PROGRAM_PARAMS;
492 prog->MaxAttribs = MAX_NV_FRAGMENT_PROGRAM_INPUTS;
493 prog->MaxAddressRegs = MAX_FRAGMENT_PROGRAM_ADDRESS_REGS;
494 prog->MaxUniformComponents = 4 * MAX_UNIFORMS;
495 prog->MaxInputComponents = 16 * 4; /* old limit not to break tnl and swrast */
496 prog->MaxOutputComponents = 0; /* value not used */
497 break;
498 case MESA_SHADER_GEOMETRY:
499 prog->MaxParameters = MAX_VERTEX_PROGRAM_PARAMS;
500 prog->MaxAttribs = MAX_VERTEX_GENERIC_ATTRIBS;
501 prog->MaxAddressRegs = MAX_VERTEX_PROGRAM_ADDRESS_REGS;
502 prog->MaxUniformComponents = 4 * MAX_UNIFORMS;
503 prog->MaxInputComponents = 16 * 4; /* old limit not to break tnl and swrast */
504 prog->MaxOutputComponents = 16 * 4; /* old limit not to break tnl and swrast */
505 break;
506 case MESA_SHADER_COMPUTE:
507 prog->MaxParameters = 0; /* not meaningful for compute shaders */
508 prog->MaxAttribs = 0; /* not meaningful for compute shaders */
509 prog->MaxAddressRegs = 0; /* not meaningful for compute shaders */
510 prog->MaxUniformComponents = 4 * MAX_UNIFORMS;
511 prog->MaxInputComponents = 0; /* not meaningful for compute shaders */
512 prog->MaxOutputComponents = 0; /* not meaningful for compute shaders */
513 break;
514 default:
515 assert(0 && "Bad shader stage in init_program_limits()");
516 }
517
518 /* Set the native limits to zero. This implies that there is no native
519 * support for shaders. Let the drivers fill in the actual values.
520 */
521 prog->MaxNativeInstructions = 0;
522 prog->MaxNativeAluInstructions = 0;
523 prog->MaxNativeTexInstructions = 0;
524 prog->MaxNativeTexIndirections = 0;
525 prog->MaxNativeAttribs = 0;
526 prog->MaxNativeTemps = 0;
527 prog->MaxNativeAddressRegs = 0;
528 prog->MaxNativeParameters = 0;
529
530 /* Set GLSL datatype range/precision info assuming IEEE float values.
531 * Drivers should override these defaults as needed.
532 */
533 prog->MediumFloat.RangeMin = 127;
534 prog->MediumFloat.RangeMax = 127;
535 prog->MediumFloat.Precision = 23;
536 prog->LowFloat = prog->HighFloat = prog->MediumFloat;
537
538 /* Assume ints are stored as floats for now, since this is the least-common
539 * denominator. The OpenGL ES spec implies (page 132) that the precision
540 * of integer types should be 0. Practically speaking, IEEE
541 * single-precision floating point values can only store integers in the
542 * range [-0x01000000, 0x01000000] without loss of precision.
543 */
544 prog->MediumInt.RangeMin = 24;
545 prog->MediumInt.RangeMax = 24;
546 prog->MediumInt.Precision = 0;
547 prog->LowInt = prog->HighInt = prog->MediumInt;
548
549 prog->MaxUniformBlocks = 12;
550 prog->MaxCombinedUniformComponents = (prog->MaxUniformComponents +
551 consts->MaxUniformBlockSize / 4 *
552 prog->MaxUniformBlocks);
553
554 prog->MaxAtomicBuffers = 0;
555 prog->MaxAtomicCounters = 0;
556 }
557
558
559 /**
560 * Initialize fields of gl_constants (aka ctx->Const.*).
561 * Use defaults from config.h. The device drivers will often override
562 * some of these values (such as number of texture units).
563 */
564 void
565 _mesa_init_constants(struct gl_constants *consts, gl_api api)
566 {
567 int i;
568 assert(consts);
569
570 /* Constants, may be overriden (usually only reduced) by device drivers */
571 consts->MaxTextureMbytes = MAX_TEXTURE_MBYTES;
572 consts->MaxTextureLevels = MAX_TEXTURE_LEVELS;
573 consts->Max3DTextureLevels = MAX_3D_TEXTURE_LEVELS;
574 consts->MaxCubeTextureLevels = MAX_CUBE_TEXTURE_LEVELS;
575 consts->MaxTextureRectSize = MAX_TEXTURE_RECT_SIZE;
576 consts->MaxArrayTextureLayers = MAX_ARRAY_TEXTURE_LAYERS;
577 consts->MaxTextureCoordUnits = MAX_TEXTURE_COORD_UNITS;
578 consts->Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
579 consts->MaxTextureUnits = MIN2(consts->MaxTextureCoordUnits,
580 consts->Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits);
581 consts->MaxTextureMaxAnisotropy = MAX_TEXTURE_MAX_ANISOTROPY;
582 consts->MaxTextureLodBias = MAX_TEXTURE_LOD_BIAS;
583 consts->MaxTextureBufferSize = 65536;
584 consts->TextureBufferOffsetAlignment = 1;
585 consts->MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE;
586 consts->SubPixelBits = SUB_PIXEL_BITS;
587 consts->MinPointSize = MIN_POINT_SIZE;
588 consts->MaxPointSize = MAX_POINT_SIZE;
589 consts->MinPointSizeAA = MIN_POINT_SIZE;
590 consts->MaxPointSizeAA = MAX_POINT_SIZE;
591 consts->PointSizeGranularity = (GLfloat) POINT_SIZE_GRANULARITY;
592 consts->MinLineWidth = MIN_LINE_WIDTH;
593 consts->MaxLineWidth = MAX_LINE_WIDTH;
594 consts->MinLineWidthAA = MIN_LINE_WIDTH;
595 consts->MaxLineWidthAA = MAX_LINE_WIDTH;
596 consts->LineWidthGranularity = (GLfloat) LINE_WIDTH_GRANULARITY;
597 consts->MaxClipPlanes = 6;
598 consts->MaxLights = MAX_LIGHTS;
599 consts->MaxShininess = 128.0;
600 consts->MaxSpotExponent = 128.0;
601 consts->MaxViewportWidth = MAX_VIEWPORT_WIDTH;
602 consts->MaxViewportHeight = MAX_VIEWPORT_HEIGHT;
603 consts->MinMapBufferAlignment = 64;
604
605 /* Driver must override these values if ARB_viewport_array is supported. */
606 consts->MaxViewports = 1;
607 consts->ViewportSubpixelBits = 0;
608 consts->ViewportBounds.Min = 0;
609 consts->ViewportBounds.Max = 0;
610
611 /** GL_ARB_uniform_buffer_object */
612 consts->MaxCombinedUniformBlocks = 36;
613 consts->MaxUniformBufferBindings = 36;
614 consts->MaxUniformBlockSize = 16384;
615 consts->UniformBufferOffsetAlignment = 1;
616
617 /* GL_ARB_explicit_uniform_location, GL_MAX_UNIFORM_LOCATIONS */
618 consts->MaxUserAssignableUniformLocations =
619 4 * MESA_SHADER_STAGES * MAX_UNIFORMS;
620
621 for (i = 0; i < MESA_SHADER_STAGES; i++)
622 init_program_limits(consts, i, &consts->Program[i]);
623
624 consts->MaxProgramMatrices = MAX_PROGRAM_MATRICES;
625 consts->MaxProgramMatrixStackDepth = MAX_PROGRAM_MATRIX_STACK_DEPTH;
626
627 /* Assume that if GLSL 1.30+ (or GLSL ES 3.00+) is supported that
628 * gl_VertexID is implemented using a native hardware register with OpenGL
629 * semantics.
630 */
631 consts->VertexID_is_zero_based = false;
632
633 /* GL_ARB_draw_buffers */
634 consts->MaxDrawBuffers = MAX_DRAW_BUFFERS;
635
636 consts->MaxColorAttachments = MAX_COLOR_ATTACHMENTS;
637 consts->MaxRenderbufferSize = MAX_RENDERBUFFER_SIZE;
638
639 consts->Program[MESA_SHADER_VERTEX].MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
640 consts->MaxCombinedTextureImageUnits = MAX_COMBINED_TEXTURE_IMAGE_UNITS;
641 consts->MaxVarying = 16; /* old limit not to break tnl and swrast */
642 consts->Program[MESA_SHADER_GEOMETRY].MaxTextureImageUnits = MAX_TEXTURE_IMAGE_UNITS;
643 consts->MaxGeometryOutputVertices = MAX_GEOMETRY_OUTPUT_VERTICES;
644 consts->MaxGeometryTotalOutputComponents = MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS;
645
646 /* Shading language version */
647 consts->GLSLVersion = 120;
648 _mesa_override_glsl_version(consts);
649
650 #ifdef DEBUG
651 consts->GenerateTemporaryNames = true;
652 #else
653 consts->GenerateTemporaryNames = false;
654 #endif
655
656 /* GL_ARB_framebuffer_object */
657 consts->MaxSamples = 0;
658
659 /* GLSL default if NativeIntegers == FALSE */
660 consts->UniformBooleanTrue = FLOAT_AS_UNION(1.0f).u;
661
662 /* GL_ARB_sync */
663 consts->MaxServerWaitTimeout = 0x1fff7fffffffULL;
664
665 /* GL_EXT_provoking_vertex */
666 consts->QuadsFollowProvokingVertexConvention = GL_TRUE;
667
668 /* GL_EXT_transform_feedback */
669 consts->MaxTransformFeedbackBuffers = MAX_FEEDBACK_BUFFERS;
670 consts->MaxTransformFeedbackSeparateComponents = 4 * MAX_FEEDBACK_ATTRIBS;
671 consts->MaxTransformFeedbackInterleavedComponents = 4 * MAX_FEEDBACK_ATTRIBS;
672 consts->MaxVertexStreams = 1;
673
674 /* GL 3.2 */
675 consts->ProfileMask = api == API_OPENGL_CORE
676 ? GL_CONTEXT_CORE_PROFILE_BIT
677 : GL_CONTEXT_COMPATIBILITY_PROFILE_BIT;
678
679 /* GL 4.4 */
680 consts->MaxVertexAttribStride = 2048;
681
682 /** GL_EXT_gpu_shader4 */
683 consts->MinProgramTexelOffset = -8;
684 consts->MaxProgramTexelOffset = 7;
685
686 /* GL_ARB_texture_gather */
687 consts->MinProgramTextureGatherOffset = -8;
688 consts->MaxProgramTextureGatherOffset = 7;
689
690 /* GL_ARB_robustness */
691 consts->ResetStrategy = GL_NO_RESET_NOTIFICATION_ARB;
692
693 /* ES 3.0 or ARB_ES3_compatibility */
694 consts->MaxElementIndex = 0xffffffffu;
695
696 /* GL_ARB_texture_multisample */
697 consts->MaxColorTextureSamples = 1;
698 consts->MaxDepthTextureSamples = 1;
699 consts->MaxIntegerSamples = 1;
700
701 /* GL_ARB_shader_atomic_counters */
702 consts->MaxAtomicBufferBindings = MAX_COMBINED_ATOMIC_BUFFERS;
703 consts->MaxAtomicBufferSize = MAX_ATOMIC_COUNTERS * ATOMIC_COUNTER_SIZE;
704 consts->MaxCombinedAtomicBuffers = MAX_COMBINED_ATOMIC_BUFFERS;
705 consts->MaxCombinedAtomicCounters = MAX_ATOMIC_COUNTERS;
706
707 /* GL_ARB_vertex_attrib_binding */
708 consts->MaxVertexAttribRelativeOffset = 2047;
709 consts->MaxVertexAttribBindings = MAX_VERTEX_GENERIC_ATTRIBS;
710
711 /* GL_ARB_compute_shader */
712 consts->MaxComputeWorkGroupCount[0] = 65535;
713 consts->MaxComputeWorkGroupCount[1] = 65535;
714 consts->MaxComputeWorkGroupCount[2] = 65535;
715 consts->MaxComputeWorkGroupSize[0] = 1024;
716 consts->MaxComputeWorkGroupSize[1] = 1024;
717 consts->MaxComputeWorkGroupSize[2] = 64;
718 consts->MaxComputeWorkGroupInvocations = 1024;
719
720 /** GL_ARB_gpu_shader5 */
721 consts->MinFragmentInterpolationOffset = MIN_FRAGMENT_INTERPOLATION_OFFSET;
722 consts->MaxFragmentInterpolationOffset = MAX_FRAGMENT_INTERPOLATION_OFFSET;
723
724 /** GL_KHR_context_flush_control */
725 consts->ContextReleaseBehavior = GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH;
726 }
727
728
729 /**
730 * Do some sanity checks on the limits/constants for the given context.
731 * Only called the first time a context is bound.
732 */
733 static void
734 check_context_limits(struct gl_context *ctx)
735 {
736 (void) ctx;
737
738 /* check that we don't exceed the size of various bitfields */
739 assert(VARYING_SLOT_MAX <=
740 (8 * sizeof(ctx->VertexProgram._Current->Base.OutputsWritten)));
741 assert(VARYING_SLOT_MAX <=
742 (8 * sizeof(ctx->FragmentProgram._Current->Base.InputsRead)));
743
744 /* shader-related checks */
745 assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
746 assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxLocalParams <= MAX_PROGRAM_LOCAL_PARAMS);
747
748 /* Texture unit checks */
749 assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits > 0);
750 assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits <= MAX_TEXTURE_IMAGE_UNITS);
751 assert(ctx->Const.MaxTextureCoordUnits > 0);
752 assert(ctx->Const.MaxTextureCoordUnits <= MAX_TEXTURE_COORD_UNITS);
753 assert(ctx->Const.MaxTextureUnits > 0);
754 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_IMAGE_UNITS);
755 assert(ctx->Const.MaxTextureUnits <= MAX_TEXTURE_COORD_UNITS);
756 assert(ctx->Const.MaxTextureUnits == MIN2(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits,
757 ctx->Const.MaxTextureCoordUnits));
758 assert(ctx->Const.MaxCombinedTextureImageUnits > 0);
759 assert(ctx->Const.MaxCombinedTextureImageUnits <= MAX_COMBINED_TEXTURE_IMAGE_UNITS);
760 assert(ctx->Const.MaxTextureCoordUnits <= MAX_COMBINED_TEXTURE_IMAGE_UNITS);
761 /* number of coord units cannot be greater than number of image units */
762 assert(ctx->Const.MaxTextureCoordUnits <= ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTextureImageUnits);
763
764
765 /* Texture size checks */
766 assert(ctx->Const.MaxTextureLevels <= MAX_TEXTURE_LEVELS);
767 assert(ctx->Const.Max3DTextureLevels <= MAX_3D_TEXTURE_LEVELS);
768 assert(ctx->Const.MaxCubeTextureLevels <= MAX_CUBE_TEXTURE_LEVELS);
769 assert(ctx->Const.MaxTextureRectSize <= MAX_TEXTURE_RECT_SIZE);
770
771 /* Texture level checks */
772 assert(MAX_TEXTURE_LEVELS >= MAX_3D_TEXTURE_LEVELS);
773 assert(MAX_TEXTURE_LEVELS >= MAX_CUBE_TEXTURE_LEVELS);
774
775 /* Max texture size should be <= max viewport size (render to texture) */
776 assert((1U << (ctx->Const.MaxTextureLevels - 1))
777 <= ctx->Const.MaxViewportWidth);
778 assert((1U << (ctx->Const.MaxTextureLevels - 1))
779 <= ctx->Const.MaxViewportHeight);
780
781 assert(ctx->Const.MaxDrawBuffers <= MAX_DRAW_BUFFERS);
782
783 /* if this fails, add more enum values to gl_buffer_index */
784 assert(BUFFER_COLOR0 + MAX_DRAW_BUFFERS <= BUFFER_COUNT);
785
786 /* XXX probably add more tests */
787 }
788
789
790 /**
791 * Initialize the attribute groups in a GL context.
792 *
793 * \param ctx GL context.
794 *
795 * Initializes all the attributes, calling the respective <tt>init*</tt>
796 * functions for the more complex data structures.
797 */
798 static GLboolean
799 init_attrib_groups(struct gl_context *ctx)
800 {
801 assert(ctx);
802
803 /* Constants */
804 _mesa_init_constants(&ctx->Const, ctx->API);
805
806 /* Extensions */
807 _mesa_init_extensions(&ctx->Extensions);
808
809 /* Attribute Groups */
810 _mesa_init_accum( ctx );
811 _mesa_init_attrib( ctx );
812 _mesa_init_buffer_objects( ctx );
813 _mesa_init_color( ctx );
814 _mesa_init_current( ctx );
815 _mesa_init_depth( ctx );
816 _mesa_init_debug( ctx );
817 _mesa_init_display_list( ctx );
818 _mesa_init_errors( ctx );
819 _mesa_init_eval( ctx );
820 _mesa_init_fbobjects( ctx );
821 _mesa_init_feedback( ctx );
822 _mesa_init_fog( ctx );
823 _mesa_init_hint( ctx );
824 _mesa_init_line( ctx );
825 _mesa_init_lighting( ctx );
826 _mesa_init_matrix( ctx );
827 _mesa_init_multisample( ctx );
828 _mesa_init_performance_monitors( ctx );
829 _mesa_init_pipeline( ctx );
830 _mesa_init_pixel( ctx );
831 _mesa_init_pixelstore( ctx );
832 _mesa_init_point( ctx );
833 _mesa_init_polygon( ctx );
834 _mesa_init_program( ctx );
835 _mesa_init_queryobj( ctx );
836 _mesa_init_sync( ctx );
837 _mesa_init_rastpos( ctx );
838 _mesa_init_scissor( ctx );
839 _mesa_init_shader_state( ctx );
840 _mesa_init_stencil( ctx );
841 _mesa_init_transform( ctx );
842 _mesa_init_transform_feedback( ctx );
843 _mesa_init_varray( ctx );
844 _mesa_init_viewport( ctx );
845
846 if (!_mesa_init_texture( ctx ))
847 return GL_FALSE;
848
849 _mesa_init_texture_s3tc( ctx );
850
851 /* Miscellaneous */
852 ctx->NewState = _NEW_ALL;
853 ctx->NewDriverState = ~0;
854 ctx->ErrorValue = GL_NO_ERROR;
855 ctx->ShareGroupReset = false;
856 ctx->varying_vp_inputs = VERT_BIT_ALL;
857
858 return GL_TRUE;
859 }
860
861
862 /**
863 * Update default objects in a GL context with respect to shared state.
864 *
865 * \param ctx GL context.
866 *
867 * Removes references to old default objects, (texture objects, program
868 * objects, etc.) and changes to reference those from the current shared
869 * state.
870 */
871 static GLboolean
872 update_default_objects(struct gl_context *ctx)
873 {
874 assert(ctx);
875
876 _mesa_update_default_objects_program(ctx);
877 _mesa_update_default_objects_texture(ctx);
878 _mesa_update_default_objects_buffer_objects(ctx);
879
880 return GL_TRUE;
881 }
882
883
884 /**
885 * This function is called by the glapi no-op functions. For each OpenGL
886 * function/entrypoint there's a simple no-op function. These "no-op"
887 * functions call this function.
888 *
889 * If there's a current OpenGL context for the calling thread, we record a
890 * GL_INVALID_OPERATION error. This can happen either because the app's
891 * calling an unsupported extension function, or calling an illegal function
892 * (such as glClear between glBegin/glEnd).
893 *
894 * If there's no current OpenGL context for the calling thread, we can
895 * print a message to stderr.
896 *
897 * \param name the name of the OpenGL function, without the "gl" prefix
898 */
899 static void
900 nop_handler(const char *name)
901 {
902 GET_CURRENT_CONTEXT(ctx);
903 if (ctx) {
904 _mesa_error(ctx, GL_INVALID_OPERATION, "gl%s(invalid call)", name);
905 }
906 #if defined(DEBUG)
907 else if (getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) {
908 fprintf(stderr,
909 "GL User Error: gl%s called without a rendering context\n",
910 name);
911 fflush(stderr);
912 }
913 #endif
914 }
915
916
917 /**
918 * Special no-op glFlush, see below.
919 */
920 #if defined(_WIN32)
921 static void GLAPIENTRY
922 nop_glFlush(void)
923 {
924 /* don't record an error like we do in _mesa_generic_nop() */
925 }
926 #endif
927
928
929 /**
930 * Allocate and initialize a new dispatch table. The table will be
931 * populated with pointers to "no-op" functions. In turn, the no-op
932 * functions will call nop_handler() above.
933 */
934 static struct _glapi_table *
935 alloc_dispatch_table(void)
936 {
937 /* Find the larger of Mesa's dispatch table and libGL's dispatch table.
938 * In practice, this'll be the same for stand-alone Mesa. But for DRI
939 * Mesa we do this to accomodate different versions of libGL and various
940 * DRI drivers.
941 */
942 GLint numEntries = MAX2(_glapi_get_dispatch_table_size(), _gloffset_COUNT);
943 struct _glapi_table *table = _glapi_new_nop_table(numEntries);
944
945 #if defined(_WIN32)
946 if (table) {
947 /* This is a special case for Windows in the event that
948 * wglGetProcAddress is called between glBegin/End().
949 *
950 * The MS opengl32.dll library apparently calls glFlush from
951 * wglGetProcAddress(). If we're inside glBegin/End(), glFlush
952 * will dispatch to _mesa_generic_nop() and we'll generate a
953 * GL_INVALID_OPERATION error.
954 *
955 * The specific case which hits this is piglit's primitive-restart
956 * test which calls glPrimitiveRestartNV() inside glBegin/End. The
957 * first time we call glPrimitiveRestartNV() Piglit's API dispatch
958 * code will try to resolve the function by calling wglGetProcAddress.
959 * This raises GL_INVALID_OPERATION and an assert(glGetError()==0)
960 * will fail causing the test to fail. By suppressing the error, the
961 * assertion passes and the test continues.
962 */
963 SET_Flush(table, nop_glFlush);
964 }
965 #endif
966
967 _glapi_set_nop_handler(nop_handler);
968
969 return table;
970 }
971
972 /**
973 * Creates a minimal dispatch table for use within glBegin()/glEnd().
974 *
975 * This ensures that we generate GL_INVALID_OPERATION errors from most
976 * functions, since the set of functions that are valid within Begin/End is
977 * very small.
978 *
979 * From the GL 1.0 specification section 2.6.3, "GL Commands within
980 * Begin/End"
981 *
982 * "The only GL commands that are allowed within any Begin/End pairs are
983 * the commands for specifying vertex coordinates, vertex color, normal
984 * coordinates, and texture coordinates (Vertex, Color, Index, Normal,
985 * TexCoord), EvalCoord and EvalPoint commands (see section 5.1),
986 * commands for specifying lighting material parameters (Material
987 * commands see section 2.12.2), display list invocation commands
988 * (CallList and CallLists see section 5.4), and the EdgeFlag
989 * command. Executing Begin after Begin has already been executed but
990 * before an End is issued generates the INVALID OPERATION error, as does
991 * executing End without a previous corresponding Begin. Executing any
992 * other GL command within Begin/End results in the error INVALID
993 * OPERATION."
994 *
995 * The table entries for specifying vertex attributes are set up by
996 * install_vtxfmt() and _mesa_loopback_init_api_table(), and End() and dlists
997 * are set by install_vtxfmt() as well.
998 */
999 static struct _glapi_table *
1000 create_beginend_table(const struct gl_context *ctx)
1001 {
1002 struct _glapi_table *table;
1003
1004 table = alloc_dispatch_table();
1005 if (!table)
1006 return NULL;
1007
1008 /* Fill in functions which return a value, since they should return some
1009 * specific value even if they emit a GL_INVALID_OPERATION error from them
1010 * being called within glBegin()/glEnd().
1011 */
1012 #define COPY_DISPATCH(func) SET_##func(table, GET_##func(ctx->Exec))
1013
1014 COPY_DISPATCH(GenLists);
1015 COPY_DISPATCH(IsProgram);
1016 COPY_DISPATCH(IsVertexArray);
1017 COPY_DISPATCH(IsBuffer);
1018 COPY_DISPATCH(IsEnabled);
1019 COPY_DISPATCH(IsEnabledi);
1020 COPY_DISPATCH(IsRenderbuffer);
1021 COPY_DISPATCH(IsFramebuffer);
1022 COPY_DISPATCH(CheckFramebufferStatus);
1023 COPY_DISPATCH(RenderMode);
1024 COPY_DISPATCH(GetString);
1025 COPY_DISPATCH(GetStringi);
1026 COPY_DISPATCH(GetPointerv);
1027 COPY_DISPATCH(IsQuery);
1028 COPY_DISPATCH(IsSampler);
1029 COPY_DISPATCH(IsSync);
1030 COPY_DISPATCH(IsTexture);
1031 COPY_DISPATCH(IsTransformFeedback);
1032 COPY_DISPATCH(DeleteQueries);
1033 COPY_DISPATCH(AreTexturesResident);
1034 COPY_DISPATCH(FenceSync);
1035 COPY_DISPATCH(ClientWaitSync);
1036 COPY_DISPATCH(MapBuffer);
1037 COPY_DISPATCH(UnmapBuffer);
1038 COPY_DISPATCH(MapBufferRange);
1039 COPY_DISPATCH(ObjectPurgeableAPPLE);
1040 COPY_DISPATCH(ObjectUnpurgeableAPPLE);
1041
1042 _mesa_loopback_init_api_table(ctx, table);
1043
1044 return table;
1045 }
1046
1047 void
1048 _mesa_initialize_dispatch_tables(struct gl_context *ctx)
1049 {
1050 /* Do the code-generated setup of the exec table in api_exec.c. */
1051 _mesa_initialize_exec_table(ctx);
1052
1053 if (ctx->Save)
1054 _mesa_initialize_save_table(ctx);
1055 }
1056
1057 /**
1058 * Initialize a struct gl_context struct (rendering context).
1059 *
1060 * This includes allocating all the other structs and arrays which hang off of
1061 * the context by pointers.
1062 * Note that the driver needs to pass in its dd_function_table here since
1063 * we need to at least call driverFunctions->NewTextureObject to create the
1064 * default texture objects.
1065 *
1066 * Called by _mesa_create_context().
1067 *
1068 * Performs the imports and exports callback tables initialization, and
1069 * miscellaneous one-time initializations. If no shared context is supplied one
1070 * is allocated, and increase its reference count. Setups the GL API dispatch
1071 * tables. Initialize the TNL module. Sets the maximum Z buffer depth.
1072 * Finally queries the \c MESA_DEBUG and \c MESA_VERBOSE environment variables
1073 * for debug flags.
1074 *
1075 * \param ctx the context to initialize
1076 * \param api the GL API type to create the context for
1077 * \param visual describes the visual attributes for this context or NULL to
1078 * create a configless context
1079 * \param share_list points to context to share textures, display lists,
1080 * etc with, or NULL
1081 * \param driverFunctions table of device driver functions for this context
1082 * to use
1083 */
1084 GLboolean
1085 _mesa_initialize_context(struct gl_context *ctx,
1086 gl_api api,
1087 const struct gl_config *visual,
1088 struct gl_context *share_list,
1089 const struct dd_function_table *driverFunctions)
1090 {
1091 struct gl_shared_state *shared;
1092 int i;
1093
1094 assert(driverFunctions->NewTextureObject);
1095 assert(driverFunctions->FreeTextureImageBuffer);
1096
1097 ctx->API = api;
1098 ctx->DrawBuffer = NULL;
1099 ctx->ReadBuffer = NULL;
1100 ctx->WinSysDrawBuffer = NULL;
1101 ctx->WinSysReadBuffer = NULL;
1102
1103 if (visual) {
1104 ctx->Visual = *visual;
1105 ctx->HasConfig = GL_TRUE;
1106 }
1107 else {
1108 memset(&ctx->Visual, 0, sizeof ctx->Visual);
1109 ctx->HasConfig = GL_FALSE;
1110 }
1111
1112 if (_mesa_is_desktop_gl(ctx)) {
1113 _mesa_override_gl_version(ctx);
1114 }
1115
1116 /* misc one-time initializations */
1117 one_time_init(ctx);
1118
1119 /* Plug in driver functions and context pointer here.
1120 * This is important because when we call alloc_shared_state() below
1121 * we'll call ctx->Driver.NewTextureObject() to create the default
1122 * textures.
1123 */
1124 ctx->Driver = *driverFunctions;
1125
1126 if (share_list) {
1127 /* share state with another context */
1128 shared = share_list->Shared;
1129 }
1130 else {
1131 /* allocate new, unshared state */
1132 shared = _mesa_alloc_shared_state(ctx);
1133 if (!shared)
1134 return GL_FALSE;
1135 }
1136
1137 _mesa_reference_shared_state(ctx, &ctx->Shared, shared);
1138
1139 if (!init_attrib_groups( ctx ))
1140 goto fail;
1141
1142 /* setup the API dispatch tables with all nop functions */
1143 ctx->OutsideBeginEnd = alloc_dispatch_table();
1144 if (!ctx->OutsideBeginEnd)
1145 goto fail;
1146 ctx->Exec = ctx->OutsideBeginEnd;
1147 ctx->CurrentDispatch = ctx->OutsideBeginEnd;
1148
1149 ctx->FragmentProgram._MaintainTexEnvProgram
1150 = (getenv("MESA_TEX_PROG") != NULL);
1151
1152 ctx->VertexProgram._MaintainTnlProgram
1153 = (getenv("MESA_TNL_PROG") != NULL);
1154 if (ctx->VertexProgram._MaintainTnlProgram) {
1155 /* this is required... */
1156 ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
1157 }
1158
1159 /* Mesa core handles all the formats that mesa core knows about.
1160 * Drivers will want to override this list with just the formats
1161 * they can handle, and confirm that appropriate fallbacks exist in
1162 * _mesa_choose_tex_format().
1163 */
1164 memset(&ctx->TextureFormatSupported, GL_TRUE,
1165 sizeof(ctx->TextureFormatSupported));
1166
1167 switch (ctx->API) {
1168 case API_OPENGL_COMPAT:
1169 ctx->BeginEnd = create_beginend_table(ctx);
1170 ctx->Save = alloc_dispatch_table();
1171 if (!ctx->BeginEnd || !ctx->Save)
1172 goto fail;
1173
1174 /* fall-through */
1175 case API_OPENGL_CORE:
1176 break;
1177 case API_OPENGLES:
1178 /**
1179 * GL_OES_texture_cube_map says
1180 * "Initially all texture generation modes are set to REFLECTION_MAP_OES"
1181 */
1182 for (i = 0; i < MAX_TEXTURE_UNITS; i++) {
1183 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[i];
1184 texUnit->GenS.Mode = GL_REFLECTION_MAP_NV;
1185 texUnit->GenT.Mode = GL_REFLECTION_MAP_NV;
1186 texUnit->GenR.Mode = GL_REFLECTION_MAP_NV;
1187 texUnit->GenS._ModeBit = TEXGEN_REFLECTION_MAP_NV;
1188 texUnit->GenT._ModeBit = TEXGEN_REFLECTION_MAP_NV;
1189 texUnit->GenR._ModeBit = TEXGEN_REFLECTION_MAP_NV;
1190 }
1191 break;
1192 case API_OPENGLES2:
1193 ctx->FragmentProgram._MaintainTexEnvProgram = GL_TRUE;
1194 ctx->VertexProgram._MaintainTnlProgram = GL_TRUE;
1195 break;
1196 }
1197
1198 ctx->FirstTimeCurrent = GL_TRUE;
1199
1200 return GL_TRUE;
1201
1202 fail:
1203 _mesa_reference_shared_state(ctx, &ctx->Shared, NULL);
1204 free(ctx->BeginEnd);
1205 free(ctx->OutsideBeginEnd);
1206 free(ctx->Save);
1207 return GL_FALSE;
1208 }
1209
1210
1211 /**
1212 * Allocate and initialize a struct gl_context structure.
1213 * Note that the driver needs to pass in its dd_function_table here since
1214 * we need to at least call driverFunctions->NewTextureObject to initialize
1215 * the rendering context.
1216 *
1217 * \param api the GL API type to create the context for
1218 * \param visual a struct gl_config pointer (we copy the struct contents) or
1219 * NULL to create a configless context
1220 * \param share_list another context to share display lists with or NULL
1221 * \param driverFunctions points to the dd_function_table into which the
1222 * driver has plugged in all its special functions.
1223 *
1224 * \return pointer to a new __struct gl_contextRec or NULL if error.
1225 */
1226 struct gl_context *
1227 _mesa_create_context(gl_api api,
1228 const struct gl_config *visual,
1229 struct gl_context *share_list,
1230 const struct dd_function_table *driverFunctions)
1231 {
1232 struct gl_context *ctx;
1233
1234 ctx = calloc(1, sizeof(struct gl_context));
1235 if (!ctx)
1236 return NULL;
1237
1238 if (_mesa_initialize_context(ctx, api, visual, share_list,
1239 driverFunctions)) {
1240 return ctx;
1241 }
1242 else {
1243 free(ctx);
1244 return NULL;
1245 }
1246 }
1247
1248
1249 /**
1250 * Free the data associated with the given context.
1251 *
1252 * But doesn't free the struct gl_context struct itself.
1253 *
1254 * \sa _mesa_initialize_context() and init_attrib_groups().
1255 */
1256 void
1257 _mesa_free_context_data( struct gl_context *ctx )
1258 {
1259 if (!_mesa_get_current_context()){
1260 /* No current context, but we may need one in order to delete
1261 * texture objs, etc. So temporarily bind the context now.
1262 */
1263 _mesa_make_current(ctx, NULL, NULL);
1264 }
1265
1266 /* unreference WinSysDraw/Read buffers */
1267 _mesa_reference_framebuffer(&ctx->WinSysDrawBuffer, NULL);
1268 _mesa_reference_framebuffer(&ctx->WinSysReadBuffer, NULL);
1269 _mesa_reference_framebuffer(&ctx->DrawBuffer, NULL);
1270 _mesa_reference_framebuffer(&ctx->ReadBuffer, NULL);
1271
1272 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
1273 _mesa_reference_vertprog(ctx, &ctx->VertexProgram._Current, NULL);
1274 _mesa_reference_vertprog(ctx, &ctx->VertexProgram._TnlProgram, NULL);
1275
1276 _mesa_reference_geomprog(ctx, &ctx->GeometryProgram.Current, NULL);
1277 _mesa_reference_geomprog(ctx, &ctx->GeometryProgram._Current, NULL);
1278
1279 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL);
1280 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._Current, NULL);
1281 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram._TexEnvProgram, NULL);
1282
1283 _mesa_reference_vao(ctx, &ctx->Array.VAO, NULL);
1284 _mesa_reference_vao(ctx, &ctx->Array.DefaultVAO, NULL);
1285
1286 _mesa_free_attrib_data(ctx);
1287 _mesa_free_buffer_objects(ctx);
1288 _mesa_free_eval_data( ctx );
1289 _mesa_free_texture_data( ctx );
1290 _mesa_free_matrix_data( ctx );
1291 _mesa_free_viewport_data( ctx );
1292 _mesa_free_pipeline_data(ctx);
1293 _mesa_free_program_data(ctx);
1294 _mesa_free_shader_state(ctx);
1295 _mesa_free_queryobj_data(ctx);
1296 _mesa_free_sync_data(ctx);
1297 _mesa_free_varray_data(ctx);
1298 _mesa_free_transform_feedback(ctx);
1299 _mesa_free_performance_monitors(ctx);
1300
1301 _mesa_reference_buffer_object(ctx, &ctx->Pack.BufferObj, NULL);
1302 _mesa_reference_buffer_object(ctx, &ctx->Unpack.BufferObj, NULL);
1303 _mesa_reference_buffer_object(ctx, &ctx->DefaultPacking.BufferObj, NULL);
1304 _mesa_reference_buffer_object(ctx, &ctx->Array.ArrayBufferObj, NULL);
1305
1306 /* free dispatch tables */
1307 free(ctx->BeginEnd);
1308 free(ctx->OutsideBeginEnd);
1309 free(ctx->Save);
1310
1311 /* Shared context state (display lists, textures, etc) */
1312 _mesa_reference_shared_state(ctx, &ctx->Shared, NULL);
1313
1314 /* needs to be after freeing shared state */
1315 _mesa_free_display_list_data(ctx);
1316
1317 _mesa_free_errors_data(ctx);
1318
1319 free((void *)ctx->Extensions.String);
1320
1321 free(ctx->VersionString);
1322
1323 /* unbind the context if it's currently bound */
1324 if (ctx == _mesa_get_current_context()) {
1325 _mesa_make_current(NULL, NULL, NULL);
1326 }
1327 }
1328
1329
1330 /**
1331 * Destroy a struct gl_context structure.
1332 *
1333 * \param ctx GL context.
1334 *
1335 * Calls _mesa_free_context_data() and frees the gl_context object itself.
1336 */
1337 void
1338 _mesa_destroy_context( struct gl_context *ctx )
1339 {
1340 if (ctx) {
1341 _mesa_free_context_data(ctx);
1342 free( (void *) ctx );
1343 }
1344 }
1345
1346
1347 /**
1348 * Copy attribute groups from one context to another.
1349 *
1350 * \param src source context
1351 * \param dst destination context
1352 * \param mask bitwise OR of GL_*_BIT flags
1353 *
1354 * According to the bits specified in \p mask, copies the corresponding
1355 * attributes from \p src into \p dst. For many of the attributes a simple \c
1356 * memcpy is not enough due to the existence of internal pointers in their data
1357 * structures.
1358 */
1359 void
1360 _mesa_copy_context( const struct gl_context *src, struct gl_context *dst,
1361 GLuint mask )
1362 {
1363 if (mask & GL_ACCUM_BUFFER_BIT) {
1364 /* OK to memcpy */
1365 dst->Accum = src->Accum;
1366 }
1367 if (mask & GL_COLOR_BUFFER_BIT) {
1368 /* OK to memcpy */
1369 dst->Color = src->Color;
1370 }
1371 if (mask & GL_CURRENT_BIT) {
1372 /* OK to memcpy */
1373 dst->Current = src->Current;
1374 }
1375 if (mask & GL_DEPTH_BUFFER_BIT) {
1376 /* OK to memcpy */
1377 dst->Depth = src->Depth;
1378 }
1379 if (mask & GL_ENABLE_BIT) {
1380 /* no op */
1381 }
1382 if (mask & GL_EVAL_BIT) {
1383 /* OK to memcpy */
1384 dst->Eval = src->Eval;
1385 }
1386 if (mask & GL_FOG_BIT) {
1387 /* OK to memcpy */
1388 dst->Fog = src->Fog;
1389 }
1390 if (mask & GL_HINT_BIT) {
1391 /* OK to memcpy */
1392 dst->Hint = src->Hint;
1393 }
1394 if (mask & GL_LIGHTING_BIT) {
1395 GLuint i;
1396 /* begin with memcpy */
1397 dst->Light = src->Light;
1398 /* fixup linked lists to prevent pointer insanity */
1399 make_empty_list( &(dst->Light.EnabledList) );
1400 for (i = 0; i < MAX_LIGHTS; i++) {
1401 if (dst->Light.Light[i].Enabled) {
1402 insert_at_tail(&(dst->Light.EnabledList), &(dst->Light.Light[i]));
1403 }
1404 }
1405 }
1406 if (mask & GL_LINE_BIT) {
1407 /* OK to memcpy */
1408 dst->Line = src->Line;
1409 }
1410 if (mask & GL_LIST_BIT) {
1411 /* OK to memcpy */
1412 dst->List = src->List;
1413 }
1414 if (mask & GL_PIXEL_MODE_BIT) {
1415 /* OK to memcpy */
1416 dst->Pixel = src->Pixel;
1417 }
1418 if (mask & GL_POINT_BIT) {
1419 /* OK to memcpy */
1420 dst->Point = src->Point;
1421 }
1422 if (mask & GL_POLYGON_BIT) {
1423 /* OK to memcpy */
1424 dst->Polygon = src->Polygon;
1425 }
1426 if (mask & GL_POLYGON_STIPPLE_BIT) {
1427 /* Use loop instead of memcpy due to problem with Portland Group's
1428 * C compiler. Reported by John Stone.
1429 */
1430 GLuint i;
1431 for (i = 0; i < 32; i++) {
1432 dst->PolygonStipple[i] = src->PolygonStipple[i];
1433 }
1434 }
1435 if (mask & GL_SCISSOR_BIT) {
1436 /* OK to memcpy */
1437 dst->Scissor = src->Scissor;
1438 }
1439 if (mask & GL_STENCIL_BUFFER_BIT) {
1440 /* OK to memcpy */
1441 dst->Stencil = src->Stencil;
1442 }
1443 if (mask & GL_TEXTURE_BIT) {
1444 /* Cannot memcpy because of pointers */
1445 _mesa_copy_texture_state(src, dst);
1446 }
1447 if (mask & GL_TRANSFORM_BIT) {
1448 /* OK to memcpy */
1449 dst->Transform = src->Transform;
1450 }
1451 if (mask & GL_VIEWPORT_BIT) {
1452 /* Cannot use memcpy, because of pointers in GLmatrix _WindowMap */
1453 unsigned i;
1454 for (i = 0; i < src->Const.MaxViewports; i++) {
1455 dst->ViewportArray[i].X = src->ViewportArray[i].X;
1456 dst->ViewportArray[i].Y = src->ViewportArray[i].Y;
1457 dst->ViewportArray[i].Width = src->ViewportArray[i].Width;
1458 dst->ViewportArray[i].Height = src->ViewportArray[i].Height;
1459 dst->ViewportArray[i].Near = src->ViewportArray[i].Near;
1460 dst->ViewportArray[i].Far = src->ViewportArray[i].Far;
1461 _math_matrix_copy(&dst->ViewportArray[i]._WindowMap,
1462 &src->ViewportArray[i]._WindowMap);
1463 }
1464 }
1465
1466 /* XXX FIXME: Call callbacks?
1467 */
1468 dst->NewState = _NEW_ALL;
1469 dst->NewDriverState = ~0;
1470 }
1471
1472
1473 /**
1474 * Check if the given context can render into the given framebuffer
1475 * by checking visual attributes.
1476 *
1477 * Most of these tests could go away because Mesa is now pretty flexible
1478 * in terms of mixing rendering contexts with framebuffers. As long
1479 * as RGB vs. CI mode agree, we're probably good.
1480 *
1481 * \return GL_TRUE if compatible, GL_FALSE otherwise.
1482 */
1483 static GLboolean
1484 check_compatible(const struct gl_context *ctx,
1485 const struct gl_framebuffer *buffer)
1486 {
1487 const struct gl_config *ctxvis = &ctx->Visual;
1488 const struct gl_config *bufvis = &buffer->Visual;
1489
1490 if (buffer == _mesa_get_incomplete_framebuffer())
1491 return GL_TRUE;
1492
1493 #if 0
1494 /* disabling this fixes the fgl_glxgears pbuffer demo */
1495 if (ctxvis->doubleBufferMode && !bufvis->doubleBufferMode)
1496 return GL_FALSE;
1497 #endif
1498 if (ctxvis->stereoMode && !bufvis->stereoMode)
1499 return GL_FALSE;
1500 if (ctxvis->haveAccumBuffer && !bufvis->haveAccumBuffer)
1501 return GL_FALSE;
1502 if (ctxvis->haveDepthBuffer && !bufvis->haveDepthBuffer)
1503 return GL_FALSE;
1504 if (ctxvis->haveStencilBuffer && !bufvis->haveStencilBuffer)
1505 return GL_FALSE;
1506 if (ctxvis->redMask && ctxvis->redMask != bufvis->redMask)
1507 return GL_FALSE;
1508 if (ctxvis->greenMask && ctxvis->greenMask != bufvis->greenMask)
1509 return GL_FALSE;
1510 if (ctxvis->blueMask && ctxvis->blueMask != bufvis->blueMask)
1511 return GL_FALSE;
1512 #if 0
1513 /* disabled (see bug 11161) */
1514 if (ctxvis->depthBits && ctxvis->depthBits != bufvis->depthBits)
1515 return GL_FALSE;
1516 #endif
1517 if (ctxvis->stencilBits && ctxvis->stencilBits != bufvis->stencilBits)
1518 return GL_FALSE;
1519
1520 return GL_TRUE;
1521 }
1522
1523
1524 /**
1525 * Check if the viewport/scissor size has not yet been initialized.
1526 * Initialize the size if the given width and height are non-zero.
1527 */
1528 void
1529 _mesa_check_init_viewport(struct gl_context *ctx, GLuint width, GLuint height)
1530 {
1531 if (!ctx->ViewportInitialized && width > 0 && height > 0) {
1532 unsigned i;
1533
1534 /* Note: set flag here, before calling _mesa_set_viewport(), to prevent
1535 * potential infinite recursion.
1536 */
1537 ctx->ViewportInitialized = GL_TRUE;
1538
1539 /* Note: ctx->Const.MaxViewports may not have been set by the driver
1540 * yet, so just initialize all of them.
1541 */
1542 for (i = 0; i < MAX_VIEWPORTS; i++) {
1543 _mesa_set_viewport(ctx, i, 0, 0, width, height);
1544 _mesa_set_scissor(ctx, i, 0, 0, width, height);
1545 }
1546 }
1547 }
1548
1549 static void
1550 handle_first_current(struct gl_context *ctx)
1551 {
1552 GLenum buffer;
1553 GLint bufferIndex;
1554
1555 if (ctx->Version == 0) {
1556 /* probably in the process of tearing down the context */
1557 return;
1558 }
1559
1560 ctx->Extensions.String = _mesa_make_extension_string(ctx);
1561
1562 check_context_limits(ctx);
1563
1564 /* According to GL_MESA_configless_context the default value of
1565 * glDrawBuffers depends on the config of the first surface it is bound to.
1566 * For GLES it is always GL_BACK which has a magic interpretation */
1567 if (!ctx->HasConfig && _mesa_is_desktop_gl(ctx)) {
1568 if (ctx->DrawBuffer != _mesa_get_incomplete_framebuffer()) {
1569 if (ctx->DrawBuffer->Visual.doubleBufferMode)
1570 buffer = GL_BACK;
1571 else
1572 buffer = GL_FRONT;
1573
1574 _mesa_drawbuffers(ctx, 1, &buffer, NULL /* destMask */);
1575 }
1576
1577 if (ctx->ReadBuffer != _mesa_get_incomplete_framebuffer()) {
1578 if (ctx->ReadBuffer->Visual.doubleBufferMode) {
1579 buffer = GL_BACK;
1580 bufferIndex = BUFFER_BACK_LEFT;
1581 }
1582 else {
1583 buffer = GL_FRONT;
1584 bufferIndex = BUFFER_FRONT_LEFT;
1585 }
1586
1587 _mesa_readbuffer(ctx, buffer, bufferIndex);
1588 }
1589 }
1590
1591 /* We can use this to help debug user's problems. Tell them to set
1592 * the MESA_INFO env variable before running their app. Then the
1593 * first time each context is made current we'll print some useful
1594 * information.
1595 */
1596 if (getenv("MESA_INFO")) {
1597 _mesa_print_info(ctx);
1598 }
1599 }
1600
1601 /**
1602 * Bind the given context to the given drawBuffer and readBuffer and
1603 * make it the current context for the calling thread.
1604 * We'll render into the drawBuffer and read pixels from the
1605 * readBuffer (i.e. glRead/CopyPixels, glCopyTexImage, etc).
1606 *
1607 * We check that the context's and framebuffer's visuals are compatible
1608 * and return immediately if they're not.
1609 *
1610 * \param newCtx the new GL context. If NULL then there will be no current GL
1611 * context.
1612 * \param drawBuffer the drawing framebuffer
1613 * \param readBuffer the reading framebuffer
1614 */
1615 GLboolean
1616 _mesa_make_current( struct gl_context *newCtx,
1617 struct gl_framebuffer *drawBuffer,
1618 struct gl_framebuffer *readBuffer )
1619 {
1620 GET_CURRENT_CONTEXT(curCtx);
1621
1622 if (MESA_VERBOSE & VERBOSE_API)
1623 _mesa_debug(newCtx, "_mesa_make_current()\n");
1624
1625 /* Check that the context's and framebuffer's visuals are compatible.
1626 */
1627 if (newCtx && drawBuffer && newCtx->WinSysDrawBuffer != drawBuffer) {
1628 if (!check_compatible(newCtx, drawBuffer)) {
1629 _mesa_warning(newCtx,
1630 "MakeCurrent: incompatible visuals for context and drawbuffer");
1631 return GL_FALSE;
1632 }
1633 }
1634 if (newCtx && readBuffer && newCtx->WinSysReadBuffer != readBuffer) {
1635 if (!check_compatible(newCtx, readBuffer)) {
1636 _mesa_warning(newCtx,
1637 "MakeCurrent: incompatible visuals for context and readbuffer");
1638 return GL_FALSE;
1639 }
1640 }
1641
1642 if (curCtx &&
1643 (curCtx->WinSysDrawBuffer || curCtx->WinSysReadBuffer) &&
1644 /* make sure this context is valid for flushing */
1645 curCtx != newCtx &&
1646 curCtx->Const.ContextReleaseBehavior ==
1647 GL_CONTEXT_RELEASE_BEHAVIOR_FLUSH)
1648 _mesa_flush(curCtx);
1649
1650 /* We used to call _glapi_check_multithread() here. Now do it in drivers */
1651 _glapi_set_context((void *) newCtx);
1652 assert(_mesa_get_current_context() == newCtx);
1653
1654 if (!newCtx) {
1655 _glapi_set_dispatch(NULL); /* none current */
1656 }
1657 else {
1658 _glapi_set_dispatch(newCtx->CurrentDispatch);
1659
1660 if (drawBuffer && readBuffer) {
1661 assert(_mesa_is_winsys_fbo(drawBuffer));
1662 assert(_mesa_is_winsys_fbo(readBuffer));
1663 _mesa_reference_framebuffer(&newCtx->WinSysDrawBuffer, drawBuffer);
1664 _mesa_reference_framebuffer(&newCtx->WinSysReadBuffer, readBuffer);
1665
1666 /*
1667 * Only set the context's Draw/ReadBuffer fields if they're NULL
1668 * or not bound to a user-created FBO.
1669 */
1670 if (!newCtx->DrawBuffer || _mesa_is_winsys_fbo(newCtx->DrawBuffer)) {
1671 _mesa_reference_framebuffer(&newCtx->DrawBuffer, drawBuffer);
1672 /* Update the FBO's list of drawbuffers/renderbuffers.
1673 * For winsys FBOs this comes from the GL state (which may have
1674 * changed since the last time this FBO was bound).
1675 */
1676 _mesa_update_draw_buffers(newCtx);
1677 }
1678 if (!newCtx->ReadBuffer || _mesa_is_winsys_fbo(newCtx->ReadBuffer)) {
1679 _mesa_reference_framebuffer(&newCtx->ReadBuffer, readBuffer);
1680 }
1681
1682 /* XXX only set this flag if we're really changing the draw/read
1683 * framebuffer bindings.
1684 */
1685 newCtx->NewState |= _NEW_BUFFERS;
1686
1687 if (drawBuffer) {
1688 _mesa_check_init_viewport(newCtx,
1689 drawBuffer->Width, drawBuffer->Height);
1690 }
1691 }
1692
1693 if (newCtx->FirstTimeCurrent) {
1694 handle_first_current(newCtx);
1695 newCtx->FirstTimeCurrent = GL_FALSE;
1696 }
1697 }
1698
1699 return GL_TRUE;
1700 }
1701
1702
1703 /**
1704 * Make context 'ctx' share the display lists, textures and programs
1705 * that are associated with 'ctxToShare'.
1706 * Any display lists, textures or programs associated with 'ctx' will
1707 * be deleted if nobody else is sharing them.
1708 */
1709 GLboolean
1710 _mesa_share_state(struct gl_context *ctx, struct gl_context *ctxToShare)
1711 {
1712 if (ctx && ctxToShare && ctx->Shared && ctxToShare->Shared) {
1713 struct gl_shared_state *oldShared = NULL;
1714
1715 /* save ref to old state to prevent it from being deleted immediately */
1716 _mesa_reference_shared_state(ctx, &oldShared, ctx->Shared);
1717
1718 /* update ctx's Shared pointer */
1719 _mesa_reference_shared_state(ctx, &ctx->Shared, ctxToShare->Shared);
1720
1721 update_default_objects(ctx);
1722
1723 /* release the old shared state */
1724 _mesa_reference_shared_state(ctx, &oldShared, NULL);
1725
1726 return GL_TRUE;
1727 }
1728 else {
1729 return GL_FALSE;
1730 }
1731 }
1732
1733
1734
1735 /**
1736 * \return pointer to the current GL context for this thread.
1737 *
1738 * Calls _glapi_get_context(). This isn't the fastest way to get the current
1739 * context. If you need speed, see the #GET_CURRENT_CONTEXT macro in
1740 * context.h.
1741 */
1742 struct gl_context *
1743 _mesa_get_current_context( void )
1744 {
1745 return (struct gl_context *) _glapi_get_context();
1746 }
1747
1748
1749 /**
1750 * Get context's current API dispatch table.
1751 *
1752 * It'll either be the immediate-mode execute dispatcher or the display list
1753 * compile dispatcher.
1754 *
1755 * \param ctx GL context.
1756 *
1757 * \return pointer to dispatch_table.
1758 *
1759 * Simply returns __struct gl_contextRec::CurrentDispatch.
1760 */
1761 struct _glapi_table *
1762 _mesa_get_dispatch(struct gl_context *ctx)
1763 {
1764 return ctx->CurrentDispatch;
1765 }
1766
1767 /*@}*/
1768
1769
1770 /**********************************************************************/
1771 /** \name Miscellaneous functions */
1772 /**********************************************************************/
1773 /*@{*/
1774
1775 /**
1776 * Record an error.
1777 *
1778 * \param ctx GL context.
1779 * \param error error code.
1780 *
1781 * Records the given error code and call the driver's dd_function_table::Error
1782 * function if defined.
1783 *
1784 * \sa
1785 * This is called via _mesa_error().
1786 */
1787 void
1788 _mesa_record_error(struct gl_context *ctx, GLenum error)
1789 {
1790 if (!ctx)
1791 return;
1792
1793 if (ctx->ErrorValue == GL_NO_ERROR) {
1794 ctx->ErrorValue = error;
1795 }
1796 }
1797
1798
1799 /**
1800 * Flush commands and wait for completion.
1801 */
1802 void
1803 _mesa_finish(struct gl_context *ctx)
1804 {
1805 FLUSH_VERTICES( ctx, 0 );
1806 FLUSH_CURRENT( ctx, 0 );
1807 if (ctx->Driver.Finish) {
1808 ctx->Driver.Finish(ctx);
1809 }
1810 }
1811
1812
1813 /**
1814 * Flush commands.
1815 */
1816 void
1817 _mesa_flush(struct gl_context *ctx)
1818 {
1819 FLUSH_VERTICES( ctx, 0 );
1820 FLUSH_CURRENT( ctx, 0 );
1821 if (ctx->Driver.Flush) {
1822 ctx->Driver.Flush(ctx);
1823 }
1824 }
1825
1826
1827
1828 /**
1829 * Execute glFinish().
1830 *
1831 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1832 * dd_function_table::Finish driver callback, if not NULL.
1833 */
1834 void GLAPIENTRY
1835 _mesa_Finish(void)
1836 {
1837 GET_CURRENT_CONTEXT(ctx);
1838 ASSERT_OUTSIDE_BEGIN_END(ctx);
1839 _mesa_finish(ctx);
1840 }
1841
1842
1843 /**
1844 * Execute glFlush().
1845 *
1846 * Calls the #ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH macro and the
1847 * dd_function_table::Flush driver callback, if not NULL.
1848 */
1849 void GLAPIENTRY
1850 _mesa_Flush(void)
1851 {
1852 GET_CURRENT_CONTEXT(ctx);
1853 ASSERT_OUTSIDE_BEGIN_END(ctx);
1854 _mesa_flush(ctx);
1855 }
1856
1857
1858 /*
1859 * ARB_blend_func_extended - ERRORS section
1860 * "The error INVALID_OPERATION is generated by Begin or any procedure that
1861 * implicitly calls Begin if any draw buffer has a blend function requiring the
1862 * second color input (SRC1_COLOR, ONE_MINUS_SRC1_COLOR, SRC1_ALPHA or
1863 * ONE_MINUS_SRC1_ALPHA), and a framebuffer is bound that has more than
1864 * the value of MAX_DUAL_SOURCE_DRAW_BUFFERS-1 active color attachements."
1865 */
1866 static GLboolean
1867 _mesa_check_blend_func_error(struct gl_context *ctx)
1868 {
1869 GLuint i;
1870 for (i = ctx->Const.MaxDualSourceDrawBuffers;
1871 i < ctx->DrawBuffer->_NumColorDrawBuffers;
1872 i++) {
1873 if (ctx->Color.Blend[i]._UsesDualSrc) {
1874 _mesa_error(ctx, GL_INVALID_OPERATION,
1875 "dual source blend on illegal attachment");
1876 return GL_FALSE;
1877 }
1878 }
1879 return GL_TRUE;
1880 }
1881
1882 static bool
1883 shader_linked_or_absent(struct gl_context *ctx,
1884 const struct gl_shader_program *shProg,
1885 bool *shader_present, const char *where)
1886 {
1887 if (shProg) {
1888 *shader_present = true;
1889
1890 if (!shProg->LinkStatus) {
1891 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(shader not linked)", where);
1892 return false;
1893 }
1894 #if 0 /* not normally enabled */
1895 {
1896 char errMsg[100];
1897 if (!_mesa_validate_shader_program(ctx, shProg, errMsg)) {
1898 _mesa_warning(ctx, "Shader program %u is invalid: %s",
1899 shProg->Name, errMsg);
1900 }
1901 }
1902 #endif
1903 }
1904
1905 return true;
1906 }
1907
1908 /**
1909 * Prior to drawing anything with glBegin, glDrawArrays, etc. this function
1910 * is called to see if it's valid to render. This involves checking that
1911 * the current shader is valid and the framebuffer is complete.
1912 * It also check the current pipeline object is valid if any.
1913 * If an error is detected it'll be recorded here.
1914 * \return GL_TRUE if OK to render, GL_FALSE if not
1915 */
1916 GLboolean
1917 _mesa_valid_to_render(struct gl_context *ctx, const char *where)
1918 {
1919 unsigned i;
1920
1921 /* This depends on having up to date derived state (shaders) */
1922 if (ctx->NewState)
1923 _mesa_update_state(ctx);
1924
1925 if (ctx->API == API_OPENGL_CORE || ctx->API == API_OPENGLES2) {
1926 bool from_glsl_shader[MESA_SHADER_COMPUTE] = { false };
1927
1928 for (i = 0; i < MESA_SHADER_COMPUTE; i++) {
1929 if (!shader_linked_or_absent(ctx, ctx->_Shader->CurrentProgram[i],
1930 &from_glsl_shader[i], where))
1931 return GL_FALSE;
1932 }
1933
1934 /* In OpenGL Core Profile and OpenGL ES 2.0 / 3.0, there are no assembly
1935 * shaders. Don't check state related to those.
1936 */
1937 } else {
1938 bool has_vertex_shader = false;
1939 bool has_fragment_shader = false;
1940
1941 /* In OpenGL Compatibility Profile, there is only vertex shader and
1942 * fragment shader. We take this path also for API_OPENGLES because
1943 * optimizing that path would make the other (more common) paths
1944 * slightly slower.
1945 */
1946 if (!shader_linked_or_absent(ctx,
1947 ctx->_Shader->CurrentProgram[MESA_SHADER_VERTEX],
1948 &has_vertex_shader, where))
1949 return GL_FALSE;
1950
1951 if (!shader_linked_or_absent(ctx,
1952 ctx->_Shader->CurrentProgram[MESA_SHADER_FRAGMENT],
1953 &has_fragment_shader, where))
1954 return GL_FALSE;
1955
1956 /* Any shader stages that are not supplied by the GLSL shader and have
1957 * assembly shaders enabled must now be validated.
1958 */
1959 if (!has_vertex_shader
1960 && ctx->VertexProgram.Enabled && !ctx->VertexProgram._Enabled) {
1961 _mesa_error(ctx, GL_INVALID_OPERATION,
1962 "%s(vertex program not valid)", where);
1963 return GL_FALSE;
1964 }
1965
1966 if (!has_fragment_shader) {
1967 if (ctx->FragmentProgram.Enabled && !ctx->FragmentProgram._Enabled) {
1968 _mesa_error(ctx, GL_INVALID_OPERATION,
1969 "%s(fragment program not valid)", where);
1970 return GL_FALSE;
1971 }
1972
1973 /* If drawing to integer-valued color buffers, there must be an
1974 * active fragment shader (GL_EXT_texture_integer).
1975 */
1976 if (ctx->DrawBuffer && ctx->DrawBuffer->_IntegerColor) {
1977 _mesa_error(ctx, GL_INVALID_OPERATION,
1978 "%s(integer format but no fragment shader)", where);
1979 return GL_FALSE;
1980 }
1981 }
1982 }
1983
1984 /* A pipeline object is bound */
1985 if (ctx->_Shader->Name && !ctx->_Shader->Validated) {
1986 /* Error message will be printed inside _mesa_validate_program_pipeline.
1987 */
1988 if (!_mesa_validate_program_pipeline(ctx, ctx->_Shader, GL_TRUE)) {
1989 return GL_FALSE;
1990 }
1991 }
1992
1993 /* If a program is active and SSO not in use, check if validation of
1994 * samplers succeeded for the active program. */
1995 if (ctx->_Shader->ActiveProgram && ctx->_Shader != ctx->Pipeline.Current) {
1996 char errMsg[100];
1997 if (!_mesa_sampler_uniforms_are_valid(ctx->_Shader->ActiveProgram,
1998 errMsg, 100)) {
1999 _mesa_error(ctx, GL_INVALID_OPERATION, "%s", errMsg);
2000 return GL_FALSE;
2001 }
2002 }
2003
2004 if (ctx->DrawBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
2005 _mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
2006 "%s(incomplete framebuffer)", where);
2007 return GL_FALSE;
2008 }
2009
2010 if (_mesa_check_blend_func_error(ctx) == GL_FALSE) {
2011 return GL_FALSE;
2012 }
2013
2014 #ifdef DEBUG
2015 if (ctx->_Shader->Flags & GLSL_LOG) {
2016 struct gl_shader_program **shProg = ctx->_Shader->CurrentProgram;
2017 gl_shader_stage i;
2018
2019 for (i = 0; i < MESA_SHADER_STAGES; i++) {
2020 if (shProg[i] == NULL || shProg[i]->_Used
2021 || shProg[i]->_LinkedShaders[i] == NULL)
2022 continue;
2023
2024 /* This is the first time this shader is being used.
2025 * Append shader's constants/uniforms to log file.
2026 *
2027 * Only log data for the program target that matches the shader
2028 * target. It's possible to have a program bound to the vertex
2029 * shader target that also supplied a fragment shader. If that
2030 * program isn't also bound to the fragment shader target we don't
2031 * want to log its fragment data.
2032 */
2033 _mesa_append_uniforms_to_file(shProg[i]->_LinkedShaders[i]);
2034 }
2035
2036 for (i = 0; i < MESA_SHADER_STAGES; i++) {
2037 if (shProg[i] != NULL)
2038 shProg[i]->_Used = GL_TRUE;
2039 }
2040 }
2041 #endif
2042
2043 return GL_TRUE;
2044 }
2045
2046
2047 /*@}*/