mesa/glsl: add api_enabled flag to gl_transform_feedback_info
[mesa.git] / src / mesa / main / mtypes.h
1 /*
2 * Mesa 3-D graphics library
3 *
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
5 * Copyright (C) 2009 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 mtypes.h
28 * Main Mesa data structures.
29 *
30 * Please try to mark derived values with a leading underscore ('_').
31 */
32
33 #ifndef MTYPES_H
34 #define MTYPES_H
35
36
37 #include <stdint.h> /* uint32_t */
38 #include <stdbool.h>
39 #include "c11/threads.h"
40
41 #include "main/glheader.h"
42 #include "main/config.h"
43 #include "glapi/glapi.h"
44 #include "math/m_matrix.h" /* GLmatrix */
45 #include "compiler/shader_enums.h"
46 #include "compiler/shader_info.h"
47 #include "main/formats.h" /* MESA_FORMAT_COUNT */
48 #include "compiler/glsl/list.h"
49 #include "util/bitscan.h"
50 #include "util/u_dynarray.h"
51
52
53 #ifdef __cplusplus
54 extern "C" {
55 #endif
56
57
58 /**
59 * \name 64-bit extension of GLbitfield.
60 */
61 /*@{*/
62 typedef GLuint64 GLbitfield64;
63
64 /** Set a single bit */
65 #define BITFIELD64_BIT(b) ((GLbitfield64)1 << (b))
66 /** Set all bits up to excluding bit b */
67 #define BITFIELD64_MASK(b) \
68 ((b) == 64 ? (~(GLbitfield64)0) : BITFIELD64_BIT(b) - 1)
69 /** Set count bits starting from bit b */
70 #define BITFIELD64_RANGE(b, count) \
71 (BITFIELD64_MASK((b) + (count)) & ~BITFIELD64_MASK(b))
72
73
74 /**
75 * \name Some forward type declarations
76 */
77 /*@{*/
78 struct _mesa_HashTable;
79 struct gl_attrib_node;
80 struct gl_list_extensions;
81 struct gl_meta_state;
82 struct gl_program_cache;
83 struct gl_texture_object;
84 struct gl_debug_state;
85 struct gl_context;
86 struct st_context;
87 struct gl_uniform_storage;
88 struct prog_instruction;
89 struct gl_program_parameter_list;
90 struct set;
91 struct set_entry;
92 struct vbo_context;
93 /*@}*/
94
95
96 /** Extra draw modes beyond GL_POINTS, GL_TRIANGLE_FAN, etc */
97 #define PRIM_MAX GL_PATCHES
98 #define PRIM_OUTSIDE_BEGIN_END (PRIM_MAX + 1)
99 #define PRIM_UNKNOWN (PRIM_MAX + 2)
100
101 /**
102 * Determine if the given gl_varying_slot appears in the fragment shader.
103 */
104 static inline GLboolean
105 _mesa_varying_slot_in_fs(gl_varying_slot slot)
106 {
107 switch (slot) {
108 case VARYING_SLOT_PSIZ:
109 case VARYING_SLOT_BFC0:
110 case VARYING_SLOT_BFC1:
111 case VARYING_SLOT_EDGE:
112 case VARYING_SLOT_CLIP_VERTEX:
113 case VARYING_SLOT_LAYER:
114 case VARYING_SLOT_TESS_LEVEL_OUTER:
115 case VARYING_SLOT_TESS_LEVEL_INNER:
116 case VARYING_SLOT_BOUNDING_BOX0:
117 case VARYING_SLOT_BOUNDING_BOX1:
118 return GL_FALSE;
119 default:
120 return GL_TRUE;
121 }
122 }
123
124 /**
125 * Indexes for all renderbuffers
126 */
127 typedef enum
128 {
129 /* the four standard color buffers */
130 BUFFER_FRONT_LEFT,
131 BUFFER_BACK_LEFT,
132 BUFFER_FRONT_RIGHT,
133 BUFFER_BACK_RIGHT,
134 BUFFER_DEPTH,
135 BUFFER_STENCIL,
136 BUFFER_ACCUM,
137 /* optional aux buffer */
138 BUFFER_AUX0,
139 /* generic renderbuffers */
140 BUFFER_COLOR0,
141 BUFFER_COLOR1,
142 BUFFER_COLOR2,
143 BUFFER_COLOR3,
144 BUFFER_COLOR4,
145 BUFFER_COLOR5,
146 BUFFER_COLOR6,
147 BUFFER_COLOR7,
148 BUFFER_COUNT,
149 BUFFER_NONE = -1,
150 } gl_buffer_index;
151
152 /**
153 * Bit flags for all renderbuffers
154 */
155 #define BUFFER_BIT_FRONT_LEFT (1 << BUFFER_FRONT_LEFT)
156 #define BUFFER_BIT_BACK_LEFT (1 << BUFFER_BACK_LEFT)
157 #define BUFFER_BIT_FRONT_RIGHT (1 << BUFFER_FRONT_RIGHT)
158 #define BUFFER_BIT_BACK_RIGHT (1 << BUFFER_BACK_RIGHT)
159 #define BUFFER_BIT_AUX0 (1 << BUFFER_AUX0)
160 #define BUFFER_BIT_AUX1 (1 << BUFFER_AUX1)
161 #define BUFFER_BIT_AUX2 (1 << BUFFER_AUX2)
162 #define BUFFER_BIT_AUX3 (1 << BUFFER_AUX3)
163 #define BUFFER_BIT_DEPTH (1 << BUFFER_DEPTH)
164 #define BUFFER_BIT_STENCIL (1 << BUFFER_STENCIL)
165 #define BUFFER_BIT_ACCUM (1 << BUFFER_ACCUM)
166 #define BUFFER_BIT_COLOR0 (1 << BUFFER_COLOR0)
167 #define BUFFER_BIT_COLOR1 (1 << BUFFER_COLOR1)
168 #define BUFFER_BIT_COLOR2 (1 << BUFFER_COLOR2)
169 #define BUFFER_BIT_COLOR3 (1 << BUFFER_COLOR3)
170 #define BUFFER_BIT_COLOR4 (1 << BUFFER_COLOR4)
171 #define BUFFER_BIT_COLOR5 (1 << BUFFER_COLOR5)
172 #define BUFFER_BIT_COLOR6 (1 << BUFFER_COLOR6)
173 #define BUFFER_BIT_COLOR7 (1 << BUFFER_COLOR7)
174
175 /**
176 * Mask of all the color buffer bits (but not accum).
177 */
178 #define BUFFER_BITS_COLOR (BUFFER_BIT_FRONT_LEFT | \
179 BUFFER_BIT_BACK_LEFT | \
180 BUFFER_BIT_FRONT_RIGHT | \
181 BUFFER_BIT_BACK_RIGHT | \
182 BUFFER_BIT_AUX0 | \
183 BUFFER_BIT_COLOR0 | \
184 BUFFER_BIT_COLOR1 | \
185 BUFFER_BIT_COLOR2 | \
186 BUFFER_BIT_COLOR3 | \
187 BUFFER_BIT_COLOR4 | \
188 BUFFER_BIT_COLOR5 | \
189 BUFFER_BIT_COLOR6 | \
190 BUFFER_BIT_COLOR7)
191
192 /* Mask of bits for depth+stencil buffers */
193 #define BUFFER_BITS_DEPTH_STENCIL (BUFFER_BIT_DEPTH | BUFFER_BIT_STENCIL)
194
195 /**
196 * Framebuffer configuration (aka visual / pixelformat)
197 * Note: some of these fields should be boolean, but it appears that
198 * code in drivers/dri/common/util.c requires int-sized fields.
199 */
200 struct gl_config
201 {
202 GLboolean rgbMode;
203 GLboolean floatMode;
204 GLuint doubleBufferMode;
205 GLuint stereoMode;
206
207 GLboolean haveAccumBuffer;
208 GLboolean haveDepthBuffer;
209 GLboolean haveStencilBuffer;
210
211 GLint redBits, greenBits, blueBits, alphaBits; /* bits per comp */
212 GLuint redMask, greenMask, blueMask, alphaMask;
213 GLint rgbBits; /* total bits for rgb */
214 GLint indexBits; /* total bits for colorindex */
215
216 GLint accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits;
217 GLint depthBits;
218 GLint stencilBits;
219
220 GLint numAuxBuffers;
221
222 GLint level;
223
224 /* EXT_visual_rating / GLX 1.2 */
225 GLint visualRating;
226
227 /* EXT_visual_info / GLX 1.2 */
228 GLint transparentPixel;
229 /* colors are floats scaled to ints */
230 GLint transparentRed, transparentGreen, transparentBlue, transparentAlpha;
231 GLint transparentIndex;
232
233 /* ARB_multisample / SGIS_multisample */
234 GLint sampleBuffers;
235 GLint samples;
236
237 /* SGIX_pbuffer / GLX 1.3 */
238 GLint maxPbufferWidth;
239 GLint maxPbufferHeight;
240 GLint maxPbufferPixels;
241 GLint optimalPbufferWidth; /* Only for SGIX_pbuffer. */
242 GLint optimalPbufferHeight; /* Only for SGIX_pbuffer. */
243
244 /* OML_swap_method */
245 GLint swapMethod;
246
247 /* EXT_texture_from_pixmap */
248 GLint bindToTextureRgb;
249 GLint bindToTextureRgba;
250 GLint bindToMipmapTexture;
251 GLint bindToTextureTargets;
252 GLint yInverted;
253
254 /* EXT_framebuffer_sRGB */
255 GLint sRGBCapable;
256 };
257
258
259 /**
260 * \name Bit flags used for updating material values.
261 */
262 /*@{*/
263 #define MAT_ATTRIB_FRONT_AMBIENT 0
264 #define MAT_ATTRIB_BACK_AMBIENT 1
265 #define MAT_ATTRIB_FRONT_DIFFUSE 2
266 #define MAT_ATTRIB_BACK_DIFFUSE 3
267 #define MAT_ATTRIB_FRONT_SPECULAR 4
268 #define MAT_ATTRIB_BACK_SPECULAR 5
269 #define MAT_ATTRIB_FRONT_EMISSION 6
270 #define MAT_ATTRIB_BACK_EMISSION 7
271 #define MAT_ATTRIB_FRONT_SHININESS 8
272 #define MAT_ATTRIB_BACK_SHININESS 9
273 #define MAT_ATTRIB_FRONT_INDEXES 10
274 #define MAT_ATTRIB_BACK_INDEXES 11
275 #define MAT_ATTRIB_MAX 12
276
277 #define MAT_ATTRIB_AMBIENT(f) (MAT_ATTRIB_FRONT_AMBIENT+(f))
278 #define MAT_ATTRIB_DIFFUSE(f) (MAT_ATTRIB_FRONT_DIFFUSE+(f))
279 #define MAT_ATTRIB_SPECULAR(f) (MAT_ATTRIB_FRONT_SPECULAR+(f))
280 #define MAT_ATTRIB_EMISSION(f) (MAT_ATTRIB_FRONT_EMISSION+(f))
281 #define MAT_ATTRIB_SHININESS(f)(MAT_ATTRIB_FRONT_SHININESS+(f))
282 #define MAT_ATTRIB_INDEXES(f) (MAT_ATTRIB_FRONT_INDEXES+(f))
283
284 #define MAT_INDEX_AMBIENT 0
285 #define MAT_INDEX_DIFFUSE 1
286 #define MAT_INDEX_SPECULAR 2
287
288 #define MAT_BIT_FRONT_AMBIENT (1<<MAT_ATTRIB_FRONT_AMBIENT)
289 #define MAT_BIT_BACK_AMBIENT (1<<MAT_ATTRIB_BACK_AMBIENT)
290 #define MAT_BIT_FRONT_DIFFUSE (1<<MAT_ATTRIB_FRONT_DIFFUSE)
291 #define MAT_BIT_BACK_DIFFUSE (1<<MAT_ATTRIB_BACK_DIFFUSE)
292 #define MAT_BIT_FRONT_SPECULAR (1<<MAT_ATTRIB_FRONT_SPECULAR)
293 #define MAT_BIT_BACK_SPECULAR (1<<MAT_ATTRIB_BACK_SPECULAR)
294 #define MAT_BIT_FRONT_EMISSION (1<<MAT_ATTRIB_FRONT_EMISSION)
295 #define MAT_BIT_BACK_EMISSION (1<<MAT_ATTRIB_BACK_EMISSION)
296 #define MAT_BIT_FRONT_SHININESS (1<<MAT_ATTRIB_FRONT_SHININESS)
297 #define MAT_BIT_BACK_SHININESS (1<<MAT_ATTRIB_BACK_SHININESS)
298 #define MAT_BIT_FRONT_INDEXES (1<<MAT_ATTRIB_FRONT_INDEXES)
299 #define MAT_BIT_BACK_INDEXES (1<<MAT_ATTRIB_BACK_INDEXES)
300
301
302 #define FRONT_MATERIAL_BITS (MAT_BIT_FRONT_EMISSION | \
303 MAT_BIT_FRONT_AMBIENT | \
304 MAT_BIT_FRONT_DIFFUSE | \
305 MAT_BIT_FRONT_SPECULAR | \
306 MAT_BIT_FRONT_SHININESS | \
307 MAT_BIT_FRONT_INDEXES)
308
309 #define BACK_MATERIAL_BITS (MAT_BIT_BACK_EMISSION | \
310 MAT_BIT_BACK_AMBIENT | \
311 MAT_BIT_BACK_DIFFUSE | \
312 MAT_BIT_BACK_SPECULAR | \
313 MAT_BIT_BACK_SHININESS | \
314 MAT_BIT_BACK_INDEXES)
315
316 #define ALL_MATERIAL_BITS (FRONT_MATERIAL_BITS | BACK_MATERIAL_BITS)
317 /*@}*/
318
319
320 /**
321 * Material state.
322 */
323 struct gl_material
324 {
325 GLfloat Attrib[MAT_ATTRIB_MAX][4];
326 };
327
328
329 /**
330 * Light state flags.
331 */
332 /*@{*/
333 #define LIGHT_SPOT 0x1
334 #define LIGHT_LOCAL_VIEWER 0x2
335 #define LIGHT_POSITIONAL 0x4
336 #define LIGHT_NEED_VERTICES (LIGHT_POSITIONAL|LIGHT_LOCAL_VIEWER)
337 /*@}*/
338
339
340 /**
341 * Light source state.
342 */
343 struct gl_light
344 {
345 GLfloat Ambient[4]; /**< ambient color */
346 GLfloat Diffuse[4]; /**< diffuse color */
347 GLfloat Specular[4]; /**< specular color */
348 GLfloat EyePosition[4]; /**< position in eye coordinates */
349 GLfloat SpotDirection[4]; /**< spotlight direction in eye coordinates */
350 GLfloat SpotExponent;
351 GLfloat SpotCutoff; /**< in degrees */
352 GLfloat _CosCutoff; /**< = MAX(0, cos(SpotCutoff)) */
353 GLfloat ConstantAttenuation;
354 GLfloat LinearAttenuation;
355 GLfloat QuadraticAttenuation;
356 GLboolean Enabled; /**< On/off flag */
357
358 /**
359 * \name Derived fields
360 */
361 /*@{*/
362 GLbitfield _Flags; /**< Mask of LIGHT_x bits defined above */
363
364 GLfloat _Position[4]; /**< position in eye/obj coordinates */
365 GLfloat _VP_inf_norm[3]; /**< Norm direction to infinite light */
366 GLfloat _h_inf_norm[3]; /**< Norm( _VP_inf_norm + <0,0,1> ) */
367 GLfloat _NormSpotDirection[4]; /**< normalized spotlight direction */
368 GLfloat _VP_inf_spot_attenuation;
369
370 GLfloat _MatAmbient[2][3]; /**< material ambient * light ambient */
371 GLfloat _MatDiffuse[2][3]; /**< material diffuse * light diffuse */
372 GLfloat _MatSpecular[2][3]; /**< material spec * light specular */
373 /*@}*/
374 };
375
376
377 /**
378 * Light model state.
379 */
380 struct gl_lightmodel
381 {
382 GLfloat Ambient[4]; /**< ambient color */
383 GLboolean LocalViewer; /**< Local (or infinite) view point? */
384 GLboolean TwoSide; /**< Two (or one) sided lighting? */
385 GLenum ColorControl; /**< either GL_SINGLE_COLOR
386 * or GL_SEPARATE_SPECULAR_COLOR */
387 };
388
389
390 /**
391 * Accumulation buffer attribute group (GL_ACCUM_BUFFER_BIT)
392 */
393 struct gl_accum_attrib
394 {
395 GLfloat ClearColor[4]; /**< Accumulation buffer clear color */
396 };
397
398
399 /**
400 * Used for storing clear color, texture border color, etc.
401 * The float values are typically unclamped.
402 */
403 union gl_color_union
404 {
405 GLfloat f[4];
406 GLint i[4];
407 GLuint ui[4];
408 };
409
410
411 /**
412 * Color buffer attribute group (GL_COLOR_BUFFER_BIT).
413 */
414 struct gl_colorbuffer_attrib
415 {
416 GLuint ClearIndex; /**< Index for glClear */
417 union gl_color_union ClearColor; /**< Color for glClear, unclamped */
418 GLuint IndexMask; /**< Color index write mask */
419 GLubyte ColorMask[MAX_DRAW_BUFFERS][4]; /**< Each flag is 0xff or 0x0 */
420
421 GLenum DrawBuffer[MAX_DRAW_BUFFERS]; /**< Which buffer to draw into */
422
423 /**
424 * \name alpha testing
425 */
426 /*@{*/
427 GLboolean AlphaEnabled; /**< Alpha test enabled flag */
428 GLenum AlphaFunc; /**< Alpha test function */
429 GLfloat AlphaRefUnclamped;
430 GLclampf AlphaRef; /**< Alpha reference value */
431 /*@}*/
432
433 /**
434 * \name Blending
435 */
436 /*@{*/
437 GLbitfield BlendEnabled; /**< Per-buffer blend enable flags */
438
439 /* NOTE: this does _not_ depend on fragment clamping or any other clamping
440 * control, only on the fixed-pointness of the render target.
441 * The query does however depend on fragment color clamping.
442 */
443 GLfloat BlendColorUnclamped[4]; /**< Blending color */
444 GLfloat BlendColor[4]; /**< Blending color */
445
446 struct
447 {
448 GLenum SrcRGB; /**< RGB blend source term */
449 GLenum DstRGB; /**< RGB blend dest term */
450 GLenum SrcA; /**< Alpha blend source term */
451 GLenum DstA; /**< Alpha blend dest term */
452 GLenum EquationRGB; /**< GL_ADD, GL_SUBTRACT, etc. */
453 GLenum EquationA; /**< GL_ADD, GL_SUBTRACT, etc. */
454 /**
455 * Set if any blend factor uses SRC1. Computed at the time blend factors
456 * get set.
457 */
458 GLboolean _UsesDualSrc;
459 } Blend[MAX_DRAW_BUFFERS];
460 /** Are the blend func terms currently different for each buffer/target? */
461 GLboolean _BlendFuncPerBuffer;
462 /** Are the blend equations currently different for each buffer/target? */
463 GLboolean _BlendEquationPerBuffer;
464
465 /**
466 * Which advanced blending mode is in use (or BLEND_NONE).
467 *
468 * KHR_blend_equation_advanced only allows advanced blending with a single
469 * draw buffer, and NVX_blend_equation_advanced_multi_draw_buffer still
470 * requires all draw buffers to match, so we only need a single value.
471 */
472 enum gl_advanced_blend_mode _AdvancedBlendMode;
473
474 /** Coherency requested via glEnable(GL_BLEND_ADVANCED_COHERENT_KHR)? */
475 bool BlendCoherent;
476 /*@}*/
477
478 /**
479 * \name Logic op
480 */
481 /*@{*/
482 GLboolean IndexLogicOpEnabled; /**< Color index logic op enabled flag */
483 GLboolean ColorLogicOpEnabled; /**< RGBA logic op enabled flag */
484 GLenum LogicOp; /**< Logic operator */
485
486 /*@}*/
487
488 GLboolean DitherFlag; /**< Dither enable flag */
489
490 GLboolean _ClampFragmentColor; /** < with GL_FIXED_ONLY_ARB resolved */
491 GLenum ClampFragmentColor; /**< GL_TRUE, GL_FALSE or GL_FIXED_ONLY_ARB */
492 GLenum ClampReadColor; /**< GL_TRUE, GL_FALSE or GL_FIXED_ONLY_ARB */
493
494 GLboolean sRGBEnabled; /**< Framebuffer sRGB blending/updating requested */
495 };
496
497
498 /**
499 * Current attribute group (GL_CURRENT_BIT).
500 */
501 struct gl_current_attrib
502 {
503 /**
504 * \name Current vertex attributes (color, texcoords, etc).
505 * \note Values are valid only after FLUSH_VERTICES has been called.
506 * \note Index and Edgeflag current values are stored as floats in the
507 * SIX and SEVEN attribute slots.
508 * \note We need double storage for 64-bit vertex attributes
509 */
510 GLfloat Attrib[VERT_ATTRIB_MAX][4*2];
511
512 /**
513 * \name Current raster position attributes (always up to date after a
514 * glRasterPos call).
515 */
516 GLfloat RasterPos[4];
517 GLfloat RasterDistance;
518 GLfloat RasterColor[4];
519 GLfloat RasterSecondaryColor[4];
520 GLfloat RasterTexCoords[MAX_TEXTURE_COORD_UNITS][4];
521 GLboolean RasterPosValid;
522 };
523
524
525 /**
526 * Depth buffer attribute group (GL_DEPTH_BUFFER_BIT).
527 */
528 struct gl_depthbuffer_attrib
529 {
530 GLenum Func; /**< Function for depth buffer compare */
531 GLclampd Clear; /**< Value to clear depth buffer to */
532 GLboolean Test; /**< Depth buffering enabled flag */
533 GLboolean Mask; /**< Depth buffer writable? */
534 GLboolean BoundsTest; /**< GL_EXT_depth_bounds_test */
535 GLfloat BoundsMin, BoundsMax;/**< GL_EXT_depth_bounds_test */
536 };
537
538
539 /**
540 * Evaluator attribute group (GL_EVAL_BIT).
541 */
542 struct gl_eval_attrib
543 {
544 /**
545 * \name Enable bits
546 */
547 /*@{*/
548 GLboolean Map1Color4;
549 GLboolean Map1Index;
550 GLboolean Map1Normal;
551 GLboolean Map1TextureCoord1;
552 GLboolean Map1TextureCoord2;
553 GLboolean Map1TextureCoord3;
554 GLboolean Map1TextureCoord4;
555 GLboolean Map1Vertex3;
556 GLboolean Map1Vertex4;
557 GLboolean Map2Color4;
558 GLboolean Map2Index;
559 GLboolean Map2Normal;
560 GLboolean Map2TextureCoord1;
561 GLboolean Map2TextureCoord2;
562 GLboolean Map2TextureCoord3;
563 GLboolean Map2TextureCoord4;
564 GLboolean Map2Vertex3;
565 GLboolean Map2Vertex4;
566 GLboolean AutoNormal;
567 /*@}*/
568
569 /**
570 * \name Map Grid endpoints and divisions and calculated du values
571 */
572 /*@{*/
573 GLint MapGrid1un;
574 GLfloat MapGrid1u1, MapGrid1u2, MapGrid1du;
575 GLint MapGrid2un, MapGrid2vn;
576 GLfloat MapGrid2u1, MapGrid2u2, MapGrid2du;
577 GLfloat MapGrid2v1, MapGrid2v2, MapGrid2dv;
578 /*@}*/
579 };
580
581
582 /**
583 * Compressed fog mode.
584 */
585 enum gl_fog_mode
586 {
587 FOG_NONE,
588 FOG_LINEAR,
589 FOG_EXP,
590 FOG_EXP2,
591 };
592
593
594 /**
595 * Fog attribute group (GL_FOG_BIT).
596 */
597 struct gl_fog_attrib
598 {
599 GLboolean Enabled; /**< Fog enabled flag */
600 GLboolean ColorSumEnabled;
601 uint8_t _PackedMode; /**< Fog mode as 2 bits */
602 uint8_t _PackedEnabledMode; /**< Masked CompressedMode */
603 GLfloat ColorUnclamped[4]; /**< Fog color */
604 GLfloat Color[4]; /**< Fog color */
605 GLfloat Density; /**< Density >= 0.0 */
606 GLfloat Start; /**< Start distance in eye coords */
607 GLfloat End; /**< End distance in eye coords */
608 GLfloat Index; /**< Fog index */
609 GLenum Mode; /**< Fog mode */
610 GLenum FogCoordinateSource; /**< GL_EXT_fog_coord */
611 GLfloat _Scale; /**< (End == Start) ? 1.0 : 1.0 / (End - Start) */
612 GLenum FogDistanceMode; /**< GL_NV_fog_distance */
613 };
614
615
616 /**
617 * Hint attribute group (GL_HINT_BIT).
618 *
619 * Values are always one of GL_FASTEST, GL_NICEST, or GL_DONT_CARE.
620 */
621 struct gl_hint_attrib
622 {
623 GLenum PerspectiveCorrection;
624 GLenum PointSmooth;
625 GLenum LineSmooth;
626 GLenum PolygonSmooth;
627 GLenum Fog;
628 GLenum TextureCompression; /**< GL_ARB_texture_compression */
629 GLenum GenerateMipmap; /**< GL_SGIS_generate_mipmap */
630 GLenum FragmentShaderDerivative; /**< GL_ARB_fragment_shader */
631 };
632
633
634 /**
635 * Lighting attribute group (GL_LIGHT_BIT).
636 */
637 struct gl_light_attrib
638 {
639 struct gl_light Light[MAX_LIGHTS]; /**< Array of light sources */
640 struct gl_lightmodel Model; /**< Lighting model */
641
642 /**
643 * Front and back material values.
644 * Note: must call FLUSH_VERTICES() before using.
645 */
646 struct gl_material Material;
647
648 GLboolean Enabled; /**< Lighting enabled flag */
649 GLboolean ColorMaterialEnabled;
650
651 GLenum ShadeModel; /**< GL_FLAT or GL_SMOOTH */
652 GLenum ProvokingVertex; /**< GL_EXT_provoking_vertex */
653 GLenum ColorMaterialFace; /**< GL_FRONT, BACK or FRONT_AND_BACK */
654 GLenum ColorMaterialMode; /**< GL_AMBIENT, GL_DIFFUSE, etc */
655 GLbitfield _ColorMaterialBitmask; /**< bitmask formed from Face and Mode */
656
657
658 GLboolean _ClampVertexColor;
659 GLenum ClampVertexColor; /**< GL_TRUE, GL_FALSE, GL_FIXED_ONLY */
660
661 /**
662 * Derived state for optimizations:
663 */
664 /*@{*/
665 GLbitfield _EnabledLights; /**< bitmask containing enabled lights */
666
667 GLboolean _NeedEyeCoords;
668 GLboolean _NeedVertices; /**< Use fast shader? */
669
670 GLfloat _BaseColor[2][3];
671 /*@}*/
672 };
673
674
675 /**
676 * Line attribute group (GL_LINE_BIT).
677 */
678 struct gl_line_attrib
679 {
680 GLboolean SmoothFlag; /**< GL_LINE_SMOOTH enabled? */
681 GLboolean StippleFlag; /**< GL_LINE_STIPPLE enabled? */
682 GLushort StipplePattern; /**< Stipple pattern */
683 GLint StippleFactor; /**< Stipple repeat factor */
684 GLfloat Width; /**< Line width */
685 };
686
687
688 /**
689 * Display list attribute group (GL_LIST_BIT).
690 */
691 struct gl_list_attrib
692 {
693 GLuint ListBase;
694 };
695
696
697 /**
698 * Multisample attribute group (GL_MULTISAMPLE_BIT).
699 */
700 struct gl_multisample_attrib
701 {
702 GLboolean Enabled;
703 GLboolean SampleAlphaToCoverage;
704 GLboolean SampleAlphaToOne;
705 GLboolean SampleCoverage;
706 GLboolean SampleCoverageInvert;
707 GLboolean SampleShading;
708
709 /* ARB_texture_multisample / GL3.2 additions */
710 GLboolean SampleMask;
711
712 GLfloat SampleCoverageValue; /**< In range [0, 1] */
713 GLfloat MinSampleShadingValue; /**< In range [0, 1] */
714
715 /** The GL spec defines this as an array but >32x MSAA is madness */
716 GLbitfield SampleMaskValue;
717 };
718
719
720 /**
721 * A pixelmap (see glPixelMap)
722 */
723 struct gl_pixelmap
724 {
725 GLint Size;
726 GLfloat Map[MAX_PIXEL_MAP_TABLE];
727 };
728
729
730 /**
731 * Collection of all pixelmaps
732 */
733 struct gl_pixelmaps
734 {
735 struct gl_pixelmap RtoR; /**< i.e. GL_PIXEL_MAP_R_TO_R */
736 struct gl_pixelmap GtoG;
737 struct gl_pixelmap BtoB;
738 struct gl_pixelmap AtoA;
739 struct gl_pixelmap ItoR;
740 struct gl_pixelmap ItoG;
741 struct gl_pixelmap ItoB;
742 struct gl_pixelmap ItoA;
743 struct gl_pixelmap ItoI;
744 struct gl_pixelmap StoS;
745 };
746
747
748 /**
749 * Pixel attribute group (GL_PIXEL_MODE_BIT).
750 */
751 struct gl_pixel_attrib
752 {
753 GLenum ReadBuffer; /**< source buffer for glRead/CopyPixels() */
754
755 /*--- Begin Pixel Transfer State ---*/
756 /* Fields are in the order in which they're applied... */
757
758 /** Scale & Bias (index shift, offset) */
759 /*@{*/
760 GLfloat RedBias, RedScale;
761 GLfloat GreenBias, GreenScale;
762 GLfloat BlueBias, BlueScale;
763 GLfloat AlphaBias, AlphaScale;
764 GLfloat DepthBias, DepthScale;
765 GLint IndexShift, IndexOffset;
766 /*@}*/
767
768 /* Pixel Maps */
769 /* Note: actual pixel maps are not part of this attrib group */
770 GLboolean MapColorFlag;
771 GLboolean MapStencilFlag;
772
773 /*--- End Pixel Transfer State ---*/
774
775 /** glPixelZoom */
776 GLfloat ZoomX, ZoomY;
777 };
778
779
780 /**
781 * Point attribute group (GL_POINT_BIT).
782 */
783 struct gl_point_attrib
784 {
785 GLfloat Size; /**< User-specified point size */
786 GLfloat Params[3]; /**< GL_EXT_point_parameters */
787 GLfloat MinSize, MaxSize; /**< GL_EXT_point_parameters */
788 GLfloat Threshold; /**< GL_EXT_point_parameters */
789 GLboolean SmoothFlag; /**< True if GL_POINT_SMOOTH is enabled */
790 GLboolean _Attenuated; /**< True if Params != [1, 0, 0] */
791 GLboolean PointSprite; /**< GL_NV/ARB_point_sprite */
792 GLbitfield CoordReplace; /**< GL_ARB_point_sprite*/
793 GLenum SpriteRMode; /**< GL_NV_point_sprite (only!) */
794 GLenum SpriteOrigin; /**< GL_ARB_point_sprite */
795 };
796
797
798 /**
799 * Polygon attribute group (GL_POLYGON_BIT).
800 */
801 struct gl_polygon_attrib
802 {
803 GLenum FrontFace; /**< Either GL_CW or GL_CCW */
804 GLenum FrontMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
805 GLenum BackMode; /**< Either GL_POINT, GL_LINE or GL_FILL */
806 GLboolean CullFlag; /**< Culling on/off flag */
807 GLboolean SmoothFlag; /**< True if GL_POLYGON_SMOOTH is enabled */
808 GLboolean StippleFlag; /**< True if GL_POLYGON_STIPPLE is enabled */
809 GLenum CullFaceMode; /**< Culling mode GL_FRONT or GL_BACK */
810 GLfloat OffsetFactor; /**< Polygon offset factor, from user */
811 GLfloat OffsetUnits; /**< Polygon offset units, from user */
812 GLfloat OffsetClamp; /**< Polygon offset clamp, from user */
813 GLboolean OffsetPoint; /**< Offset in GL_POINT mode */
814 GLboolean OffsetLine; /**< Offset in GL_LINE mode */
815 GLboolean OffsetFill; /**< Offset in GL_FILL mode */
816 };
817
818
819 /**
820 * Scissor attributes (GL_SCISSOR_BIT).
821 */
822 struct gl_scissor_rect
823 {
824 GLint X, Y; /**< Lower left corner of box */
825 GLsizei Width, Height; /**< Size of box */
826 };
827 struct gl_scissor_attrib
828 {
829 GLbitfield EnableFlags; /**< Scissor test enabled? */
830 struct gl_scissor_rect ScissorArray[MAX_VIEWPORTS];
831 GLint NumWindowRects; /**< Count of enabled window rectangles */
832 GLenum WindowRectMode; /**< Whether to include or exclude the rects */
833 struct gl_scissor_rect WindowRects[MAX_WINDOW_RECTANGLES];
834 };
835
836
837 /**
838 * Stencil attribute group (GL_STENCIL_BUFFER_BIT).
839 *
840 * Three sets of stencil data are tracked so that OpenGL 2.0,
841 * GL_EXT_stencil_two_side, and GL_ATI_separate_stencil can all be supported
842 * simultaneously. In each of the stencil state arrays, element 0 corresponds
843 * to GL_FRONT. Element 1 corresponds to the OpenGL 2.0 /
844 * GL_ATI_separate_stencil GL_BACK state. Element 2 corresponds to the
845 * GL_EXT_stencil_two_side GL_BACK state.
846 *
847 * The derived value \c _BackFace is either 1 or 2 depending on whether or
848 * not GL_STENCIL_TEST_TWO_SIDE_EXT is enabled.
849 *
850 * The derived value \c _TestTwoSide is set when the front-face and back-face
851 * stencil state are different.
852 */
853 struct gl_stencil_attrib
854 {
855 GLboolean Enabled; /**< Enabled flag */
856 GLboolean TestTwoSide; /**< GL_EXT_stencil_two_side */
857 GLubyte ActiveFace; /**< GL_EXT_stencil_two_side (0 or 2) */
858 GLubyte _BackFace; /**< Current back stencil state (1 or 2) */
859 GLenum Function[3]; /**< Stencil function */
860 GLenum FailFunc[3]; /**< Fail function */
861 GLenum ZPassFunc[3]; /**< Depth buffer pass function */
862 GLenum ZFailFunc[3]; /**< Depth buffer fail function */
863 GLint Ref[3]; /**< Reference value */
864 GLuint ValueMask[3]; /**< Value mask */
865 GLuint WriteMask[3]; /**< Write mask */
866 GLuint Clear; /**< Clear value */
867 };
868
869
870 /**
871 * An index for each type of texture object. These correspond to the GL
872 * texture target enums, such as GL_TEXTURE_2D, GL_TEXTURE_CUBE_MAP, etc.
873 * Note: the order is from highest priority to lowest priority.
874 */
875 typedef enum
876 {
877 TEXTURE_2D_MULTISAMPLE_INDEX,
878 TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX,
879 TEXTURE_CUBE_ARRAY_INDEX,
880 TEXTURE_BUFFER_INDEX,
881 TEXTURE_2D_ARRAY_INDEX,
882 TEXTURE_1D_ARRAY_INDEX,
883 TEXTURE_EXTERNAL_INDEX,
884 TEXTURE_CUBE_INDEX,
885 TEXTURE_3D_INDEX,
886 TEXTURE_RECT_INDEX,
887 TEXTURE_2D_INDEX,
888 TEXTURE_1D_INDEX,
889 NUM_TEXTURE_TARGETS
890 } gl_texture_index;
891
892
893 /**
894 * Bit flags for each type of texture object
895 */
896 /*@{*/
897 #define TEXTURE_2D_MULTISAMPLE_BIT (1 << TEXTURE_2D_MULTISAMPLE_INDEX)
898 #define TEXTURE_2D_MULTISAMPLE_ARRAY_BIT (1 << TEXTURE_2D_MULTISAMPLE_ARRAY_INDEX)
899 #define TEXTURE_CUBE_ARRAY_BIT (1 << TEXTURE_CUBE_ARRAY_INDEX)
900 #define TEXTURE_BUFFER_BIT (1 << TEXTURE_BUFFER_INDEX)
901 #define TEXTURE_2D_ARRAY_BIT (1 << TEXTURE_2D_ARRAY_INDEX)
902 #define TEXTURE_1D_ARRAY_BIT (1 << TEXTURE_1D_ARRAY_INDEX)
903 #define TEXTURE_EXTERNAL_BIT (1 << TEXTURE_EXTERNAL_INDEX)
904 #define TEXTURE_CUBE_BIT (1 << TEXTURE_CUBE_INDEX)
905 #define TEXTURE_3D_BIT (1 << TEXTURE_3D_INDEX)
906 #define TEXTURE_RECT_BIT (1 << TEXTURE_RECT_INDEX)
907 #define TEXTURE_2D_BIT (1 << TEXTURE_2D_INDEX)
908 #define TEXTURE_1D_BIT (1 << TEXTURE_1D_INDEX)
909 /*@}*/
910
911
912 /**
913 * Texture image state. Drivers will typically create a subclass of this
914 * with extra fields for memory buffers, etc.
915 */
916 struct gl_texture_image
917 {
918 GLint InternalFormat; /**< Internal format as given by the user */
919 GLenum _BaseFormat; /**< Either GL_RGB, GL_RGBA, GL_ALPHA,
920 * GL_LUMINANCE, GL_LUMINANCE_ALPHA,
921 * GL_INTENSITY, GL_DEPTH_COMPONENT or
922 * GL_DEPTH_STENCIL_EXT only. Used for
923 * choosing TexEnv arithmetic.
924 */
925 mesa_format TexFormat; /**< The actual texture memory format */
926
927 GLuint Border; /**< 0 or 1 */
928 GLuint Width; /**< = 2^WidthLog2 + 2*Border */
929 GLuint Height; /**< = 2^HeightLog2 + 2*Border */
930 GLuint Depth; /**< = 2^DepthLog2 + 2*Border */
931 GLuint Width2; /**< = Width - 2*Border */
932 GLuint Height2; /**< = Height - 2*Border */
933 GLuint Depth2; /**< = Depth - 2*Border */
934 GLuint WidthLog2; /**< = log2(Width2) */
935 GLuint HeightLog2; /**< = log2(Height2) */
936 GLuint DepthLog2; /**< = log2(Depth2) */
937 GLuint MaxNumLevels; /**< = maximum possible number of mipmap
938 levels, computed from the dimensions */
939
940 struct gl_texture_object *TexObject; /**< Pointer back to parent object */
941 GLuint Level; /**< Which mipmap level am I? */
942 /** Cube map face: index into gl_texture_object::Image[] array */
943 GLuint Face;
944
945 /** GL_ARB_texture_multisample */
946 GLuint NumSamples; /**< Sample count, or 0 for non-multisample */
947 GLboolean FixedSampleLocations; /**< Same sample locations for all pixels? */
948 };
949
950
951 /**
952 * Indexes for cube map faces.
953 */
954 typedef enum
955 {
956 FACE_POS_X = 0,
957 FACE_NEG_X = 1,
958 FACE_POS_Y = 2,
959 FACE_NEG_Y = 3,
960 FACE_POS_Z = 4,
961 FACE_NEG_Z = 5,
962 MAX_FACES = 6
963 } gl_face_index;
964
965
966 /**
967 * Sampler object state. These objects are new with GL_ARB_sampler_objects
968 * and OpenGL 3.3. Legacy texture objects also contain a sampler object.
969 */
970 struct gl_sampler_object
971 {
972 mtx_t Mutex;
973 GLuint Name;
974 GLint RefCount;
975 GLchar *Label; /**< GL_KHR_debug */
976
977 GLenum WrapS; /**< S-axis texture image wrap mode */
978 GLenum WrapT; /**< T-axis texture image wrap mode */
979 GLenum WrapR; /**< R-axis texture image wrap mode */
980 GLenum MinFilter; /**< minification filter */
981 GLenum MagFilter; /**< magnification filter */
982 union gl_color_union BorderColor; /**< Interpreted according to texture format */
983 GLfloat MinLod; /**< min lambda, OpenGL 1.2 */
984 GLfloat MaxLod; /**< max lambda, OpenGL 1.2 */
985 GLfloat LodBias; /**< OpenGL 1.4 */
986 GLfloat MaxAnisotropy; /**< GL_EXT_texture_filter_anisotropic */
987 GLenum CompareMode; /**< GL_ARB_shadow */
988 GLenum CompareFunc; /**< GL_ARB_shadow */
989 GLenum sRGBDecode; /**< GL_DECODE_EXT or GL_SKIP_DECODE_EXT */
990 GLboolean CubeMapSeamless; /**< GL_AMD_seamless_cubemap_per_texture */
991
992 /** GL_ARB_bindless_texture */
993 bool HandleAllocated;
994 struct util_dynarray Handles;
995 };
996
997
998 /**
999 * Texture object state. Contains the array of mipmap images, border color,
1000 * wrap modes, filter modes, and shadow/texcompare state.
1001 */
1002 struct gl_texture_object
1003 {
1004 mtx_t Mutex; /**< for thread safety */
1005 GLint RefCount; /**< reference count */
1006 GLuint Name; /**< the user-visible texture object ID */
1007 GLchar *Label; /**< GL_KHR_debug */
1008 GLenum Target; /**< GL_TEXTURE_1D, GL_TEXTURE_2D, etc. */
1009 gl_texture_index TargetIndex; /**< The gl_texture_unit::CurrentTex index.
1010 Only valid when Target is valid. */
1011
1012 struct gl_sampler_object Sampler;
1013
1014 GLenum DepthMode; /**< GL_ARB_depth_texture */
1015
1016 GLfloat Priority; /**< in [0,1] */
1017 GLint BaseLevel; /**< min mipmap level, OpenGL 1.2 */
1018 GLint MaxLevel; /**< max mipmap level, OpenGL 1.2 */
1019 GLint ImmutableLevels; /**< ES 3.0 / ARB_texture_view */
1020 GLint _MaxLevel; /**< actual max mipmap level (q in the spec) */
1021 GLfloat _MaxLambda; /**< = _MaxLevel - BaseLevel (q - p in spec) */
1022 GLint CropRect[4]; /**< GL_OES_draw_texture */
1023 GLenum Swizzle[4]; /**< GL_EXT_texture_swizzle */
1024 GLuint _Swizzle; /**< same as Swizzle, but SWIZZLE_* format */
1025 GLboolean GenerateMipmap; /**< GL_SGIS_generate_mipmap */
1026 GLboolean _BaseComplete; /**< Is the base texture level valid? */
1027 GLboolean _MipmapComplete; /**< Is the whole mipmap valid? */
1028 GLboolean _IsIntegerFormat; /**< Does the texture store integer values? */
1029 GLboolean _RenderToTexture; /**< Any rendering to this texture? */
1030 GLboolean Purgeable; /**< Is the buffer purgeable under memory
1031 pressure? */
1032 GLboolean Immutable; /**< GL_ARB_texture_storage */
1033 GLboolean _IsFloat; /**< GL_OES_float_texture */
1034 GLboolean _IsHalfFloat; /**< GL_OES_half_float_texture */
1035 bool StencilSampling; /**< Should we sample stencil instead of depth? */
1036 bool HandleAllocated; /**< GL_ARB_bindless_texture */
1037
1038 GLuint MinLevel; /**< GL_ARB_texture_view */
1039 GLuint MinLayer; /**< GL_ARB_texture_view */
1040 GLuint NumLevels; /**< GL_ARB_texture_view */
1041 GLuint NumLayers; /**< GL_ARB_texture_view */
1042
1043 /** GL_EXT_memory_object */
1044 GLenum TextureTiling;
1045
1046 /** Actual texture images, indexed by [cube face] and [mipmap level] */
1047 struct gl_texture_image *Image[MAX_FACES][MAX_TEXTURE_LEVELS];
1048
1049 /** GL_ARB_texture_buffer_object */
1050 struct gl_buffer_object *BufferObject;
1051 GLenum BufferObjectFormat;
1052 /** Equivalent Mesa format for BufferObjectFormat. */
1053 mesa_format _BufferObjectFormat;
1054 /** GL_ARB_texture_buffer_range */
1055 GLintptr BufferOffset;
1056 GLsizeiptr BufferSize; /**< if this is -1, use BufferObject->Size instead */
1057
1058 /** GL_OES_EGL_image_external */
1059 GLint RequiredTextureImageUnits;
1060
1061 /** GL_ARB_shader_image_load_store */
1062 GLenum ImageFormatCompatibilityType;
1063
1064 /** GL_ARB_bindless_texture */
1065 struct util_dynarray SamplerHandles;
1066 struct util_dynarray ImageHandles;
1067 };
1068
1069
1070 /** Up to four combiner sources are possible with GL_NV_texture_env_combine4 */
1071 #define MAX_COMBINER_TERMS 4
1072
1073
1074 /**
1075 * Texture combine environment state.
1076 */
1077 struct gl_tex_env_combine_state
1078 {
1079 GLenum ModeRGB; /**< GL_REPLACE, GL_DECAL, GL_ADD, etc. */
1080 GLenum ModeA; /**< GL_REPLACE, GL_DECAL, GL_ADD, etc. */
1081 /** Source terms: GL_PRIMARY_COLOR, GL_TEXTURE, etc */
1082 GLenum SourceRGB[MAX_COMBINER_TERMS];
1083 GLenum SourceA[MAX_COMBINER_TERMS];
1084 /** Source operands: GL_SRC_COLOR, GL_ONE_MINUS_SRC_COLOR, etc */
1085 GLenum OperandRGB[MAX_COMBINER_TERMS];
1086 GLenum OperandA[MAX_COMBINER_TERMS];
1087 GLuint ScaleShiftRGB; /**< 0, 1 or 2 */
1088 GLuint ScaleShiftA; /**< 0, 1 or 2 */
1089 GLuint _NumArgsRGB; /**< Number of inputs used for the RGB combiner */
1090 GLuint _NumArgsA; /**< Number of inputs used for the A combiner */
1091 };
1092
1093
1094 /** Compressed TexEnv effective Combine mode */
1095 enum gl_tex_env_mode
1096 {
1097 TEXENV_MODE_REPLACE, /* r = a0 */
1098 TEXENV_MODE_MODULATE, /* r = a0 * a1 */
1099 TEXENV_MODE_ADD, /* r = a0 + a1 */
1100 TEXENV_MODE_ADD_SIGNED, /* r = a0 + a1 - 0.5 */
1101 TEXENV_MODE_INTERPOLATE, /* r = a0 * a2 + a1 * (1 - a2) */
1102 TEXENV_MODE_SUBTRACT, /* r = a0 - a1 */
1103 TEXENV_MODE_DOT3_RGB, /* r = a0 . a1 */
1104 TEXENV_MODE_DOT3_RGB_EXT, /* r = a0 . a1 */
1105 TEXENV_MODE_DOT3_RGBA, /* r = a0 . a1 */
1106 TEXENV_MODE_DOT3_RGBA_EXT, /* r = a0 . a1 */
1107 TEXENV_MODE_MODULATE_ADD_ATI, /* r = a0 * a2 + a1 */
1108 TEXENV_MODE_MODULATE_SIGNED_ADD_ATI, /* r = a0 * a2 + a1 - 0.5 */
1109 TEXENV_MODE_MODULATE_SUBTRACT_ATI, /* r = a0 * a2 - a1 */
1110 TEXENV_MODE_ADD_PRODUCTS_NV, /* r = a0 * a1 + a2 * a3 */
1111 TEXENV_MODE_ADD_PRODUCTS_SIGNED_NV, /* r = a0 * a1 + a2 * a3 - 0.5 */
1112 };
1113
1114
1115 /** Compressed TexEnv Combine source */
1116 enum gl_tex_env_source
1117 {
1118 TEXENV_SRC_TEXTURE0,
1119 TEXENV_SRC_TEXTURE1,
1120 TEXENV_SRC_TEXTURE2,
1121 TEXENV_SRC_TEXTURE3,
1122 TEXENV_SRC_TEXTURE4,
1123 TEXENV_SRC_TEXTURE5,
1124 TEXENV_SRC_TEXTURE6,
1125 TEXENV_SRC_TEXTURE7,
1126 TEXENV_SRC_TEXTURE,
1127 TEXENV_SRC_PREVIOUS,
1128 TEXENV_SRC_PRIMARY_COLOR,
1129 TEXENV_SRC_CONSTANT,
1130 TEXENV_SRC_ZERO,
1131 TEXENV_SRC_ONE,
1132 };
1133
1134
1135 /** Compressed TexEnv Combine operand */
1136 enum gl_tex_env_operand
1137 {
1138 TEXENV_OPR_COLOR,
1139 TEXENV_OPR_ONE_MINUS_COLOR,
1140 TEXENV_OPR_ALPHA,
1141 TEXENV_OPR_ONE_MINUS_ALPHA,
1142 };
1143
1144
1145 /** Compressed TexEnv Combine argument */
1146 struct gl_tex_env_argument
1147 {
1148 #ifdef __GNUC__
1149 __extension__ uint8_t Source:4; /**< TEXENV_SRC_x */
1150 __extension__ uint8_t Operand:2; /**< TEXENV_OPR_x */
1151 #else
1152 uint8_t Source; /**< SRC_x */
1153 uint8_t Operand; /**< OPR_x */
1154 #endif
1155 };
1156
1157
1158 /***
1159 * Compressed TexEnv Combine state.
1160 */
1161 struct gl_tex_env_combine_packed
1162 {
1163 uint32_t ModeRGB:4; /**< Effective mode for RGB as 4 bits */
1164 uint32_t ModeA:4; /**< Effective mode for RGB as 4 bits */
1165 uint32_t ScaleShiftRGB:2; /**< 0, 1 or 2 */
1166 uint32_t ScaleShiftA:2; /**< 0, 1 or 2 */
1167 uint32_t NumArgsRGB:3; /**< Number of inputs used for the RGB combiner */
1168 uint32_t NumArgsA:3; /**< Number of inputs used for the A combiner */
1169 /** Source arguments in a packed manner */
1170 struct gl_tex_env_argument ArgsRGB[MAX_COMBINER_TERMS];
1171 struct gl_tex_env_argument ArgsA[MAX_COMBINER_TERMS];
1172 };
1173
1174
1175 /**
1176 * TexGenEnabled flags.
1177 */
1178 /*@{*/
1179 #define S_BIT 1
1180 #define T_BIT 2
1181 #define R_BIT 4
1182 #define Q_BIT 8
1183 #define STR_BITS (S_BIT | T_BIT | R_BIT)
1184 /*@}*/
1185
1186
1187 /**
1188 * Bit flag versions of the corresponding GL_ constants.
1189 */
1190 /*@{*/
1191 #define TEXGEN_SPHERE_MAP 0x1
1192 #define TEXGEN_OBJ_LINEAR 0x2
1193 #define TEXGEN_EYE_LINEAR 0x4
1194 #define TEXGEN_REFLECTION_MAP_NV 0x8
1195 #define TEXGEN_NORMAL_MAP_NV 0x10
1196
1197 #define TEXGEN_NEED_NORMALS (TEXGEN_SPHERE_MAP | \
1198 TEXGEN_REFLECTION_MAP_NV | \
1199 TEXGEN_NORMAL_MAP_NV)
1200 #define TEXGEN_NEED_EYE_COORD (TEXGEN_SPHERE_MAP | \
1201 TEXGEN_REFLECTION_MAP_NV | \
1202 TEXGEN_NORMAL_MAP_NV | \
1203 TEXGEN_EYE_LINEAR)
1204 /*@}*/
1205
1206
1207
1208 /** Tex-gen enabled for texture unit? */
1209 #define ENABLE_TEXGEN(unit) (1 << (unit))
1210
1211 /** Non-identity texture matrix for texture unit? */
1212 #define ENABLE_TEXMAT(unit) (1 << (unit))
1213
1214
1215 /**
1216 * Texture coord generation state.
1217 */
1218 struct gl_texgen
1219 {
1220 GLenum Mode; /**< GL_EYE_LINEAR, GL_SPHERE_MAP, etc */
1221 GLbitfield _ModeBit; /**< TEXGEN_x bit corresponding to Mode */
1222 GLfloat ObjectPlane[4];
1223 GLfloat EyePlane[4];
1224 };
1225
1226
1227 /**
1228 * Texture unit state. Contains enable flags, texture environment/function/
1229 * combiners, texgen state, and pointers to current texture objects.
1230 */
1231 struct gl_texture_unit
1232 {
1233 GLbitfield Enabled; /**< bitmask of TEXTURE_*_BIT flags */
1234
1235 GLenum EnvMode; /**< GL_MODULATE, GL_DECAL, GL_BLEND, etc. */
1236 GLclampf EnvColor[4];
1237 GLfloat EnvColorUnclamped[4];
1238
1239 struct gl_texgen GenS;
1240 struct gl_texgen GenT;
1241 struct gl_texgen GenR;
1242 struct gl_texgen GenQ;
1243 GLbitfield TexGenEnabled; /**< Bitwise-OR of [STRQ]_BIT values */
1244 GLbitfield _GenFlags; /**< Bitwise-OR of Gen[STRQ]._ModeBit */
1245
1246 GLfloat LodBias; /**< for biasing mipmap levels */
1247
1248 /** Texture targets that have a non-default texture bound */
1249 GLbitfield _BoundTextures;
1250
1251 /** Current sampler object (GL_ARB_sampler_objects) */
1252 struct gl_sampler_object *Sampler;
1253
1254 /**
1255 * \name GL_EXT_texture_env_combine
1256 */
1257 struct gl_tex_env_combine_state Combine;
1258
1259 /**
1260 * Derived state based on \c EnvMode and the \c BaseFormat of the
1261 * currently enabled texture.
1262 */
1263 struct gl_tex_env_combine_state _EnvMode;
1264
1265 /**
1266 * Currently enabled combiner state. This will point to either
1267 * \c Combine or \c _EnvMode.
1268 */
1269 struct gl_tex_env_combine_state *_CurrentCombine;
1270
1271 /** Current texture object pointers */
1272 struct gl_texture_object *CurrentTex[NUM_TEXTURE_TARGETS];
1273
1274 /** Points to highest priority, complete and enabled texture object */
1275 struct gl_texture_object *_Current;
1276
1277 /** Current compressed TexEnv & Combine state */
1278 struct gl_tex_env_combine_packed _CurrentCombinePacked;
1279 };
1280
1281
1282 /**
1283 * Texture attribute group (GL_TEXTURE_BIT).
1284 */
1285 struct gl_texture_attrib
1286 {
1287 GLuint CurrentUnit; /**< GL_ACTIVE_TEXTURE */
1288
1289 /** GL_ARB_seamless_cubemap */
1290 GLboolean CubeMapSeamless;
1291
1292 struct gl_texture_object *ProxyTex[NUM_TEXTURE_TARGETS];
1293
1294 /** GL_ARB_texture_buffer_object */
1295 struct gl_buffer_object *BufferObject;
1296
1297 /** Texture coord units/sets used for fragment texturing */
1298 GLbitfield _EnabledCoordUnits;
1299
1300 /** Texture coord units that have texgen enabled */
1301 GLbitfield _TexGenEnabled;
1302
1303 /** Texture coord units that have non-identity matrices */
1304 GLbitfield _TexMatEnabled;
1305
1306 /** Bitwise-OR of all Texture.Unit[i]._GenFlags */
1307 GLbitfield _GenFlags;
1308
1309 /** Largest index of a texture unit with _Current != NULL. */
1310 GLint _MaxEnabledTexImageUnit;
1311
1312 /** Largest index + 1 of texture units that have had any CurrentTex set. */
1313 GLint NumCurrentTexUsed;
1314
1315 struct gl_texture_unit Unit[MAX_COMBINED_TEXTURE_IMAGE_UNITS];
1316 };
1317
1318
1319 /**
1320 * Data structure representing a single clip plane (e.g. one of the elements
1321 * of the ctx->Transform.EyeUserPlane or ctx->Transform._ClipUserPlane array).
1322 */
1323 typedef GLfloat gl_clip_plane[4];
1324
1325
1326 /**
1327 * Transformation attribute group (GL_TRANSFORM_BIT).
1328 */
1329 struct gl_transform_attrib
1330 {
1331 GLenum MatrixMode; /**< Matrix mode */
1332 gl_clip_plane EyeUserPlane[MAX_CLIP_PLANES]; /**< User clip planes */
1333 gl_clip_plane _ClipUserPlane[MAX_CLIP_PLANES]; /**< derived */
1334 GLbitfield ClipPlanesEnabled; /**< on/off bitmask */
1335 GLboolean Normalize; /**< Normalize all normals? */
1336 GLboolean RescaleNormals; /**< GL_EXT_rescale_normal */
1337 GLboolean RasterPositionUnclipped; /**< GL_IBM_rasterpos_clip */
1338 GLboolean DepthClamp; /**< GL_ARB_depth_clamp */
1339 /** GL_ARB_clip_control */
1340 GLenum ClipOrigin; /**< GL_LOWER_LEFT or GL_UPPER_LEFT */
1341 GLenum ClipDepthMode; /**< GL_NEGATIVE_ONE_TO_ONE or GL_ZERO_TO_ONE */
1342 };
1343
1344
1345 /**
1346 * Viewport attribute group (GL_VIEWPORT_BIT).
1347 */
1348 struct gl_viewport_attrib
1349 {
1350 GLfloat X, Y; /**< position */
1351 GLfloat Width, Height; /**< size */
1352 GLdouble Near, Far; /**< Depth buffer range */
1353 };
1354
1355
1356 typedef enum {
1357 MAP_USER,
1358 MAP_INTERNAL,
1359
1360 MAP_COUNT
1361 } gl_map_buffer_index;
1362
1363
1364 /**
1365 * Fields describing a mapped buffer range.
1366 */
1367 struct gl_buffer_mapping {
1368 GLbitfield AccessFlags; /**< Mask of GL_MAP_x_BIT flags */
1369 GLvoid *Pointer; /**< User-space address of mapping */
1370 GLintptr Offset; /**< Mapped offset */
1371 GLsizeiptr Length; /**< Mapped length */
1372 };
1373
1374
1375 /**
1376 * Usages we've seen for a buffer object.
1377 */
1378 typedef enum {
1379 USAGE_UNIFORM_BUFFER = 0x1,
1380 USAGE_TEXTURE_BUFFER = 0x2,
1381 USAGE_ATOMIC_COUNTER_BUFFER = 0x4,
1382 USAGE_SHADER_STORAGE_BUFFER = 0x8,
1383 USAGE_TRANSFORM_FEEDBACK_BUFFER = 0x10,
1384 USAGE_PIXEL_PACK_BUFFER = 0x20,
1385 USAGE_DISABLE_MINMAX_CACHE = 0x40,
1386 } gl_buffer_usage;
1387
1388
1389 /**
1390 * GL_ARB_vertex/pixel_buffer_object buffer object
1391 */
1392 struct gl_buffer_object
1393 {
1394 mtx_t Mutex;
1395 GLint RefCount;
1396 GLuint Name;
1397 GLchar *Label; /**< GL_KHR_debug */
1398 GLenum Usage; /**< GL_STREAM_DRAW_ARB, GL_STREAM_READ_ARB, etc. */
1399 GLbitfield StorageFlags; /**< GL_MAP_PERSISTENT_BIT, etc. */
1400 GLsizeiptrARB Size; /**< Size of buffer storage in bytes */
1401 GLubyte *Data; /**< Location of storage either in RAM or VRAM. */
1402 GLboolean DeletePending; /**< true if buffer object is removed from the hash */
1403 GLboolean Written; /**< Ever written to? (for debugging) */
1404 GLboolean Purgeable; /**< Is the buffer purgeable under memory pressure? */
1405 GLboolean Immutable; /**< GL_ARB_buffer_storage */
1406 gl_buffer_usage UsageHistory; /**< How has this buffer been used so far? */
1407
1408 /** Counters used for buffer usage warnings */
1409 GLuint NumSubDataCalls;
1410 GLuint NumMapBufferWriteCalls;
1411
1412 struct gl_buffer_mapping Mappings[MAP_COUNT];
1413
1414 /** Memoization of min/max index computations for static index buffers */
1415 struct hash_table *MinMaxCache;
1416 unsigned MinMaxCacheHitIndices;
1417 unsigned MinMaxCacheMissIndices;
1418 bool MinMaxCacheDirty;
1419
1420 bool HandleAllocated; /**< GL_ARB_bindless_texture */
1421 };
1422
1423
1424 /**
1425 * Client pixel packing/unpacking attributes
1426 */
1427 struct gl_pixelstore_attrib
1428 {
1429 GLint Alignment;
1430 GLint RowLength;
1431 GLint SkipPixels;
1432 GLint SkipRows;
1433 GLint ImageHeight;
1434 GLint SkipImages;
1435 GLboolean SwapBytes;
1436 GLboolean LsbFirst;
1437 GLboolean Invert; /**< GL_MESA_pack_invert */
1438 GLint CompressedBlockWidth; /**< GL_ARB_compressed_texture_pixel_storage */
1439 GLint CompressedBlockHeight;
1440 GLint CompressedBlockDepth;
1441 GLint CompressedBlockSize;
1442 struct gl_buffer_object *BufferObj; /**< GL_ARB_pixel_buffer_object */
1443 };
1444
1445
1446 /**
1447 * Vertex array information which is derived from gl_array_attributes
1448 * and gl_vertex_buffer_binding information. Used by the VBO module and
1449 * device drivers.
1450 */
1451 struct gl_vertex_array
1452 {
1453 GLint Size; /**< components per element (1,2,3,4) */
1454 GLenum Type; /**< datatype: GL_FLOAT, GL_INT, etc */
1455 GLenum Format; /**< default: GL_RGBA, but may be GL_BGRA */
1456 GLsizei StrideB; /**< actual stride in bytes */
1457 GLuint _ElementSize; /**< size of each element in bytes */
1458 const GLubyte *Ptr; /**< Points to array data */
1459 GLboolean Normalized; /**< GL_ARB_vertex_program */
1460 GLboolean Integer; /**< Integer-valued? */
1461 GLboolean Doubles; /**< double precision values are not converted to floats */
1462 GLuint InstanceDivisor; /**< GL_ARB_instanced_arrays */
1463
1464 struct gl_buffer_object *BufferObj;/**< GL_ARB_vertex_buffer_object */
1465 };
1466
1467
1468 /**
1469 * Attributes to describe a vertex array.
1470 *
1471 * Contains the size, type, format and normalization flag,
1472 * along with the index of a vertex buffer binding point.
1473 *
1474 * Note that the Stride field corresponds to VERTEX_ATTRIB_ARRAY_STRIDE
1475 * and is only present for backwards compatibility reasons.
1476 * Rendering always uses VERTEX_BINDING_STRIDE.
1477 * The gl*Pointer() functions will set VERTEX_ATTRIB_ARRAY_STRIDE
1478 * and VERTEX_BINDING_STRIDE to the same value, while
1479 * glBindVertexBuffer() will only set VERTEX_BINDING_STRIDE.
1480 */
1481 struct gl_array_attributes
1482 {
1483 GLint Size; /**< Components per element (1,2,3,4) */
1484 GLenum Type; /**< Datatype: GL_FLOAT, GL_INT, etc */
1485 GLenum Format; /**< Default: GL_RGBA, but may be GL_BGRA */
1486 GLsizei Stride; /**< Stride as specified with gl*Pointer() */
1487 const GLubyte *Ptr; /**< Points to client array data. Not used when a VBO is bound */
1488 GLintptr RelativeOffset; /**< Offset of the first element relative to the binding offset */
1489 GLboolean Enabled; /**< Whether the array is enabled */
1490 GLboolean Normalized; /**< Fixed-point values are normalized when converted to floats */
1491 GLboolean Integer; /**< Fixed-point values are not converted to floats */
1492 GLboolean Doubles; /**< double precision values are not converted to floats */
1493 GLuint _ElementSize; /**< Size of each element in bytes */
1494 GLuint BufferBindingIndex; /**< Vertex buffer binding */
1495 };
1496
1497
1498 /**
1499 * This describes the buffer object used for a vertex array (or
1500 * multiple vertex arrays). If BufferObj points to the default/null
1501 * buffer object, then the vertex array lives in user memory and not a VBO.
1502 */
1503 struct gl_vertex_buffer_binding
1504 {
1505 GLintptr Offset; /**< User-specified offset */
1506 GLsizei Stride; /**< User-specified stride */
1507 GLuint InstanceDivisor; /**< GL_ARB_instanced_arrays */
1508 struct gl_buffer_object *BufferObj; /**< GL_ARB_vertex_buffer_object */
1509 GLbitfield64 _BoundArrays; /**< Arrays bound to this binding point */
1510 };
1511
1512
1513 /**
1514 * A representation of "Vertex Array Objects" (VAOs) from OpenGL 3.1+ /
1515 * the GL_ARB_vertex_array_object extension.
1516 */
1517 struct gl_vertex_array_object
1518 {
1519 /** Name of the VAO as received from glGenVertexArray. */
1520 GLuint Name;
1521
1522 GLint RefCount;
1523
1524 GLchar *Label; /**< GL_KHR_debug */
1525
1526 /**
1527 * Has this array object been bound?
1528 */
1529 GLboolean EverBound;
1530
1531 /**
1532 * Derived vertex attribute arrays
1533 *
1534 * This is a legacy data structure created from gl_vertex_attrib_array and
1535 * gl_vertex_buffer_binding, for compatibility with existing driver code.
1536 */
1537 struct gl_vertex_array _VertexAttrib[VERT_ATTRIB_MAX];
1538
1539 /** Vertex attribute arrays */
1540 struct gl_array_attributes VertexAttrib[VERT_ATTRIB_MAX];
1541
1542 /** Vertex buffer bindings */
1543 struct gl_vertex_buffer_binding BufferBinding[VERT_ATTRIB_MAX];
1544
1545 /** Mask indicating which vertex arrays have vertex buffer associated. */
1546 GLbitfield64 VertexAttribBufferMask;
1547
1548 /** Mask of VERT_BIT_* values indicating which arrays are enabled */
1549 GLbitfield64 _Enabled;
1550
1551 /** Mask of VERT_BIT_* values indicating changed/dirty arrays */
1552 GLbitfield64 NewArrays;
1553
1554 /** The index buffer (also known as the element array buffer in OpenGL). */
1555 struct gl_buffer_object *IndexBufferObj;
1556 };
1557
1558
1559 /** Used to signal when transitioning from one kind of drawing method
1560 * to another.
1561 */
1562 typedef enum {
1563 DRAW_NONE, /**< Initial value only */
1564 DRAW_BEGIN_END,
1565 DRAW_DISPLAY_LIST,
1566 DRAW_ARRAYS
1567 } gl_draw_method;
1568
1569 /**
1570 * Enum for the OpenGL APIs we know about and may support.
1571 *
1572 * NOTE: This must match the api_enum table in
1573 * src/mesa/main/get_hash_generator.py
1574 */
1575 typedef enum
1576 {
1577 API_OPENGL_COMPAT, /* legacy / compatibility contexts */
1578 API_OPENGLES,
1579 API_OPENGLES2,
1580 API_OPENGL_CORE,
1581 API_OPENGL_LAST = API_OPENGL_CORE
1582 } gl_api;
1583
1584 /**
1585 * Vertex array state
1586 */
1587 struct gl_array_attrib
1588 {
1589 /** Currently bound array object. */
1590 struct gl_vertex_array_object *VAO;
1591
1592 /** The default vertex array object */
1593 struct gl_vertex_array_object *DefaultVAO;
1594
1595 /** The last VAO accessed by a DSA function */
1596 struct gl_vertex_array_object *LastLookedUpVAO;
1597
1598 /** Array objects (GL_ARB_vertex_array_object) */
1599 struct _mesa_HashTable *Objects;
1600
1601 GLint ActiveTexture; /**< Client Active Texture */
1602 GLuint LockFirst; /**< GL_EXT_compiled_vertex_array */
1603 GLuint LockCount; /**< GL_EXT_compiled_vertex_array */
1604
1605 /**
1606 * \name Primitive restart controls
1607 *
1608 * Primitive restart is enabled if either \c PrimitiveRestart or
1609 * \c PrimitiveRestartFixedIndex is set.
1610 */
1611 /*@{*/
1612 GLboolean PrimitiveRestart;
1613 GLboolean PrimitiveRestartFixedIndex;
1614 GLboolean _PrimitiveRestart;
1615 GLuint RestartIndex;
1616 /*@}*/
1617
1618 /** One of the DRAW_xxx flags, not consumed by drivers */
1619 gl_draw_method DrawMethod;
1620
1621 /* GL_ARB_vertex_buffer_object */
1622 struct gl_buffer_object *ArrayBufferObj;
1623
1624 /**
1625 * Vertex arrays as consumed by a driver.
1626 * The array pointer is set up only by the VBO module.
1627 */
1628 const struct gl_vertex_array **_DrawArrays; /**< 0..VERT_ATTRIB_MAX-1 */
1629
1630 /** Legal array datatypes and the API for which they have been computed */
1631 GLbitfield LegalTypesMask;
1632 gl_api LegalTypesMaskAPI;
1633 };
1634
1635
1636 /**
1637 * Feedback buffer state
1638 */
1639 struct gl_feedback
1640 {
1641 GLenum Type;
1642 GLbitfield _Mask; /**< FB_* bits */
1643 GLfloat *Buffer;
1644 GLuint BufferSize;
1645 GLuint Count;
1646 };
1647
1648
1649 /**
1650 * Selection buffer state
1651 */
1652 struct gl_selection
1653 {
1654 GLuint *Buffer; /**< selection buffer */
1655 GLuint BufferSize; /**< size of the selection buffer */
1656 GLuint BufferCount; /**< number of values in the selection buffer */
1657 GLuint Hits; /**< number of records in the selection buffer */
1658 GLuint NameStackDepth; /**< name stack depth */
1659 GLuint NameStack[MAX_NAME_STACK_DEPTH]; /**< name stack */
1660 GLboolean HitFlag; /**< hit flag */
1661 GLfloat HitMinZ; /**< minimum hit depth */
1662 GLfloat HitMaxZ; /**< maximum hit depth */
1663 };
1664
1665
1666 /**
1667 * 1-D Evaluator control points
1668 */
1669 struct gl_1d_map
1670 {
1671 GLuint Order; /**< Number of control points */
1672 GLfloat u1, u2, du; /**< u1, u2, 1.0/(u2-u1) */
1673 GLfloat *Points; /**< Points to contiguous control points */
1674 };
1675
1676
1677 /**
1678 * 2-D Evaluator control points
1679 */
1680 struct gl_2d_map
1681 {
1682 GLuint Uorder; /**< Number of control points in U dimension */
1683 GLuint Vorder; /**< Number of control points in V dimension */
1684 GLfloat u1, u2, du;
1685 GLfloat v1, v2, dv;
1686 GLfloat *Points; /**< Points to contiguous control points */
1687 };
1688
1689
1690 /**
1691 * All evaluator control point state
1692 */
1693 struct gl_evaluators
1694 {
1695 /**
1696 * \name 1-D maps
1697 */
1698 /*@{*/
1699 struct gl_1d_map Map1Vertex3;
1700 struct gl_1d_map Map1Vertex4;
1701 struct gl_1d_map Map1Index;
1702 struct gl_1d_map Map1Color4;
1703 struct gl_1d_map Map1Normal;
1704 struct gl_1d_map Map1Texture1;
1705 struct gl_1d_map Map1Texture2;
1706 struct gl_1d_map Map1Texture3;
1707 struct gl_1d_map Map1Texture4;
1708 /*@}*/
1709
1710 /**
1711 * \name 2-D maps
1712 */
1713 /*@{*/
1714 struct gl_2d_map Map2Vertex3;
1715 struct gl_2d_map Map2Vertex4;
1716 struct gl_2d_map Map2Index;
1717 struct gl_2d_map Map2Color4;
1718 struct gl_2d_map Map2Normal;
1719 struct gl_2d_map Map2Texture1;
1720 struct gl_2d_map Map2Texture2;
1721 struct gl_2d_map Map2Texture3;
1722 struct gl_2d_map Map2Texture4;
1723 /*@}*/
1724 };
1725
1726
1727 struct gl_transform_feedback_varying_info
1728 {
1729 char *Name;
1730 GLenum Type;
1731 GLint BufferIndex;
1732 GLint Size;
1733 GLint Offset;
1734 };
1735
1736
1737 /**
1738 * Per-output info vertex shaders for transform feedback.
1739 */
1740 struct gl_transform_feedback_output
1741 {
1742 uint32_t OutputRegister;
1743 uint32_t OutputBuffer;
1744 uint32_t NumComponents;
1745 uint32_t StreamId;
1746
1747 /** offset (in DWORDs) of this output within the interleaved structure */
1748 uint32_t DstOffset;
1749
1750 /**
1751 * Offset into the output register of the data to output. For example,
1752 * if NumComponents is 2 and ComponentOffset is 1, then the data to
1753 * offset is in the y and z components of the output register.
1754 */
1755 uint32_t ComponentOffset;
1756 };
1757
1758
1759 struct gl_transform_feedback_buffer
1760 {
1761 uint32_t Binding;
1762
1763 uint32_t NumVaryings;
1764
1765 /**
1766 * Total number of components stored in each buffer. This may be used by
1767 * hardware back-ends to determine the correct stride when interleaving
1768 * multiple transform feedback outputs in the same buffer.
1769 */
1770 uint32_t Stride;
1771
1772 /**
1773 * Which transform feedback stream this buffer binding is associated with.
1774 */
1775 uint32_t Stream;
1776 };
1777
1778
1779 /** Post-link transform feedback info. */
1780 struct gl_transform_feedback_info
1781 {
1782 /* Was xfb enabled via the api or in shader layout qualifiers */
1783 bool api_enabled;
1784
1785 unsigned NumOutputs;
1786
1787 /* Bitmask of active buffer indices. */
1788 unsigned ActiveBuffers;
1789
1790 struct gl_transform_feedback_output *Outputs;
1791
1792 /** Transform feedback varyings used for the linking of this shader program.
1793 *
1794 * Use for glGetTransformFeedbackVarying().
1795 */
1796 struct gl_transform_feedback_varying_info *Varyings;
1797 GLint NumVarying;
1798
1799 struct gl_transform_feedback_buffer Buffers[MAX_FEEDBACK_BUFFERS];
1800 };
1801
1802
1803 /**
1804 * Transform feedback object state
1805 */
1806 struct gl_transform_feedback_object
1807 {
1808 GLuint Name; /**< AKA the object ID */
1809 GLint RefCount;
1810 GLchar *Label; /**< GL_KHR_debug */
1811 GLboolean Active; /**< Is transform feedback enabled? */
1812 GLboolean Paused; /**< Is transform feedback paused? */
1813 GLboolean EndedAnytime; /**< Has EndTransformFeedback been called
1814 at least once? */
1815 GLboolean EverBound; /**< Has this object been bound? */
1816
1817 /**
1818 * GLES: if Active is true, remaining number of primitives which can be
1819 * rendered without overflow. This is necessary to track because GLES
1820 * requires us to generate INVALID_OPERATION if a call to glDrawArrays or
1821 * glDrawArraysInstanced would overflow transform feedback buffers.
1822 * Undefined if Active is false.
1823 *
1824 * Not tracked for desktop GL since it's unnecessary.
1825 */
1826 unsigned GlesRemainingPrims;
1827
1828 /**
1829 * The program active when BeginTransformFeedback() was called.
1830 * When active and unpaused, this equals ctx->Shader.CurrentProgram[stage],
1831 * where stage is the pipeline stage that is the source of data for
1832 * transform feedback.
1833 */
1834 struct gl_program *program;
1835
1836 /** The feedback buffers */
1837 GLuint BufferNames[MAX_FEEDBACK_BUFFERS];
1838 struct gl_buffer_object *Buffers[MAX_FEEDBACK_BUFFERS];
1839
1840 /** Start of feedback data in dest buffer */
1841 GLintptr Offset[MAX_FEEDBACK_BUFFERS];
1842
1843 /**
1844 * Max data to put into dest buffer (in bytes). Computed based on
1845 * RequestedSize and the actual size of the buffer.
1846 */
1847 GLsizeiptr Size[MAX_FEEDBACK_BUFFERS];
1848
1849 /**
1850 * Size that was specified when the buffer was bound. If the buffer was
1851 * bound with glBindBufferBase() or glBindBufferOffsetEXT(), this value is
1852 * zero.
1853 */
1854 GLsizeiptr RequestedSize[MAX_FEEDBACK_BUFFERS];
1855 };
1856
1857
1858 /**
1859 * Context state for transform feedback.
1860 */
1861 struct gl_transform_feedback_state
1862 {
1863 GLenum Mode; /**< GL_POINTS, GL_LINES or GL_TRIANGLES */
1864
1865 /** The general binding point (GL_TRANSFORM_FEEDBACK_BUFFER) */
1866 struct gl_buffer_object *CurrentBuffer;
1867
1868 /** The table of all transform feedback objects */
1869 struct _mesa_HashTable *Objects;
1870
1871 /** The current xform-fb object (GL_TRANSFORM_FEEDBACK_BINDING) */
1872 struct gl_transform_feedback_object *CurrentObject;
1873
1874 /** The default xform-fb object (Name==0) */
1875 struct gl_transform_feedback_object *DefaultObject;
1876 };
1877
1878
1879 /**
1880 * A "performance monitor" as described in AMD_performance_monitor.
1881 */
1882 struct gl_perf_monitor_object
1883 {
1884 GLuint Name;
1885
1886 /** True if the monitor is currently active (Begin called but not End). */
1887 GLboolean Active;
1888
1889 /**
1890 * True if the monitor has ended.
1891 *
1892 * This is distinct from !Active because it may never have began.
1893 */
1894 GLboolean Ended;
1895
1896 /**
1897 * A list of groups with currently active counters.
1898 *
1899 * ActiveGroups[g] == n if there are n counters active from group 'g'.
1900 */
1901 unsigned *ActiveGroups;
1902
1903 /**
1904 * An array of bitsets, subscripted by group ID, then indexed by counter ID.
1905 *
1906 * Checking whether counter 'c' in group 'g' is active can be done via:
1907 *
1908 * BITSET_TEST(ActiveCounters[g], c)
1909 */
1910 GLuint **ActiveCounters;
1911 };
1912
1913
1914 union gl_perf_monitor_counter_value
1915 {
1916 float f;
1917 uint64_t u64;
1918 uint32_t u32;
1919 };
1920
1921
1922 struct gl_perf_monitor_counter
1923 {
1924 /** Human readable name for the counter. */
1925 const char *Name;
1926
1927 /**
1928 * Data type of the counter. Valid values are FLOAT, UNSIGNED_INT,
1929 * UNSIGNED_INT64_AMD, and PERCENTAGE_AMD.
1930 */
1931 GLenum Type;
1932
1933 /** Minimum counter value. */
1934 union gl_perf_monitor_counter_value Minimum;
1935
1936 /** Maximum counter value. */
1937 union gl_perf_monitor_counter_value Maximum;
1938 };
1939
1940
1941 struct gl_perf_monitor_group
1942 {
1943 /** Human readable name for the group. */
1944 const char *Name;
1945
1946 /**
1947 * Maximum number of counters in this group which can be active at the
1948 * same time.
1949 */
1950 GLuint MaxActiveCounters;
1951
1952 /** Array of counters within this group. */
1953 const struct gl_perf_monitor_counter *Counters;
1954 GLuint NumCounters;
1955 };
1956
1957
1958 /**
1959 * A query object instance as described in INTEL_performance_query.
1960 *
1961 * NB: We want to keep this and the corresponding backend structure
1962 * relatively lean considering that applications may expect to
1963 * allocate enough objects to be able to query around all draw calls
1964 * in a frame.
1965 */
1966 struct gl_perf_query_object
1967 {
1968 GLuint Id; /**< hash table ID/name */
1969 unsigned Used:1; /**< has been used for 1 or more queries */
1970 unsigned Active:1; /**< inside Begin/EndPerfQuery */
1971 unsigned Ready:1; /**< result is ready? */
1972 };
1973
1974
1975 /**
1976 * Context state for AMD_performance_monitor.
1977 */
1978 struct gl_perf_monitor_state
1979 {
1980 /** Array of performance monitor groups (indexed by group ID) */
1981 const struct gl_perf_monitor_group *Groups;
1982 GLuint NumGroups;
1983
1984 /** The table of all performance monitors. */
1985 struct _mesa_HashTable *Monitors;
1986 };
1987
1988
1989 /**
1990 * Context state for INTEL_performance_query.
1991 */
1992 struct gl_perf_query_state
1993 {
1994 struct _mesa_HashTable *Objects; /**< The table of all performance query objects */
1995 };
1996
1997
1998 /**
1999 * A bindless sampler object.
2000 */
2001 struct gl_bindless_sampler
2002 {
2003 /** Texture unit (set by glUniform1()). */
2004 GLubyte unit;
2005
2006 /** Whether this bindless sampler is bound to a unit. */
2007 GLboolean bound;
2008
2009 /** Texture Target (TEXTURE_1D/2D/3D/etc_INDEX). */
2010 gl_texture_index target;
2011
2012 /** Pointer to the base of the data. */
2013 GLvoid *data;
2014 };
2015
2016 /**
2017 * A bindless image object.
2018 */
2019 struct gl_bindless_image
2020 {
2021 /** Image unit (set by glUniform1()). */
2022 GLubyte unit;
2023
2024 /** Whether this bindless image is bound to a unit. */
2025 GLboolean bound;
2026
2027 /** Access qualifier (GL_READ_WRITE, GL_READ_ONLY, GL_WRITE_ONLY) */
2028 GLenum access;
2029
2030 /** Pointer to the base of the data. */
2031 GLvoid *data;
2032 };
2033
2034 /**
2035 * Names of the various vertex/fragment program register files, etc.
2036 *
2037 * NOTE: first four tokens must fit into 2 bits (see t_vb_arbprogram.c)
2038 * All values should fit in a 4-bit field.
2039 *
2040 * NOTE: PROGRAM_STATE_VAR, PROGRAM_CONSTANT, and PROGRAM_UNIFORM can all be
2041 * considered to be "uniform" variables since they can only be set outside
2042 * glBegin/End. They're also all stored in the same Parameters array.
2043 */
2044 typedef enum
2045 {
2046 PROGRAM_TEMPORARY, /**< machine->Temporary[] */
2047 PROGRAM_ARRAY, /**< Arrays & Matrixes */
2048 PROGRAM_INPUT, /**< machine->Inputs[] */
2049 PROGRAM_OUTPUT, /**< machine->Outputs[] */
2050 PROGRAM_STATE_VAR, /**< gl_program->Parameters[] */
2051 PROGRAM_CONSTANT, /**< gl_program->Parameters[] */
2052 PROGRAM_UNIFORM, /**< gl_program->Parameters[] */
2053 PROGRAM_WRITE_ONLY, /**< A dummy, write-only register */
2054 PROGRAM_ADDRESS, /**< machine->AddressReg */
2055 PROGRAM_SAMPLER, /**< for shader samplers, compile-time only */
2056 PROGRAM_SYSTEM_VALUE,/**< InstanceId, PrimitiveID, etc. */
2057 PROGRAM_UNDEFINED, /**< Invalid/TBD value */
2058 PROGRAM_IMMEDIATE, /**< Immediate value, used by TGSI */
2059 PROGRAM_BUFFER, /**< for shader buffers, compile-time only */
2060 PROGRAM_MEMORY, /**< for shared, global and local memory */
2061 PROGRAM_IMAGE, /**< for shader images, compile-time only */
2062 PROGRAM_FILE_MAX
2063 } gl_register_file;
2064
2065
2066 /**
2067 * Base class for any kind of program object
2068 */
2069 struct gl_program
2070 {
2071 /** FIXME: This must be first until we split shader_info from nir_shader */
2072 struct shader_info info;
2073
2074 GLuint Id;
2075 GLint RefCount;
2076 GLubyte *String; /**< Null-terminated program text */
2077
2078 GLenum Target; /**< GL_VERTEX/FRAGMENT_PROGRAM_ARB, GL_GEOMETRY_PROGRAM_NV */
2079 GLenum Format; /**< String encoding format */
2080
2081 GLboolean _Used; /**< Ever used for drawing? Used for debugging */
2082
2083 struct nir_shader *nir;
2084
2085 /* Saved and restored with metadata. Freed with ralloc. */
2086 void *driver_cache_blob;
2087 size_t driver_cache_blob_size;
2088
2089 bool is_arb_asm; /** Is this an ARB assembly-style program */
2090
2091 /** Is this program written to on disk shader cache */
2092 bool program_written_to_cache;
2093
2094 GLbitfield64 SecondaryOutputsWritten; /**< Subset of OutputsWritten outputs written with non-zero index. */
2095 GLbitfield TexturesUsed[MAX_COMBINED_TEXTURE_IMAGE_UNITS]; /**< TEXTURE_x_BIT bitmask */
2096 GLbitfield SamplersUsed; /**< Bitfield of which samplers are used */
2097 GLbitfield ShadowSamplers; /**< Texture units used for shadow sampling. */
2098 GLbitfield ExternalSamplersUsed; /**< Texture units used for samplerExternalOES */
2099
2100 /* Fragement shader only fields */
2101 GLboolean OriginUpperLeft;
2102 GLboolean PixelCenterInteger;
2103
2104 /** Named parameters, constants, etc. from program text */
2105 struct gl_program_parameter_list *Parameters;
2106
2107 /** Map from sampler unit to texture unit (set by glUniform1i()) */
2108 GLubyte SamplerUnits[MAX_SAMPLERS];
2109
2110 /* FIXME: We should be able to make this struct a union. However some
2111 * drivers (i915/fragment_programs, swrast/prog_execute) mix the use of
2112 * these fields, we should fix this.
2113 */
2114 struct {
2115 /** Fields used by GLSL programs */
2116 struct {
2117 /** Data shared by gl_program and gl_shader_program */
2118 struct gl_shader_program_data *data;
2119
2120 struct gl_active_atomic_buffer **AtomicBuffers;
2121
2122 /** Post-link transform feedback info. */
2123 struct gl_transform_feedback_info *LinkedTransformFeedback;
2124
2125 /**
2126 * Number of types for subroutine uniforms.
2127 */
2128 GLuint NumSubroutineUniformTypes;
2129
2130 /**
2131 * Subroutine uniform remap table
2132 * based on the program level uniform remap table.
2133 */
2134 GLuint NumSubroutineUniforms; /* non-sparse total */
2135 GLuint NumSubroutineUniformRemapTable;
2136 struct gl_uniform_storage **SubroutineUniformRemapTable;
2137
2138 /**
2139 * Num of subroutine functions for this stage and storage for them.
2140 */
2141 GLuint NumSubroutineFunctions;
2142 GLuint MaxSubroutineFunctionIndex;
2143 struct gl_subroutine_function *SubroutineFunctions;
2144
2145 /**
2146 * Map from image uniform index to image unit (set by glUniform1i())
2147 *
2148 * An image uniform index is associated with each image uniform by
2149 * the linker. The image index associated with each uniform is
2150 * stored in the \c gl_uniform_storage::image field.
2151 */
2152 GLubyte ImageUnits[MAX_IMAGE_UNIFORMS];
2153
2154 /**
2155 * Access qualifier specified in the shader for each image uniform
2156 * index. Either \c GL_READ_ONLY, \c GL_WRITE_ONLY or \c
2157 * GL_READ_WRITE.
2158 *
2159 * It may be different, though only more strict than the value of
2160 * \c gl_image_unit::Access for the corresponding image unit.
2161 */
2162 GLenum ImageAccess[MAX_IMAGE_UNIFORMS];
2163
2164 struct gl_uniform_block **UniformBlocks;
2165 struct gl_uniform_block **ShaderStorageBlocks;
2166
2167 /** Which texture target is being sampled
2168 * (TEXTURE_1D/2D/3D/etc_INDEX)
2169 */
2170 gl_texture_index SamplerTargets[MAX_SAMPLERS];
2171
2172 /**
2173 * Number of samplers declared with the bindless_sampler layout
2174 * qualifier as specified by ARB_bindless_texture.
2175 */
2176 GLuint NumBindlessSamplers;
2177 GLboolean HasBoundBindlessSampler;
2178 struct gl_bindless_sampler *BindlessSamplers;
2179
2180 /**
2181 * Number of images declared with the bindless_image layout qualifier
2182 * as specified by ARB_bindless_texture.
2183 */
2184 GLuint NumBindlessImages;
2185 GLboolean HasBoundBindlessImage;
2186 struct gl_bindless_image *BindlessImages;
2187
2188 union {
2189 struct {
2190 /**
2191 * A bitmask of gl_advanced_blend_mode values
2192 */
2193 GLbitfield BlendSupport;
2194 } fs;
2195 };
2196 } sh;
2197
2198 /** ARB assembly-style program fields */
2199 struct {
2200 struct prog_instruction *Instructions;
2201
2202 /**
2203 * Local parameters used by the program.
2204 *
2205 * It's dynamically allocated because it is rarely used (just
2206 * assembly-style programs), and MAX_PROGRAM_LOCAL_PARAMS entries
2207 * once it's allocated.
2208 */
2209 GLfloat (*LocalParams)[4];
2210
2211 /** Bitmask of which register files are read/written with indirect
2212 * addressing. Mask of (1 << PROGRAM_x) bits.
2213 */
2214 GLbitfield IndirectRegisterFiles;
2215
2216 /** Logical counts */
2217 /*@{*/
2218 GLuint NumInstructions;
2219 GLuint NumTemporaries;
2220 GLuint NumParameters;
2221 GLuint NumAttributes;
2222 GLuint NumAddressRegs;
2223 GLuint NumAluInstructions;
2224 GLuint NumTexInstructions;
2225 GLuint NumTexIndirections;
2226 /*@}*/
2227 /** Native, actual h/w counts */
2228 /*@{*/
2229 GLuint NumNativeInstructions;
2230 GLuint NumNativeTemporaries;
2231 GLuint NumNativeParameters;
2232 GLuint NumNativeAttributes;
2233 GLuint NumNativeAddressRegs;
2234 GLuint NumNativeAluInstructions;
2235 GLuint NumNativeTexInstructions;
2236 GLuint NumNativeTexIndirections;
2237 /*@}*/
2238
2239 /** Used by ARB assembly-style programs. Can only be true for vertex
2240 * programs.
2241 */
2242 GLboolean IsPositionInvariant;
2243 } arb;
2244 };
2245 };
2246
2247
2248 /**
2249 * State common to vertex and fragment programs.
2250 */
2251 struct gl_program_state
2252 {
2253 GLint ErrorPos; /* GL_PROGRAM_ERROR_POSITION_ARB/NV */
2254 const char *ErrorString; /* GL_PROGRAM_ERROR_STRING_ARB/NV */
2255 };
2256
2257
2258 /**
2259 * Context state for vertex programs.
2260 */
2261 struct gl_vertex_program_state
2262 {
2263 GLboolean Enabled; /**< User-set GL_VERTEX_PROGRAM_ARB/NV flag */
2264 GLboolean PointSizeEnabled; /**< GL_VERTEX_PROGRAM_POINT_SIZE_ARB/NV */
2265 GLboolean TwoSideEnabled; /**< GL_VERTEX_PROGRAM_TWO_SIDE_ARB/NV */
2266 /** Should fixed-function T&L be implemented with a vertex prog? */
2267 GLboolean _MaintainTnlProgram;
2268
2269 struct gl_program *Current; /**< User-bound vertex program */
2270
2271 /** Currently enabled and valid vertex program (including internal
2272 * programs, user-defined vertex programs and GLSL vertex shaders).
2273 * This is the program we must use when rendering.
2274 */
2275 struct gl_program *_Current;
2276
2277 GLfloat Parameters[MAX_PROGRAM_ENV_PARAMS][4]; /**< Env params */
2278
2279 /** Program to emulate fixed-function T&L (see above) */
2280 struct gl_program *_TnlProgram;
2281
2282 /** Cache of fixed-function programs */
2283 struct gl_program_cache *Cache;
2284
2285 GLboolean _Overriden;
2286 };
2287
2288 /**
2289 * Context state for tessellation control programs.
2290 */
2291 struct gl_tess_ctrl_program_state
2292 {
2293 /** Currently bound and valid shader. */
2294 struct gl_program *_Current;
2295
2296 GLint patch_vertices;
2297 GLfloat patch_default_outer_level[4];
2298 GLfloat patch_default_inner_level[2];
2299 };
2300
2301 /**
2302 * Context state for tessellation evaluation programs.
2303 */
2304 struct gl_tess_eval_program_state
2305 {
2306 /** Currently bound and valid shader. */
2307 struct gl_program *_Current;
2308 };
2309
2310 /**
2311 * Context state for geometry programs.
2312 */
2313 struct gl_geometry_program_state
2314 {
2315 /** Currently enabled and valid program (including internal programs
2316 * and compiled shader programs).
2317 */
2318 struct gl_program *_Current;
2319 };
2320
2321 /**
2322 * Context state for fragment programs.
2323 */
2324 struct gl_fragment_program_state
2325 {
2326 GLboolean Enabled; /**< User-set fragment program enable flag */
2327 /** Should fixed-function texturing be implemented with a fragment prog? */
2328 GLboolean _MaintainTexEnvProgram;
2329
2330 struct gl_program *Current; /**< User-bound fragment program */
2331
2332 /** Currently enabled and valid fragment program (including internal
2333 * programs, user-defined fragment programs and GLSL fragment shaders).
2334 * This is the program we must use when rendering.
2335 */
2336 struct gl_program *_Current;
2337
2338 GLfloat Parameters[MAX_PROGRAM_ENV_PARAMS][4]; /**< Env params */
2339
2340 /** Program to emulate fixed-function texture env/combine (see above) */
2341 struct gl_program *_TexEnvProgram;
2342
2343 /** Cache of fixed-function programs */
2344 struct gl_program_cache *Cache;
2345 };
2346
2347
2348 /**
2349 * Context state for compute programs.
2350 */
2351 struct gl_compute_program_state
2352 {
2353 /** Currently enabled and valid program (including internal programs
2354 * and compiled shader programs).
2355 */
2356 struct gl_program *_Current;
2357 };
2358
2359
2360 /**
2361 * ATI_fragment_shader runtime state
2362 */
2363
2364 struct atifs_instruction;
2365 struct atifs_setupinst;
2366
2367 /**
2368 * ATI fragment shader
2369 */
2370 struct ati_fragment_shader
2371 {
2372 GLuint Id;
2373 GLint RefCount;
2374 struct atifs_instruction *Instructions[2];
2375 struct atifs_setupinst *SetupInst[2];
2376 GLfloat Constants[8][4];
2377 GLbitfield LocalConstDef; /**< Indicates which constants have been set */
2378 GLubyte numArithInstr[2];
2379 GLubyte regsAssigned[2];
2380 GLubyte NumPasses; /**< 1 or 2 */
2381 GLubyte cur_pass;
2382 GLubyte last_optype;
2383 GLboolean interpinp1;
2384 GLboolean isValid;
2385 GLuint swizzlerq;
2386 struct gl_program *Program;
2387 };
2388
2389 /**
2390 * Context state for GL_ATI_fragment_shader
2391 */
2392 struct gl_ati_fragment_shader_state
2393 {
2394 GLboolean Enabled;
2395 GLboolean Compiling;
2396 GLfloat GlobalConstants[8][4];
2397 struct ati_fragment_shader *Current;
2398 };
2399
2400 /**
2401 * Shader subroutine function definition
2402 */
2403 struct gl_subroutine_function
2404 {
2405 char *name;
2406 int index;
2407 int num_compat_types;
2408 const struct glsl_type **types;
2409 };
2410
2411 /**
2412 * Shader information needed by both gl_shader and gl_linked shader.
2413 */
2414 struct gl_shader_info
2415 {
2416 /**
2417 * Tessellation Control shader state from layout qualifiers.
2418 */
2419 struct {
2420 /**
2421 * 0 - vertices not declared in shader, or
2422 * 1 .. GL_MAX_PATCH_VERTICES
2423 */
2424 GLint VerticesOut;
2425 } TessCtrl;
2426
2427 /**
2428 * Tessellation Evaluation shader state from layout qualifiers.
2429 */
2430 struct {
2431 /**
2432 * GL_TRIANGLES, GL_QUADS, GL_ISOLINES or PRIM_UNKNOWN if it's not set
2433 * in this shader.
2434 */
2435 GLenum PrimitiveMode;
2436
2437 enum gl_tess_spacing Spacing;
2438
2439 /**
2440 * GL_CW, GL_CCW, or 0 if it's not set in this shader.
2441 */
2442 GLenum VertexOrder;
2443 /**
2444 * 1, 0, or -1 if it's not set in this shader.
2445 */
2446 int PointMode;
2447 } TessEval;
2448
2449 /**
2450 * Geometry shader state from GLSL 1.50 layout qualifiers.
2451 */
2452 struct {
2453 GLint VerticesOut;
2454 /**
2455 * 0 - Invocations count not declared in shader, or
2456 * 1 .. MAX_GEOMETRY_SHADER_INVOCATIONS
2457 */
2458 GLint Invocations;
2459 /**
2460 * GL_POINTS, GL_LINES, GL_LINES_ADJACENCY, GL_TRIANGLES, or
2461 * GL_TRIANGLES_ADJACENCY, or PRIM_UNKNOWN if it's not set in this
2462 * shader.
2463 */
2464 GLenum InputType;
2465 /**
2466 * GL_POINTS, GL_LINE_STRIP or GL_TRIANGLE_STRIP, or PRIM_UNKNOWN if
2467 * it's not set in this shader.
2468 */
2469 GLenum OutputType;
2470 } Geom;
2471
2472 /**
2473 * Compute shader state from ARB_compute_shader and
2474 * ARB_compute_variable_group_size layout qualifiers.
2475 */
2476 struct {
2477 /**
2478 * Size specified using local_size_{x,y,z}, or all 0's to indicate that
2479 * it's not set in this shader.
2480 */
2481 unsigned LocalSize[3];
2482
2483 /**
2484 * Whether a variable work group size has been specified as defined by
2485 * ARB_compute_variable_group_size.
2486 */
2487 bool LocalSizeVariable;
2488 } Comp;
2489 };
2490
2491 /**
2492 * A linked GLSL shader object.
2493 */
2494 struct gl_linked_shader
2495 {
2496 gl_shader_stage Stage;
2497
2498 #ifdef DEBUG
2499 unsigned SourceChecksum;
2500 #endif
2501
2502 struct gl_program *Program; /**< Post-compile assembly code */
2503
2504 /**
2505 * \name Sampler tracking
2506 *
2507 * \note Each of these fields is only set post-linking.
2508 */
2509 /*@{*/
2510 GLbitfield shadow_samplers; /**< Samplers used for shadow sampling. */
2511 /*@}*/
2512
2513 /**
2514 * Number of default uniform block components used by this shader.
2515 *
2516 * This field is only set post-linking.
2517 */
2518 unsigned num_uniform_components;
2519
2520 /**
2521 * Number of combined uniform components used by this shader.
2522 *
2523 * This field is only set post-linking. It is the sum of the uniform block
2524 * sizes divided by sizeof(float), and num_uniform_compoennts.
2525 */
2526 unsigned num_combined_uniform_components;
2527
2528 struct exec_list *ir;
2529 struct exec_list *packed_varyings;
2530 struct exec_list *fragdata_arrays;
2531 struct glsl_symbol_table *symbols;
2532 };
2533
2534 static inline GLbitfield gl_external_samplers(struct gl_program *prog)
2535 {
2536 GLbitfield external_samplers = 0;
2537 GLbitfield mask = prog->SamplersUsed;
2538
2539 while (mask) {
2540 int idx = u_bit_scan(&mask);
2541 if (prog->sh.SamplerTargets[idx] == TEXTURE_EXTERNAL_INDEX)
2542 external_samplers |= (1 << idx);
2543 }
2544
2545 return external_samplers;
2546 }
2547
2548 /**
2549 * Compile status enum. compile_skipped is used to indicate the compile
2550 * was skipped due to the shader matching one that's been seen before by
2551 * the on-disk cache.
2552 */
2553 enum gl_compile_status
2554 {
2555 compile_failure = 0,
2556 compile_success,
2557 compile_skipped,
2558 compiled_no_opts
2559 };
2560
2561 /**
2562 * A GLSL shader object.
2563 */
2564 struct gl_shader
2565 {
2566 /** GL_FRAGMENT_SHADER || GL_VERTEX_SHADER || GL_GEOMETRY_SHADER_ARB ||
2567 * GL_TESS_CONTROL_SHADER || GL_TESS_EVALUATION_SHADER.
2568 * Must be the first field.
2569 */
2570 GLenum Type;
2571 gl_shader_stage Stage;
2572 GLuint Name; /**< AKA the handle */
2573 GLint RefCount; /**< Reference count */
2574 GLchar *Label; /**< GL_KHR_debug */
2575 unsigned char sha1[20]; /**< SHA1 hash of pre-processed source */
2576 GLboolean DeletePending;
2577 bool IsES; /**< True if this shader uses GLSL ES */
2578
2579 enum gl_compile_status CompileStatus;
2580
2581 #ifdef DEBUG
2582 unsigned SourceChecksum; /**< for debug/logging purposes */
2583 #endif
2584 const GLchar *Source; /**< Source code string */
2585
2586 const GLchar *FallbackSource; /**< Fallback string used by on-disk cache*/
2587
2588 GLchar *InfoLog;
2589
2590 unsigned Version; /**< GLSL version used for linking */
2591
2592 /**
2593 * A bitmask of gl_advanced_blend_mode values
2594 */
2595 GLbitfield BlendSupport;
2596
2597 struct exec_list *ir;
2598 struct glsl_symbol_table *symbols;
2599
2600 /**
2601 * Whether early fragment tests are enabled as defined by
2602 * ARB_shader_image_load_store.
2603 */
2604 bool EarlyFragmentTests;
2605
2606 bool ARB_fragment_coord_conventions_enable;
2607
2608 bool redeclares_gl_fragcoord;
2609 bool uses_gl_fragcoord;
2610
2611 bool PostDepthCoverage;
2612 bool InnerCoverage;
2613
2614 /**
2615 * Fragment shader state from GLSL 1.50 layout qualifiers.
2616 */
2617 bool origin_upper_left;
2618 bool pixel_center_integer;
2619
2620 /**
2621 * Whether bindless_sampler/bindless_image, and respectively
2622 * bound_sampler/bound_image are declared at global scope as defined by
2623 * ARB_bindless_texture.
2624 */
2625 bool bindless_sampler;
2626 bool bindless_image;
2627 bool bound_sampler;
2628 bool bound_image;
2629
2630 /** Global xfb_stride out qualifier if any */
2631 GLuint TransformFeedbackBufferStride[MAX_FEEDBACK_BUFFERS];
2632
2633 struct gl_shader_info info;
2634 };
2635
2636
2637 struct gl_uniform_buffer_variable
2638 {
2639 char *Name;
2640
2641 /**
2642 * Name of the uniform as seen by glGetUniformIndices.
2643 *
2644 * glGetUniformIndices requires that the block instance index \b not be
2645 * present in the name of queried uniforms.
2646 *
2647 * \note
2648 * \c gl_uniform_buffer_variable::IndexName and
2649 * \c gl_uniform_buffer_variable::Name may point to identical storage.
2650 */
2651 char *IndexName;
2652
2653 const struct glsl_type *Type;
2654 unsigned int Offset;
2655 GLboolean RowMajor;
2656 };
2657
2658
2659 struct gl_uniform_block
2660 {
2661 /** Declared name of the uniform block */
2662 char *Name;
2663
2664 /** Array of supplemental information about UBO ir_variables. */
2665 struct gl_uniform_buffer_variable *Uniforms;
2666 GLuint NumUniforms;
2667
2668 /**
2669 * Index (GL_UNIFORM_BLOCK_BINDING) into ctx->UniformBufferBindings[] to use
2670 * with glBindBufferBase to bind a buffer object to this uniform block.
2671 */
2672 GLuint Binding;
2673
2674 /**
2675 * Minimum size (in bytes) of a buffer object to back this uniform buffer
2676 * (GL_UNIFORM_BLOCK_DATA_SIZE).
2677 */
2678 GLuint UniformBufferSize;
2679
2680 /** Stages that reference this block */
2681 uint8_t stageref;
2682
2683 /**
2684 * Linearized array index for uniform block instance arrays
2685 *
2686 * Given a uniform block instance array declared with size
2687 * blk[s_0][s_1]..[s_m], the block referenced by blk[i_0][i_1]..[i_m] will
2688 * have the linearized array index
2689 *
2690 * m-1 m
2691 * i_m + ∑ i_j * ∏ s_k
2692 * j=0 k=j+1
2693 *
2694 * For a uniform block instance that is not an array, this is always 0.
2695 */
2696 uint8_t linearized_array_index;
2697
2698 /**
2699 * Layout specified in the shader
2700 *
2701 * This isn't accessible through the API, but it is used while
2702 * cross-validating uniform blocks.
2703 */
2704 enum glsl_interface_packing _Packing;
2705 GLboolean _RowMajor;
2706 };
2707
2708 /**
2709 * Structure that represents a reference to an atomic buffer from some
2710 * shader program.
2711 */
2712 struct gl_active_atomic_buffer
2713 {
2714 /** Uniform indices of the atomic counters declared within it. */
2715 GLuint *Uniforms;
2716 GLuint NumUniforms;
2717
2718 /** Binding point index associated with it. */
2719 GLuint Binding;
2720
2721 /** Minimum reasonable size it is expected to have. */
2722 GLuint MinimumSize;
2723
2724 /** Shader stages making use of it. */
2725 GLboolean StageReferences[MESA_SHADER_STAGES];
2726 };
2727
2728 /**
2729 * Data container for shader queries. This holds only the minimal
2730 * amount of required information for resource queries to work.
2731 */
2732 struct gl_shader_variable
2733 {
2734 /**
2735 * Declared type of the variable
2736 */
2737 const struct glsl_type *type;
2738
2739 /**
2740 * If the variable is in an interface block, this is the type of the block.
2741 */
2742 const struct glsl_type *interface_type;
2743
2744 /**
2745 * For variables inside structs (possibly recursively), this is the
2746 * outermost struct type.
2747 */
2748 const struct glsl_type *outermost_struct_type;
2749
2750 /**
2751 * Declared name of the variable
2752 */
2753 char *name;
2754
2755 /**
2756 * Storage location of the base of this variable
2757 *
2758 * The precise meaning of this field depends on the nature of the variable.
2759 *
2760 * - Vertex shader input: one of the values from \c gl_vert_attrib.
2761 * - Vertex shader output: one of the values from \c gl_varying_slot.
2762 * - Geometry shader input: one of the values from \c gl_varying_slot.
2763 * - Geometry shader output: one of the values from \c gl_varying_slot.
2764 * - Fragment shader input: one of the values from \c gl_varying_slot.
2765 * - Fragment shader output: one of the values from \c gl_frag_result.
2766 * - Uniforms: Per-stage uniform slot number for default uniform block.
2767 * - Uniforms: Index within the uniform block definition for UBO members.
2768 * - Non-UBO Uniforms: explicit location until linking then reused to
2769 * store uniform slot number.
2770 * - Other: This field is not currently used.
2771 *
2772 * If the variable is a uniform, shader input, or shader output, and the
2773 * slot has not been assigned, the value will be -1.
2774 */
2775 int location;
2776
2777 /**
2778 * Specifies the first component the variable is stored in as per
2779 * ARB_enhanced_layouts.
2780 */
2781 unsigned component:2;
2782
2783 /**
2784 * Output index for dual source blending.
2785 *
2786 * \note
2787 * The GLSL spec only allows the values 0 or 1 for the index in \b dual
2788 * source blending.
2789 */
2790 unsigned index:1;
2791
2792 /**
2793 * Specifies whether a shader input/output is per-patch in tessellation
2794 * shader stages.
2795 */
2796 unsigned patch:1;
2797
2798 /**
2799 * Storage class of the variable.
2800 *
2801 * \sa (n)ir_variable_mode
2802 */
2803 unsigned mode:4;
2804
2805 /**
2806 * Interpolation mode for shader inputs / outputs
2807 *
2808 * \sa glsl_interp_mode
2809 */
2810 unsigned interpolation:2;
2811
2812 /**
2813 * Was the location explicitly set in the shader?
2814 *
2815 * If the location is explicitly set in the shader, it \b cannot be changed
2816 * by the linker or by the API (e.g., calls to \c glBindAttribLocation have
2817 * no effect).
2818 */
2819 unsigned explicit_location:1;
2820
2821 /**
2822 * Precision qualifier.
2823 */
2824 unsigned precision:2;
2825 };
2826
2827 /**
2828 * Active resource in a gl_shader_program
2829 */
2830 struct gl_program_resource
2831 {
2832 GLenum Type; /** Program interface type. */
2833 const void *Data; /** Pointer to resource associated data structure. */
2834 uint8_t StageReferences; /** Bitmask of shader stage references. */
2835 };
2836
2837 /**
2838 * Link status enum. linking_skipped is used to indicate linking
2839 * was skipped due to the shader being loaded from the on-disk cache.
2840 */
2841 enum gl_link_status
2842 {
2843 linking_failure = 0,
2844 linking_success,
2845 linking_skipped
2846 };
2847
2848 /**
2849 * A data structure to be shared by gl_shader_program and gl_program.
2850 */
2851 struct gl_shader_program_data
2852 {
2853 GLint RefCount; /**< Reference count */
2854
2855 /** SHA1 hash of linked shader program */
2856 unsigned char sha1[20];
2857
2858 unsigned NumUniformStorage;
2859 unsigned NumHiddenUniforms;
2860 struct gl_uniform_storage *UniformStorage;
2861
2862 unsigned NumUniformBlocks;
2863 unsigned NumShaderStorageBlocks;
2864
2865 struct gl_uniform_block *UniformBlocks;
2866 struct gl_uniform_block *ShaderStorageBlocks;
2867
2868 struct gl_active_atomic_buffer *AtomicBuffers;
2869 unsigned NumAtomicBuffers;
2870
2871 /* Shader cache variables used during restore */
2872 unsigned NumUniformDataSlots;
2873 union gl_constant_value *UniformDataSlots;
2874
2875 bool cache_fallback;
2876
2877 /* TODO: This used by Gallium drivers to skip the cache on tgsi fallback.
2878 * All structures (gl_program, uniform storage, etc) will get recreated
2879 * even though we have already loaded them from cache. Once the i965 cache
2880 * lands we should switch to using the cache_fallback support.
2881 */
2882 bool skip_cache;
2883 GLboolean Validated;
2884
2885 /** List of all active resources after linking. */
2886 struct gl_program_resource *ProgramResourceList;
2887 unsigned NumProgramResourceList;
2888
2889 enum gl_link_status LinkStatus; /**< GL_LINK_STATUS */
2890 GLchar *InfoLog;
2891
2892 unsigned Version; /**< GLSL version used for linking */
2893
2894 /* Mask of stages this program was linked against */
2895 unsigned linked_stages;
2896 };
2897
2898 /**
2899 * A GLSL program object.
2900 * Basically a linked collection of vertex and fragment shaders.
2901 */
2902 struct gl_shader_program
2903 {
2904 GLenum Type; /**< Always GL_SHADER_PROGRAM (internal token) */
2905 GLuint Name; /**< aka handle or ID */
2906 GLchar *Label; /**< GL_KHR_debug */
2907 GLint RefCount; /**< Reference count */
2908 GLboolean DeletePending;
2909
2910 /**
2911 * Is the application intending to glGetProgramBinary this program?
2912 */
2913 GLboolean BinaryRetreivableHint;
2914
2915 /**
2916 * Indicates whether program can be bound for individual pipeline stages
2917 * using UseProgramStages after it is next linked.
2918 */
2919 GLboolean SeparateShader;
2920
2921 GLuint NumShaders; /**< number of attached shaders */
2922 struct gl_shader **Shaders; /**< List of attached the shaders */
2923
2924 /**
2925 * User-defined attribute bindings
2926 *
2927 * These are set via \c glBindAttribLocation and are used to direct the
2928 * GLSL linker. These are \b not the values used in the compiled shader,
2929 * and they are \b not the values returned by \c glGetAttribLocation.
2930 */
2931 struct string_to_uint_map *AttributeBindings;
2932
2933 /**
2934 * User-defined fragment data bindings
2935 *
2936 * These are set via \c glBindFragDataLocation and are used to direct the
2937 * GLSL linker. These are \b not the values used in the compiled shader,
2938 * and they are \b not the values returned by \c glGetFragDataLocation.
2939 */
2940 struct string_to_uint_map *FragDataBindings;
2941 struct string_to_uint_map *FragDataIndexBindings;
2942
2943 /**
2944 * Transform feedback varyings last specified by
2945 * glTransformFeedbackVaryings().
2946 *
2947 * For the current set of transform feedback varyings used for transform
2948 * feedback output, see LinkedTransformFeedback.
2949 */
2950 struct {
2951 GLenum BufferMode;
2952 /** Global xfb_stride out qualifier if any */
2953 GLuint BufferStride[MAX_FEEDBACK_BUFFERS];
2954 GLuint NumVarying;
2955 GLchar **VaryingNames; /**< Array [NumVarying] of char * */
2956 } TransformFeedback;
2957
2958 struct gl_program *last_vert_prog;
2959
2960 /** Post-link gl_FragDepth layout for ARB_conservative_depth. */
2961 enum gl_frag_depth_layout FragDepthLayout;
2962
2963 /**
2964 * Geometry shader state - copied into gl_program by
2965 * _mesa_copy_linked_program_data().
2966 */
2967 struct {
2968 GLint VerticesIn;
2969
2970 bool UsesEndPrimitive;
2971 bool UsesStreams;
2972 } Geom;
2973
2974 /**
2975 * Compute shader state - copied into gl_program by
2976 * _mesa_copy_linked_program_data().
2977 */
2978 struct {
2979 /**
2980 * Size of shared variables accessed by the compute shader.
2981 */
2982 unsigned SharedSize;
2983 } Comp;
2984
2985 /** Data shared by gl_program and gl_shader_program */
2986 struct gl_shader_program_data *data;
2987
2988 /**
2989 * Mapping from GL uniform locations returned by \c glUniformLocation to
2990 * UniformStorage entries. Arrays will have multiple contiguous slots
2991 * in the UniformRemapTable, all pointing to the same UniformStorage entry.
2992 */
2993 unsigned NumUniformRemapTable;
2994 struct gl_uniform_storage **UniformRemapTable;
2995
2996 /**
2997 * Sometimes there are empty slots left over in UniformRemapTable after we
2998 * allocate slots to explicit locations. This list stores the blocks of
2999 * continuous empty slots inside UniformRemapTable.
3000 */
3001 struct exec_list EmptyUniformLocations;
3002
3003 /**
3004 * Total number of explicit uniform location including inactive uniforms.
3005 */
3006 unsigned NumExplicitUniformLocations;
3007
3008 /**
3009 * Map of active uniform names to locations
3010 *
3011 * Maps any active uniform that is not an array element to a location.
3012 * Each active uniform, including individual structure members will appear
3013 * in this map. This roughly corresponds to the set of names that would be
3014 * enumerated by \c glGetActiveUniform.
3015 */
3016 struct string_to_uint_map *UniformHash;
3017
3018 GLboolean SamplersValidated; /**< Samplers validated against texture units? */
3019
3020 bool IsES; /**< True if this program uses GLSL ES */
3021
3022 /**
3023 * Per-stage shaders resulting from the first stage of linking.
3024 *
3025 * Set of linked shaders for this program. The array is accessed using the
3026 * \c MESA_SHADER_* defines. Entries for non-existent stages will be
3027 * \c NULL.
3028 */
3029 struct gl_linked_shader *_LinkedShaders[MESA_SHADER_STAGES];
3030
3031 /* True if any of the fragment shaders attached to this program use:
3032 * #extension ARB_fragment_coord_conventions: enable
3033 */
3034 GLboolean ARB_fragment_coord_conventions_enable;
3035 };
3036
3037
3038 #define GLSL_DUMP 0x1 /**< Dump shaders to stdout */
3039 #define GLSL_LOG 0x2 /**< Write shaders to files */
3040 #define GLSL_UNIFORMS 0x4 /**< Print glUniform calls */
3041 #define GLSL_NOP_VERT 0x8 /**< Force no-op vertex shaders */
3042 #define GLSL_NOP_FRAG 0x10 /**< Force no-op fragment shaders */
3043 #define GLSL_USE_PROG 0x20 /**< Log glUseProgram calls */
3044 #define GLSL_REPORT_ERRORS 0x40 /**< Print compilation errors */
3045 #define GLSL_DUMP_ON_ERROR 0x80 /**< Dump shaders to stderr on compile error */
3046 #define GLSL_CACHE_INFO 0x100 /**< Print debug information about shader cache */
3047 #define GLSL_CACHE_FALLBACK 0x200 /**< Force shader cache fallback paths */
3048
3049
3050 /**
3051 * Context state for GLSL vertex/fragment shaders.
3052 * Extended to support pipeline object
3053 */
3054 struct gl_pipeline_object
3055 {
3056 /** Name of the pipeline object as received from glGenProgramPipelines.
3057 * It would be 0 for shaders without separate shader objects.
3058 */
3059 GLuint Name;
3060
3061 GLint RefCount;
3062
3063 GLchar *Label; /**< GL_KHR_debug */
3064
3065 /**
3066 * Programs used for rendering
3067 *
3068 * There is a separate program set for each shader stage.
3069 */
3070 struct gl_program *CurrentProgram[MESA_SHADER_STAGES];
3071
3072 struct gl_shader_program *ReferencedPrograms[MESA_SHADER_STAGES];
3073
3074 /**
3075 * Program used by glUniform calls.
3076 *
3077 * Explicitly set by \c glUseProgram and \c glActiveProgramEXT.
3078 */
3079 struct gl_shader_program *ActiveProgram;
3080
3081 GLbitfield Flags; /**< Mask of GLSL_x flags */
3082
3083 GLboolean EverBound; /**< Has the pipeline object been created */
3084
3085 GLboolean Validated; /**< Pipeline Validation status */
3086
3087 GLchar *InfoLog;
3088 };
3089
3090 /**
3091 * Context state for GLSL pipeline shaders.
3092 */
3093 struct gl_pipeline_shader_state
3094 {
3095 /** Currently bound pipeline object. See _mesa_BindProgramPipeline() */
3096 struct gl_pipeline_object *Current;
3097
3098 /* Default Object to ensure that _Shader is never NULL */
3099 struct gl_pipeline_object *Default;
3100
3101 /** Pipeline objects */
3102 struct _mesa_HashTable *Objects;
3103 };
3104
3105 /**
3106 * Compiler options for a single GLSL shaders type
3107 */
3108 struct gl_shader_compiler_options
3109 {
3110 /** Driver-selectable options: */
3111 GLboolean EmitNoLoops;
3112 GLboolean EmitNoCont; /**< Emit CONT opcode? */
3113 GLboolean EmitNoMainReturn; /**< Emit CONT/RET opcodes? */
3114 GLboolean EmitNoPow; /**< Emit POW opcodes? */
3115 GLboolean EmitNoSat; /**< Emit SAT opcodes? */
3116 GLboolean LowerCombinedClipCullDistance; /** Lower gl_ClipDistance and
3117 * gl_CullDistance together from
3118 * float[8] to vec4[2]
3119 **/
3120
3121 /**
3122 * \name Forms of indirect addressing the driver cannot do.
3123 */
3124 /*@{*/
3125 GLboolean EmitNoIndirectInput; /**< No indirect addressing of inputs */
3126 GLboolean EmitNoIndirectOutput; /**< No indirect addressing of outputs */
3127 GLboolean EmitNoIndirectTemp; /**< No indirect addressing of temps */
3128 GLboolean EmitNoIndirectUniform; /**< No indirect addressing of constants */
3129 GLboolean EmitNoIndirectSampler; /**< No indirect addressing of samplers */
3130 /*@}*/
3131
3132 GLuint MaxIfDepth; /**< Maximum nested IF blocks */
3133 GLuint MaxUnrollIterations;
3134
3135 /**
3136 * Optimize code for array of structures backends.
3137 *
3138 * This is a proxy for:
3139 * - preferring DP4 instructions (rather than MUL/MAD) for
3140 * matrix * vector operations, such as position transformation.
3141 */
3142 GLboolean OptimizeForAOS;
3143
3144 GLboolean LowerBufferInterfaceBlocks; /**< Lower UBO and SSBO access to intrinsics. */
3145
3146 /** Clamp UBO and SSBO block indices so they don't go out-of-bounds. */
3147 GLboolean ClampBlockIndicesToArrayBounds;
3148
3149 const struct nir_shader_compiler_options *NirOptions;
3150 };
3151
3152
3153 /**
3154 * Occlusion/timer query object.
3155 */
3156 struct gl_query_object
3157 {
3158 GLenum Target; /**< The query target, when active */
3159 GLuint Id; /**< hash table ID/name */
3160 GLchar *Label; /**< GL_KHR_debug */
3161 GLuint64EXT Result; /**< the counter */
3162 GLboolean Active; /**< inside Begin/EndQuery */
3163 GLboolean Ready; /**< result is ready? */
3164 GLboolean EverBound;/**< has query object ever been bound */
3165 GLuint Stream; /**< The stream */
3166 };
3167
3168
3169 /**
3170 * Context state for query objects.
3171 */
3172 struct gl_query_state
3173 {
3174 struct _mesa_HashTable *QueryObjects;
3175 struct gl_query_object *CurrentOcclusionObject; /* GL_ARB_occlusion_query */
3176 struct gl_query_object *CurrentTimerObject; /* GL_EXT_timer_query */
3177
3178 /** GL_NV_conditional_render */
3179 struct gl_query_object *CondRenderQuery;
3180
3181 /** GL_EXT_transform_feedback */
3182 struct gl_query_object *PrimitivesGenerated[MAX_VERTEX_STREAMS];
3183 struct gl_query_object *PrimitivesWritten[MAX_VERTEX_STREAMS];
3184
3185 /** GL_ARB_transform_feedback_overflow_query */
3186 struct gl_query_object *TransformFeedbackOverflow[MAX_VERTEX_STREAMS];
3187 struct gl_query_object *TransformFeedbackOverflowAny;
3188
3189 /** GL_ARB_timer_query */
3190 struct gl_query_object *TimeElapsed;
3191
3192 /** GL_ARB_pipeline_statistics_query */
3193 struct gl_query_object *pipeline_stats[MAX_PIPELINE_STATISTICS];
3194
3195 GLenum CondRenderMode;
3196 };
3197
3198
3199 /** Sync object state */
3200 struct gl_sync_object
3201 {
3202 GLuint Name; /**< Fence name */
3203 GLint RefCount; /**< Reference count */
3204 GLchar *Label; /**< GL_KHR_debug */
3205 GLboolean DeletePending; /**< Object was deleted while there were still
3206 * live references (e.g., sync not yet finished)
3207 */
3208 GLenum SyncCondition;
3209 GLbitfield Flags; /**< Flags passed to glFenceSync */
3210 GLuint StatusFlag:1; /**< Has the sync object been signaled? */
3211 };
3212
3213
3214 /**
3215 * State which can be shared by multiple contexts:
3216 */
3217 struct gl_shared_state
3218 {
3219 mtx_t Mutex; /**< for thread safety */
3220 GLint RefCount; /**< Reference count */
3221 struct _mesa_HashTable *DisplayList; /**< Display lists hash table */
3222 struct _mesa_HashTable *BitmapAtlas; /**< For optimized glBitmap text */
3223 struct _mesa_HashTable *TexObjects; /**< Texture objects hash table */
3224
3225 /** Default texture objects (shared by all texture units) */
3226 struct gl_texture_object *DefaultTex[NUM_TEXTURE_TARGETS];
3227
3228 /** Fallback texture used when a bound texture is incomplete */
3229 struct gl_texture_object *FallbackTex[NUM_TEXTURE_TARGETS];
3230
3231 /**
3232 * \name Thread safety and statechange notification for texture
3233 * objects.
3234 *
3235 * \todo Improve the granularity of locking.
3236 */
3237 /*@{*/
3238 mtx_t TexMutex; /**< texobj thread safety */
3239 GLuint TextureStateStamp; /**< state notification for shared tex */
3240 /*@}*/
3241
3242 /** Default buffer object for vertex arrays that aren't in VBOs */
3243 struct gl_buffer_object *NullBufferObj;
3244
3245 /**
3246 * \name Vertex/geometry/fragment programs
3247 */
3248 /*@{*/
3249 struct _mesa_HashTable *Programs; /**< All vertex/fragment programs */
3250 struct gl_program *DefaultVertexProgram;
3251 struct gl_program *DefaultFragmentProgram;
3252 /*@}*/
3253
3254 /* GL_ATI_fragment_shader */
3255 struct _mesa_HashTable *ATIShaders;
3256 struct ati_fragment_shader *DefaultFragmentShader;
3257
3258 struct _mesa_HashTable *BufferObjects;
3259
3260 /** Table of both gl_shader and gl_shader_program objects */
3261 struct _mesa_HashTable *ShaderObjects;
3262
3263 /* GL_EXT_framebuffer_object */
3264 struct _mesa_HashTable *RenderBuffers;
3265 struct _mesa_HashTable *FrameBuffers;
3266
3267 /* GL_ARB_sync */
3268 struct set *SyncObjects;
3269
3270 /** GL_ARB_sampler_objects */
3271 struct _mesa_HashTable *SamplerObjects;
3272
3273 /* GL_ARB_bindless_texture */
3274 struct hash_table_u64 *TextureHandles;
3275 struct hash_table_u64 *ImageHandles;
3276 mtx_t HandlesMutex; /**< For texture/image handles safety */
3277
3278 /**
3279 * Some context in this share group was affected by a GPU reset
3280 *
3281 * On the next call to \c glGetGraphicsResetStatus, contexts that have not
3282 * been affected by a GPU reset must also return
3283 * \c GL_INNOCENT_CONTEXT_RESET_ARB.
3284 *
3285 * Once this field becomes true, it is never reset to false.
3286 */
3287 bool ShareGroupReset;
3288
3289 /** EXT_external_objects */
3290 struct _mesa_HashTable *MemoryObjects;
3291
3292 };
3293
3294
3295
3296 /**
3297 * Renderbuffers represent drawing surfaces such as color, depth and/or
3298 * stencil. A framebuffer object has a set of renderbuffers.
3299 * Drivers will typically derive subclasses of this type.
3300 */
3301 struct gl_renderbuffer
3302 {
3303 mtx_t Mutex; /**< for thread safety */
3304 GLuint ClassID; /**< Useful for drivers */
3305 GLuint Name;
3306 GLchar *Label; /**< GL_KHR_debug */
3307 GLint RefCount;
3308 GLuint Width, Height;
3309 GLuint Depth;
3310 GLboolean Purgeable; /**< Is the buffer purgeable under memory pressure? */
3311 GLboolean AttachedAnytime; /**< TRUE if it was attached to a framebuffer */
3312 /**
3313 * True for renderbuffers that wrap textures, giving the driver a chance to
3314 * flush render caches through the FinishRenderTexture hook.
3315 *
3316 * Drivers may also set this on renderbuffers other than those generated by
3317 * glFramebufferTexture(), though it means FinishRenderTexture() would be
3318 * called without a rb->TexImage.
3319 */
3320 GLboolean NeedsFinishRenderTexture;
3321 GLubyte NumSamples; /**< zero means not multisampled */
3322 GLenum InternalFormat; /**< The user-specified format */
3323 GLenum _BaseFormat; /**< Either GL_RGB, GL_RGBA, GL_DEPTH_COMPONENT or
3324 GL_STENCIL_INDEX. */
3325 mesa_format Format; /**< The actual renderbuffer memory format */
3326 /**
3327 * Pointer to the texture image if this renderbuffer wraps a texture,
3328 * otherwise NULL.
3329 *
3330 * Note that the reference on the gl_texture_object containing this
3331 * TexImage is held by the gl_renderbuffer_attachment.
3332 */
3333 struct gl_texture_image *TexImage;
3334
3335 /** Delete this renderbuffer */
3336 void (*Delete)(struct gl_context *ctx, struct gl_renderbuffer *rb);
3337
3338 /** Allocate new storage for this renderbuffer */
3339 GLboolean (*AllocStorage)(struct gl_context *ctx,
3340 struct gl_renderbuffer *rb,
3341 GLenum internalFormat,
3342 GLuint width, GLuint height);
3343 };
3344
3345
3346 /**
3347 * A renderbuffer attachment points to either a texture object (and specifies
3348 * a mipmap level, cube face or 3D texture slice) or points to a renderbuffer.
3349 */
3350 struct gl_renderbuffer_attachment
3351 {
3352 GLenum Type; /**< \c GL_NONE or \c GL_TEXTURE or \c GL_RENDERBUFFER_EXT */
3353 GLboolean Complete;
3354
3355 /**
3356 * If \c Type is \c GL_RENDERBUFFER_EXT, this stores a pointer to the
3357 * application supplied renderbuffer object.
3358 */
3359 struct gl_renderbuffer *Renderbuffer;
3360
3361 /**
3362 * If \c Type is \c GL_TEXTURE, this stores a pointer to the application
3363 * supplied texture object.
3364 */
3365 struct gl_texture_object *Texture;
3366 GLuint TextureLevel; /**< Attached mipmap level. */
3367 GLuint CubeMapFace; /**< 0 .. 5, for cube map textures. */
3368 GLuint Zoffset; /**< Slice for 3D textures, or layer for both 1D
3369 * and 2D array textures */
3370 GLboolean Layered;
3371 };
3372
3373
3374 /**
3375 * A framebuffer is a collection of renderbuffers (color, depth, stencil, etc).
3376 * In C++ terms, think of this as a base class from which device drivers
3377 * will make derived classes.
3378 */
3379 struct gl_framebuffer
3380 {
3381 mtx_t Mutex; /**< for thread safety */
3382 /**
3383 * If zero, this is a window system framebuffer. If non-zero, this
3384 * is a FBO framebuffer; note that for some devices (i.e. those with
3385 * a natural pixel coordinate system for FBOs that differs from the
3386 * OpenGL/Mesa coordinate system), this means that the viewport,
3387 * polygon face orientation, and polygon stipple will have to be inverted.
3388 */
3389 GLuint Name;
3390 GLint RefCount;
3391
3392 GLchar *Label; /**< GL_KHR_debug */
3393
3394 GLboolean DeletePending;
3395
3396 /**
3397 * The framebuffer's visual. Immutable if this is a window system buffer.
3398 * Computed from attachments if user-made FBO.
3399 */
3400 struct gl_config Visual;
3401
3402 /**
3403 * Size of frame buffer in pixels. If there are no attachments, then both
3404 * of these are 0.
3405 */
3406 GLuint Width, Height;
3407
3408 /**
3409 * In the case that the framebuffer has no attachment (i.e.
3410 * GL_ARB_framebuffer_no_attachments) then the geometry of
3411 * the framebuffer is specified by the default values.
3412 */
3413 struct {
3414 GLuint Width, Height, Layers, NumSamples;
3415 GLboolean FixedSampleLocations;
3416 /* Derived from NumSamples by the driver so that it can choose a valid
3417 * value for the hardware.
3418 */
3419 GLuint _NumSamples;
3420 } DefaultGeometry;
3421
3422 /** \name Drawing bounds (Intersection of buffer size and scissor box)
3423 * The drawing region is given by [_Xmin, _Xmax) x [_Ymin, _Ymax),
3424 * (inclusive for _Xmin and _Ymin while exclusive for _Xmax and _Ymax)
3425 */
3426 /*@{*/
3427 GLint _Xmin, _Xmax;
3428 GLint _Ymin, _Ymax;
3429 /*@}*/
3430
3431 /** \name Derived Z buffer stuff */
3432 /*@{*/
3433 GLuint _DepthMax; /**< Max depth buffer value */
3434 GLfloat _DepthMaxF; /**< Float max depth buffer value */
3435 GLfloat _MRD; /**< minimum resolvable difference in Z values */
3436 /*@}*/
3437
3438 /** One of the GL_FRAMEBUFFER_(IN)COMPLETE_* tokens */
3439 GLenum _Status;
3440
3441 /** Whether one of Attachment has Type != GL_NONE
3442 * NOTE: the values for Width and Height are set to 0 in case of having
3443 * no attachments, a backend driver supporting the extension
3444 * GL_ARB_framebuffer_no_attachments must check for the flag _HasAttachments
3445 * and if GL_FALSE, must then use the values in DefaultGeometry to initialize
3446 * its viewport, scissor and so on (in particular _Xmin, _Xmax, _Ymin and
3447 * _Ymax do NOT take into account _HasAttachments being false). To get the
3448 * geometry of the framebuffer, the helper functions
3449 * _mesa_geometric_width(),
3450 * _mesa_geometric_height(),
3451 * _mesa_geometric_samples() and
3452 * _mesa_geometric_layers()
3453 * are available that check _HasAttachments.
3454 */
3455 bool _HasAttachments;
3456
3457 GLbitfield _IntegerBuffers; /**< Which color buffers are integer valued */
3458
3459 /* ARB_color_buffer_float */
3460 GLboolean _AllColorBuffersFixedPoint; /* no integer, no float */
3461 GLboolean _HasSNormOrFloatColorBuffer;
3462
3463 /**
3464 * The maximum number of layers in the framebuffer, or 0 if the framebuffer
3465 * is not layered. For cube maps and cube map arrays, each cube face
3466 * counts as a layer. As the case for Width, Height a backend driver
3467 * supporting GL_ARB_framebuffer_no_attachments must use DefaultGeometry
3468 * in the case that _HasAttachments is false
3469 */
3470 GLuint MaxNumLayers;
3471
3472 /** Array of all renderbuffer attachments, indexed by BUFFER_* tokens. */
3473 struct gl_renderbuffer_attachment Attachment[BUFFER_COUNT];
3474
3475 /* In unextended OpenGL these vars are part of the GL_COLOR_BUFFER
3476 * attribute group and GL_PIXEL attribute group, respectively.
3477 */
3478 GLenum ColorDrawBuffer[MAX_DRAW_BUFFERS];
3479 GLenum ColorReadBuffer;
3480
3481 /** Computed from ColorDraw/ReadBuffer above */
3482 GLuint _NumColorDrawBuffers;
3483 GLint _ColorDrawBufferIndexes[MAX_DRAW_BUFFERS]; /**< BUFFER_x or -1 */
3484 GLint _ColorReadBufferIndex; /* -1 = None */
3485 struct gl_renderbuffer *_ColorDrawBuffers[MAX_DRAW_BUFFERS];
3486 struct gl_renderbuffer *_ColorReadBuffer;
3487
3488 /** Delete this framebuffer */
3489 void (*Delete)(struct gl_framebuffer *fb);
3490 };
3491
3492
3493 /**
3494 * Precision info for shader datatypes. See glGetShaderPrecisionFormat().
3495 */
3496 struct gl_precision
3497 {
3498 GLushort RangeMin; /**< min value exponent */
3499 GLushort RangeMax; /**< max value exponent */
3500 GLushort Precision; /**< number of mantissa bits */
3501 };
3502
3503
3504 /**
3505 * Limits for vertex, geometry and fragment programs/shaders.
3506 */
3507 struct gl_program_constants
3508 {
3509 /* logical limits */
3510 GLuint MaxInstructions;
3511 GLuint MaxAluInstructions;
3512 GLuint MaxTexInstructions;
3513 GLuint MaxTexIndirections;
3514 GLuint MaxAttribs;
3515 GLuint MaxTemps;
3516 GLuint MaxAddressRegs;
3517 GLuint MaxAddressOffset; /**< [-MaxAddressOffset, MaxAddressOffset-1] */
3518 GLuint MaxParameters;
3519 GLuint MaxLocalParams;
3520 GLuint MaxEnvParams;
3521 /* native/hardware limits */
3522 GLuint MaxNativeInstructions;
3523 GLuint MaxNativeAluInstructions;
3524 GLuint MaxNativeTexInstructions;
3525 GLuint MaxNativeTexIndirections;
3526 GLuint MaxNativeAttribs;
3527 GLuint MaxNativeTemps;
3528 GLuint MaxNativeAddressRegs;
3529 GLuint MaxNativeParameters;
3530 /* For shaders */
3531 GLuint MaxUniformComponents; /**< Usually == MaxParameters * 4 */
3532
3533 /**
3534 * \name Per-stage input / output limits
3535 *
3536 * Previous to OpenGL 3.2, the intrastage data limits were advertised with
3537 * a single value: GL_MAX_VARYING_COMPONENTS (GL_MAX_VARYING_VECTORS in
3538 * ES). This is stored as \c gl_constants::MaxVarying.
3539 *
3540 * Starting with OpenGL 3.2, the limits are advertised with per-stage
3541 * variables. Each stage as a certain number of outputs that it can feed
3542 * to the next stage and a certain number inputs that it can consume from
3543 * the previous stage.
3544 *
3545 * Vertex shader inputs do not participate this in this accounting.
3546 * These are tracked exclusively by \c gl_program_constants::MaxAttribs.
3547 *
3548 * Fragment shader outputs do not participate this in this accounting.
3549 * These are tracked exclusively by \c gl_constants::MaxDrawBuffers.
3550 */
3551 /*@{*/
3552 GLuint MaxInputComponents;
3553 GLuint MaxOutputComponents;
3554 /*@}*/
3555
3556 /* ES 2.0 and GL_ARB_ES2_compatibility */
3557 struct gl_precision LowFloat, MediumFloat, HighFloat;
3558 struct gl_precision LowInt, MediumInt, HighInt;
3559 /* GL_ARB_uniform_buffer_object */
3560 GLuint MaxUniformBlocks;
3561 GLuint MaxCombinedUniformComponents;
3562 GLuint MaxTextureImageUnits;
3563
3564 /* GL_ARB_shader_atomic_counters */
3565 GLuint MaxAtomicBuffers;
3566 GLuint MaxAtomicCounters;
3567
3568 /* GL_ARB_shader_image_load_store */
3569 GLuint MaxImageUniforms;
3570
3571 /* GL_ARB_shader_storage_buffer_object */
3572 GLuint MaxShaderStorageBlocks;
3573 };
3574
3575
3576 /**
3577 * Constants which may be overridden by device driver during context creation
3578 * but are never changed after that.
3579 */
3580 struct gl_constants
3581 {
3582 GLuint MaxTextureMbytes; /**< Max memory per image, in MB */
3583 GLuint MaxTextureLevels; /**< Max mipmap levels. */
3584 GLuint Max3DTextureLevels; /**< Max mipmap levels for 3D textures */
3585 GLuint MaxCubeTextureLevels; /**< Max mipmap levels for cube textures */
3586 GLuint MaxArrayTextureLayers; /**< Max layers in array textures */
3587 GLuint MaxTextureRectSize; /**< Max rectangle texture size, in pixes */
3588 GLuint MaxTextureCoordUnits;
3589 GLuint MaxCombinedTextureImageUnits;
3590 GLuint MaxTextureUnits; /**< = MIN(CoordUnits, FragmentProgram.ImageUnits) */
3591 GLfloat MaxTextureMaxAnisotropy; /**< GL_EXT_texture_filter_anisotropic */
3592 GLfloat MaxTextureLodBias; /**< GL_EXT_texture_lod_bias */
3593 GLuint MaxTextureBufferSize; /**< GL_ARB_texture_buffer_object */
3594
3595 GLuint TextureBufferOffsetAlignment; /**< GL_ARB_texture_buffer_range */
3596
3597 GLuint MaxArrayLockSize;
3598
3599 GLint SubPixelBits;
3600
3601 GLfloat MinPointSize, MaxPointSize; /**< aliased */
3602 GLfloat MinPointSizeAA, MaxPointSizeAA; /**< antialiased */
3603 GLfloat PointSizeGranularity;
3604 GLfloat MinLineWidth, MaxLineWidth; /**< aliased */
3605 GLfloat MinLineWidthAA, MaxLineWidthAA; /**< antialiased */
3606 GLfloat LineWidthGranularity;
3607
3608 GLuint MaxClipPlanes;
3609 GLuint MaxLights;
3610 GLfloat MaxShininess; /**< GL_NV_light_max_exponent */
3611 GLfloat MaxSpotExponent; /**< GL_NV_light_max_exponent */
3612
3613 GLuint MaxViewportWidth, MaxViewportHeight;
3614 GLuint MaxViewports; /**< GL_ARB_viewport_array */
3615 GLuint ViewportSubpixelBits; /**< GL_ARB_viewport_array */
3616 struct {
3617 GLfloat Min;
3618 GLfloat Max;
3619 } ViewportBounds; /**< GL_ARB_viewport_array */
3620 GLuint MaxWindowRectangles; /**< GL_EXT_window_rectangles */
3621
3622 struct gl_program_constants Program[MESA_SHADER_STAGES];
3623 GLuint MaxProgramMatrices;
3624 GLuint MaxProgramMatrixStackDepth;
3625
3626 struct {
3627 GLuint SamplesPassed;
3628 GLuint TimeElapsed;
3629 GLuint Timestamp;
3630 GLuint PrimitivesGenerated;
3631 GLuint PrimitivesWritten;
3632 GLuint VerticesSubmitted;
3633 GLuint PrimitivesSubmitted;
3634 GLuint VsInvocations;
3635 GLuint TessPatches;
3636 GLuint TessInvocations;
3637 GLuint GsInvocations;
3638 GLuint GsPrimitives;
3639 GLuint FsInvocations;
3640 GLuint ComputeInvocations;
3641 GLuint ClInPrimitives;
3642 GLuint ClOutPrimitives;
3643 } QueryCounterBits;
3644
3645 GLuint MaxDrawBuffers; /**< GL_ARB_draw_buffers */
3646
3647 GLuint MaxColorAttachments; /**< GL_EXT_framebuffer_object */
3648 GLuint MaxRenderbufferSize; /**< GL_EXT_framebuffer_object */
3649 GLuint MaxSamples; /**< GL_ARB_framebuffer_object */
3650
3651 /**
3652 * GL_ARB_framebuffer_no_attachments
3653 */
3654 GLuint MaxFramebufferWidth;
3655 GLuint MaxFramebufferHeight;
3656 GLuint MaxFramebufferLayers;
3657 GLuint MaxFramebufferSamples;
3658
3659 /** Number of varying vectors between any two shader stages. */
3660 GLuint MaxVarying;
3661
3662 /** @{
3663 * GL_ARB_uniform_buffer_object
3664 */
3665 GLuint MaxCombinedUniformBlocks;
3666 GLuint MaxUniformBufferBindings;
3667 GLuint MaxUniformBlockSize;
3668 GLuint UniformBufferOffsetAlignment;
3669 /** @} */
3670
3671 /** @{
3672 * GL_ARB_shader_storage_buffer_object
3673 */
3674 GLuint MaxCombinedShaderStorageBlocks;
3675 GLuint MaxShaderStorageBufferBindings;
3676 GLuint MaxShaderStorageBlockSize;
3677 GLuint ShaderStorageBufferOffsetAlignment;
3678 /** @} */
3679
3680 /**
3681 * GL_ARB_explicit_uniform_location
3682 */
3683 GLuint MaxUserAssignableUniformLocations;
3684
3685 /** geometry shader */
3686 GLuint MaxGeometryOutputVertices;
3687 GLuint MaxGeometryTotalOutputComponents;
3688
3689 GLuint GLSLVersion; /**< Desktop GLSL version supported (ex: 120 = 1.20) */
3690
3691 /**
3692 * Changes default GLSL extension behavior from "error" to "warn". It's out
3693 * of spec, but it can make some apps work that otherwise wouldn't.
3694 */
3695 GLboolean ForceGLSLExtensionsWarn;
3696
3697 /**
3698 * If non-zero, forces GLSL shaders to behave as if they began
3699 * with "#version ForceGLSLVersion".
3700 */
3701 GLuint ForceGLSLVersion;
3702
3703 /**
3704 * Allow GLSL #extension directives in the middle of shaders.
3705 */
3706 GLboolean AllowGLSLExtensionDirectiveMidShader;
3707
3708 /**
3709 * Allow GLSL built-in variables to be redeclared verbatim
3710 */
3711 GLboolean AllowGLSLBuiltinVariableRedeclaration;
3712
3713 /**
3714 * Allow creating a higher compat profile (version 3.1+) for apps that
3715 * request it. Be careful when adding that driconf option because some
3716 * features are unimplemented and might not work correctly.
3717 */
3718 GLboolean AllowHigherCompatVersion;
3719
3720 /**
3721 * Force computing the absolute value for sqrt() and inversesqrt() to follow
3722 * D3D9 when apps rely on this behaviour.
3723 */
3724 GLboolean ForceGLSLAbsSqrt;
3725
3726 /**
3727 * Force uninitialized variables to default to zero.
3728 */
3729 GLboolean GLSLZeroInit;
3730
3731 /**
3732 * Does the driver support real 32-bit integers? (Otherwise, integers are
3733 * simulated via floats.)
3734 */
3735 GLboolean NativeIntegers;
3736
3737 /**
3738 * Does VertexID count from zero or from base vertex?
3739 *
3740 * \note
3741 * If desktop GLSL 1.30 or GLSL ES 3.00 are not supported, this field is
3742 * ignored and need not be set.
3743 */
3744 bool VertexID_is_zero_based;
3745
3746 /**
3747 * If the driver supports real 32-bit integers, what integer value should be
3748 * used for boolean true in uniform uploads? (Usually 1 or ~0.)
3749 */
3750 GLuint UniformBooleanTrue;
3751
3752 /**
3753 * Maximum amount of time, measured in nanseconds, that the server can wait.
3754 */
3755 GLuint64 MaxServerWaitTimeout;
3756
3757 /** GL_EXT_provoking_vertex */
3758 GLboolean QuadsFollowProvokingVertexConvention;
3759
3760 /** GL_ARB_viewport_array */
3761 GLenum LayerAndVPIndexProvokingVertex;
3762
3763 /** OpenGL version 3.0 */
3764 GLbitfield ContextFlags; /**< Ex: GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT */
3765
3766 /** OpenGL version 3.2 */
3767 GLbitfield ProfileMask; /**< Mask of CONTEXT_x_PROFILE_BIT */
3768
3769 /** OpenGL version 4.4 */
3770 GLuint MaxVertexAttribStride;
3771
3772 /** GL_EXT_transform_feedback */
3773 GLuint MaxTransformFeedbackBuffers;
3774 GLuint MaxTransformFeedbackSeparateComponents;
3775 GLuint MaxTransformFeedbackInterleavedComponents;
3776 GLuint MaxVertexStreams;
3777
3778 /** GL_EXT_gpu_shader4 */
3779 GLint MinProgramTexelOffset, MaxProgramTexelOffset;
3780
3781 /** GL_ARB_texture_gather */
3782 GLuint MinProgramTextureGatherOffset;
3783 GLuint MaxProgramTextureGatherOffset;
3784 GLuint MaxProgramTextureGatherComponents;
3785
3786 /* GL_ARB_robustness */
3787 GLenum ResetStrategy;
3788
3789 /* GL_KHR_robustness */
3790 GLboolean RobustAccess;
3791
3792 /* GL_ARB_blend_func_extended */
3793 GLuint MaxDualSourceDrawBuffers;
3794
3795 /**
3796 * Whether the implementation strips out and ignores texture borders.
3797 *
3798 * Many GPU hardware implementations don't support rendering with texture
3799 * borders and mipmapped textures. (Note: not static border color, but the
3800 * old 1-pixel border around each edge). Implementations then have to do
3801 * slow fallbacks to be correct, or just ignore the border and be fast but
3802 * wrong. Setting the flag strips the border off of TexImage calls,
3803 * providing "fast but wrong" at significantly reduced driver complexity.
3804 *
3805 * Texture borders are deprecated in GL 3.0.
3806 **/
3807 GLboolean StripTextureBorder;
3808
3809 /**
3810 * For drivers which can do a better job at eliminating unused uniforms
3811 * than the GLSL compiler.
3812 *
3813 * XXX Remove these as soon as a better solution is available.
3814 */
3815 GLboolean GLSLSkipStrictMaxUniformLimitCheck;
3816
3817 /** Whether gl_FragCoord and gl_FrontFacing are system values. */
3818 bool GLSLFragCoordIsSysVal;
3819 bool GLSLFrontFacingIsSysVal;
3820
3821 /**
3822 * Run the minimum amount of GLSL optimizations to be able to link
3823 * shaders optimally (eliminate dead varyings and uniforms) and just do
3824 * all the necessary lowering.
3825 */
3826 bool GLSLOptimizeConservatively;
3827
3828 /**
3829 * True if gl_TessLevelInner/Outer[] in the TES should be inputs
3830 * (otherwise, they're system values).
3831 */
3832 bool GLSLTessLevelsAsInputs;
3833
3834 /**
3835 * Always use the GetTransformFeedbackVertexCount() driver hook, rather
3836 * than passing the transform feedback object to the drawing function.
3837 */
3838 GLboolean AlwaysUseGetTransformFeedbackVertexCount;
3839
3840 /** GL_ARB_map_buffer_alignment */
3841 GLuint MinMapBufferAlignment;
3842
3843 /**
3844 * Disable varying packing. This is out of spec, but potentially useful
3845 * for older platforms that supports a limited number of texture
3846 * indirections--on these platforms, unpacking the varyings in the fragment
3847 * shader increases the number of texture indirections by 1, which might
3848 * make some shaders not executable at all.
3849 *
3850 * Drivers that support transform feedback must set this value to GL_FALSE.
3851 */
3852 GLboolean DisableVaryingPacking;
3853
3854 /**
3855 * UBOs and SSBOs can be packed tightly by the OpenGL implementation when
3856 * layout is set as shared (the default) or packed. However most Mesa drivers
3857 * just use STD140 for these layouts. This flag allows drivers to use STD430
3858 * for packed and shared layouts which allows arrays to be packed more
3859 * tightly.
3860 */
3861 bool UseSTD430AsDefaultPacking;
3862
3863 /**
3864 * Should meaningful names be generated for compiler temporary variables?
3865 *
3866 * Generally, it is not useful to have the compiler generate "meaningful"
3867 * names for temporary variables that it creates. This can, however, be a
3868 * useful debugging aid. In Mesa debug builds or release builds when
3869 * MESA_GLSL is set at run-time, meaningful names will be generated.
3870 * Drivers can also force names to be generated by setting this field.
3871 * For example, the i965 driver may set it when INTEL_DEBUG=vs (to dump
3872 * vertex shader assembly) is set at run-time.
3873 */
3874 bool GenerateTemporaryNames;
3875
3876 /*
3877 * Maximum value supported for an index in DrawElements and friends.
3878 *
3879 * This must be at least (1ull<<24)-1. The default value is
3880 * (1ull<<32)-1.
3881 *
3882 * \since ES 3.0 or GL_ARB_ES3_compatibility
3883 * \sa _mesa_init_constants
3884 */
3885 GLuint64 MaxElementIndex;
3886
3887 /**
3888 * Disable interpretation of line continuations (lines ending with a
3889 * backslash character ('\') in GLSL source.
3890 */
3891 GLboolean DisableGLSLLineContinuations;
3892
3893 /** GL_ARB_texture_multisample */
3894 GLint MaxColorTextureSamples;
3895 GLint MaxDepthTextureSamples;
3896 GLint MaxIntegerSamples;
3897
3898 /**
3899 * GL_EXT_texture_multisample_blit_scaled implementation assumes that
3900 * samples are laid out in a rectangular grid roughly corresponding to
3901 * sample locations within a pixel. Below SampleMap{2,4,8}x variables
3902 * are used to map indices of rectangular grid to sample numbers within
3903 * a pixel. This mapping of indices to sample numbers must be initialized
3904 * by the driver for the target hardware. For example, if we have the 8X
3905 * MSAA sample number layout (sample positions) for XYZ hardware:
3906 *
3907 * sample indices layout sample number layout
3908 * --------- ---------
3909 * | 0 | 1 | | a | b |
3910 * --------- ---------
3911 * | 2 | 3 | | c | d |
3912 * --------- ---------
3913 * | 4 | 5 | | e | f |
3914 * --------- ---------
3915 * | 6 | 7 | | g | h |
3916 * --------- ---------
3917 *
3918 * Where a,b,c,d,e,f,g,h are integers between [0-7].
3919 *
3920 * Then, initialize the SampleMap8x variable for XYZ hardware as shown
3921 * below:
3922 * SampleMap8x = {a, b, c, d, e, f, g, h};
3923 *
3924 * Follow the logic for sample counts 2-8.
3925 *
3926 * For 16x the sample indices layout as a 4x4 grid as follows:
3927 *
3928 * -----------------
3929 * | 0 | 1 | 2 | 3 |
3930 * -----------------
3931 * | 4 | 5 | 6 | 7 |
3932 * -----------------
3933 * | 8 | 9 |10 |11 |
3934 * -----------------
3935 * |12 |13 |14 |15 |
3936 * -----------------
3937 */
3938 uint8_t SampleMap2x[2];
3939 uint8_t SampleMap4x[4];
3940 uint8_t SampleMap8x[8];
3941 uint8_t SampleMap16x[16];
3942
3943 /** GL_ARB_shader_atomic_counters */
3944 GLuint MaxAtomicBufferBindings;
3945 GLuint MaxAtomicBufferSize;
3946 GLuint MaxCombinedAtomicBuffers;
3947 GLuint MaxCombinedAtomicCounters;
3948
3949 /** GL_ARB_vertex_attrib_binding */
3950 GLint MaxVertexAttribRelativeOffset;
3951 GLint MaxVertexAttribBindings;
3952
3953 /* GL_ARB_shader_image_load_store */
3954 GLuint MaxImageUnits;
3955 GLuint MaxCombinedShaderOutputResources;
3956 GLuint MaxImageSamples;
3957 GLuint MaxCombinedImageUniforms;
3958
3959 /** GL_ARB_compute_shader */
3960 GLuint MaxComputeWorkGroupCount[3]; /* Array of x, y, z dimensions */
3961 GLuint MaxComputeWorkGroupSize[3]; /* Array of x, y, z dimensions */
3962 GLuint MaxComputeWorkGroupInvocations;
3963 GLuint MaxComputeSharedMemorySize;
3964
3965 /** GL_ARB_compute_variable_group_size */
3966 GLuint MaxComputeVariableGroupSize[3]; /* Array of x, y, z dimensions */
3967 GLuint MaxComputeVariableGroupInvocations;
3968
3969 /** GL_ARB_gpu_shader5 */
3970 GLfloat MinFragmentInterpolationOffset;
3971 GLfloat MaxFragmentInterpolationOffset;
3972
3973 GLboolean FakeSWMSAA;
3974
3975 /** GL_KHR_context_flush_control */
3976 GLenum ContextReleaseBehavior;
3977
3978 struct gl_shader_compiler_options ShaderCompilerOptions[MESA_SHADER_STAGES];
3979
3980 /** GL_ARB_tessellation_shader */
3981 GLuint MaxPatchVertices;
3982 GLuint MaxTessGenLevel;
3983 GLuint MaxTessPatchComponents;
3984 GLuint MaxTessControlTotalOutputComponents;
3985 bool LowerTessLevel; /**< Lower gl_TessLevel* from float[n] to vecn? */
3986 bool LowerTCSPatchVerticesIn; /**< Lower gl_PatchVerticesIn to a uniform */
3987 bool LowerTESPatchVerticesIn; /**< Lower gl_PatchVerticesIn to a uniform */
3988 bool PrimitiveRestartForPatches;
3989 bool LowerCsDerivedVariables; /**< Lower gl_GlobalInvocationID and
3990 * gl_LocalInvocationIndex based on
3991 * other builtin variables. */
3992
3993 /** GL_OES_primitive_bounding_box */
3994 bool NoPrimitiveBoundingBoxOutput;
3995
3996 /** GL_ARB_sparse_buffer */
3997 GLuint SparseBufferPageSize;
3998
3999 /** Used as an input for sha1 generation in the on-disk shader cache */
4000 unsigned char *dri_config_options_sha1;
4001
4002 /** When drivers are OK with mapped buffers during draw and other calls. */
4003 bool AllowMappedBuffersDuringExecution;
4004 };
4005
4006
4007 /**
4008 * Enable flag for each OpenGL extension. Different device drivers will
4009 * enable different extensions at runtime.
4010 */
4011 struct gl_extensions
4012 {
4013 GLboolean dummy; /* don't remove this! */
4014 GLboolean dummy_true; /* Set true by _mesa_init_extensions(). */
4015 GLboolean dummy_false; /* Set false by _mesa_init_extensions(). */
4016 GLboolean ANGLE_texture_compression_dxt;
4017 GLboolean ARB_ES2_compatibility;
4018 GLboolean ARB_ES3_compatibility;
4019 GLboolean ARB_ES3_1_compatibility;
4020 GLboolean ARB_ES3_2_compatibility;
4021 GLboolean ARB_arrays_of_arrays;
4022 GLboolean ARB_base_instance;
4023 GLboolean ARB_bindless_texture;
4024 GLboolean ARB_blend_func_extended;
4025 GLboolean ARB_buffer_storage;
4026 GLboolean ARB_clear_texture;
4027 GLboolean ARB_clip_control;
4028 GLboolean ARB_color_buffer_float;
4029 GLboolean ARB_compute_shader;
4030 GLboolean ARB_compute_variable_group_size;
4031 GLboolean ARB_conditional_render_inverted;
4032 GLboolean ARB_conservative_depth;
4033 GLboolean ARB_copy_image;
4034 GLboolean ARB_cull_distance;
4035 GLboolean ARB_depth_buffer_float;
4036 GLboolean ARB_depth_clamp;
4037 GLboolean ARB_depth_texture;
4038 GLboolean ARB_derivative_control;
4039 GLboolean ARB_draw_buffers_blend;
4040 GLboolean ARB_draw_elements_base_vertex;
4041 GLboolean ARB_draw_indirect;
4042 GLboolean ARB_draw_instanced;
4043 GLboolean ARB_fragment_coord_conventions;
4044 GLboolean ARB_fragment_layer_viewport;
4045 GLboolean ARB_fragment_program;
4046 GLboolean ARB_fragment_program_shadow;
4047 GLboolean ARB_fragment_shader;
4048 GLboolean ARB_framebuffer_no_attachments;
4049 GLboolean ARB_framebuffer_object;
4050 GLboolean ARB_enhanced_layouts;
4051 GLboolean ARB_explicit_attrib_location;
4052 GLboolean ARB_explicit_uniform_location;
4053 GLboolean ARB_gpu_shader5;
4054 GLboolean ARB_gpu_shader_fp64;
4055 GLboolean ARB_gpu_shader_int64;
4056 GLboolean ARB_half_float_vertex;
4057 GLboolean ARB_indirect_parameters;
4058 GLboolean ARB_instanced_arrays;
4059 GLboolean ARB_internalformat_query;
4060 GLboolean ARB_internalformat_query2;
4061 GLboolean ARB_map_buffer_range;
4062 GLboolean ARB_occlusion_query;
4063 GLboolean ARB_occlusion_query2;
4064 GLboolean ARB_pipeline_statistics_query;
4065 GLboolean ARB_point_sprite;
4066 GLboolean ARB_polygon_offset_clamp;
4067 GLboolean ARB_post_depth_coverage;
4068 GLboolean ARB_query_buffer_object;
4069 GLboolean ARB_robust_buffer_access_behavior;
4070 GLboolean ARB_sample_shading;
4071 GLboolean ARB_seamless_cube_map;
4072 GLboolean ARB_shader_atomic_counter_ops;
4073 GLboolean ARB_shader_atomic_counters;
4074 GLboolean ARB_shader_ballot;
4075 GLboolean ARB_shader_bit_encoding;
4076 GLboolean ARB_shader_clock;
4077 GLboolean ARB_shader_draw_parameters;
4078 GLboolean ARB_shader_group_vote;
4079 GLboolean ARB_shader_image_load_store;
4080 GLboolean ARB_shader_image_size;
4081 GLboolean ARB_shader_precision;
4082 GLboolean ARB_shader_stencil_export;
4083 GLboolean ARB_shader_storage_buffer_object;
4084 GLboolean ARB_shader_texture_image_samples;
4085 GLboolean ARB_shader_texture_lod;
4086 GLboolean ARB_shader_viewport_layer_array;
4087 GLboolean ARB_shading_language_packing;
4088 GLboolean ARB_shading_language_420pack;
4089 GLboolean ARB_shadow;
4090 GLboolean ARB_sparse_buffer;
4091 GLboolean ARB_stencil_texturing;
4092 GLboolean ARB_sync;
4093 GLboolean ARB_tessellation_shader;
4094 GLboolean ARB_texture_border_clamp;
4095 GLboolean ARB_texture_buffer_object;
4096 GLboolean ARB_texture_buffer_object_rgb32;
4097 GLboolean ARB_texture_buffer_range;
4098 GLboolean ARB_texture_compression_bptc;
4099 GLboolean ARB_texture_compression_rgtc;
4100 GLboolean ARB_texture_cube_map;
4101 GLboolean ARB_texture_cube_map_array;
4102 GLboolean ARB_texture_env_combine;
4103 GLboolean ARB_texture_env_crossbar;
4104 GLboolean ARB_texture_env_dot3;
4105 GLboolean ARB_texture_filter_anisotropic;
4106 GLboolean ARB_texture_float;
4107 GLboolean ARB_texture_gather;
4108 GLboolean ARB_texture_mirror_clamp_to_edge;
4109 GLboolean ARB_texture_multisample;
4110 GLboolean ARB_texture_non_power_of_two;
4111 GLboolean ARB_texture_stencil8;
4112 GLboolean ARB_texture_query_levels;
4113 GLboolean ARB_texture_query_lod;
4114 GLboolean ARB_texture_rg;
4115 GLboolean ARB_texture_rgb10_a2ui;
4116 GLboolean ARB_texture_view;
4117 GLboolean ARB_timer_query;
4118 GLboolean ARB_transform_feedback2;
4119 GLboolean ARB_transform_feedback3;
4120 GLboolean ARB_transform_feedback_instanced;
4121 GLboolean ARB_transform_feedback_overflow_query;
4122 GLboolean ARB_uniform_buffer_object;
4123 GLboolean ARB_vertex_attrib_64bit;
4124 GLboolean ARB_vertex_program;
4125 GLboolean ARB_vertex_shader;
4126 GLboolean ARB_vertex_type_10f_11f_11f_rev;
4127 GLboolean ARB_vertex_type_2_10_10_10_rev;
4128 GLboolean ARB_viewport_array;
4129 GLboolean EXT_blend_color;
4130 GLboolean EXT_blend_equation_separate;
4131 GLboolean EXT_blend_func_separate;
4132 GLboolean EXT_blend_minmax;
4133 GLboolean EXT_depth_bounds_test;
4134 GLboolean EXT_draw_buffers2;
4135 GLboolean EXT_framebuffer_multisample;
4136 GLboolean EXT_framebuffer_multisample_blit_scaled;
4137 GLboolean EXT_framebuffer_sRGB;
4138 GLboolean EXT_gpu_program_parameters;
4139 GLboolean EXT_gpu_shader4;
4140 GLboolean EXT_memory_object;
4141 GLboolean EXT_memory_object_fd;
4142 GLboolean EXT_packed_float;
4143 GLboolean EXT_pixel_buffer_object;
4144 GLboolean EXT_point_parameters;
4145 GLboolean EXT_provoking_vertex;
4146 GLboolean EXT_shader_integer_mix;
4147 GLboolean EXT_shader_samples_identical;
4148 GLboolean EXT_stencil_two_side;
4149 GLboolean EXT_texture_array;
4150 GLboolean EXT_texture_compression_latc;
4151 GLboolean EXT_texture_compression_s3tc;
4152 GLboolean EXT_texture_env_dot3;
4153 GLboolean EXT_texture_filter_anisotropic;
4154 GLboolean EXT_texture_integer;
4155 GLboolean EXT_texture_mirror_clamp;
4156 GLboolean EXT_texture_shared_exponent;
4157 GLboolean EXT_texture_snorm;
4158 GLboolean EXT_texture_sRGB;
4159 GLboolean EXT_texture_sRGB_decode;
4160 GLboolean EXT_texture_swizzle;
4161 GLboolean EXT_texture_type_2_10_10_10_REV;
4162 GLboolean EXT_transform_feedback;
4163 GLboolean EXT_timer_query;
4164 GLboolean EXT_vertex_array_bgra;
4165 GLboolean EXT_window_rectangles;
4166 GLboolean OES_copy_image;
4167 GLboolean OES_primitive_bounding_box;
4168 GLboolean OES_sample_variables;
4169 GLboolean OES_standard_derivatives;
4170 GLboolean OES_texture_buffer;
4171 GLboolean OES_texture_cube_map_array;
4172 GLboolean OES_viewport_array;
4173 /* vendor extensions */
4174 GLboolean AMD_performance_monitor;
4175 GLboolean AMD_pinned_memory;
4176 GLboolean AMD_seamless_cubemap_per_texture;
4177 GLboolean AMD_vertex_shader_layer;
4178 GLboolean AMD_vertex_shader_viewport_index;
4179 GLboolean ANDROID_extension_pack_es31a;
4180 GLboolean APPLE_object_purgeable;
4181 GLboolean ATI_meminfo;
4182 GLboolean ATI_texture_compression_3dc;
4183 GLboolean ATI_texture_mirror_once;
4184 GLboolean ATI_texture_env_combine3;
4185 GLboolean ATI_fragment_shader;
4186 GLboolean ATI_separate_stencil;
4187 GLboolean GREMEDY_string_marker;
4188 GLboolean INTEL_conservative_rasterization;
4189 GLboolean INTEL_performance_query;
4190 GLboolean KHR_blend_equation_advanced;
4191 GLboolean KHR_blend_equation_advanced_coherent;
4192 GLboolean KHR_robustness;
4193 GLboolean KHR_texture_compression_astc_hdr;
4194 GLboolean KHR_texture_compression_astc_ldr;
4195 GLboolean KHR_texture_compression_astc_sliced_3d;
4196 GLboolean MESA_tile_raster_order;
4197 GLboolean MESA_pack_invert;
4198 GLboolean MESA_shader_framebuffer_fetch;
4199 GLboolean MESA_shader_framebuffer_fetch_non_coherent;
4200 GLboolean MESA_shader_integer_functions;
4201 GLboolean MESA_ycbcr_texture;
4202 GLboolean NV_conditional_render;
4203 GLboolean NV_fill_rectangle;
4204 GLboolean NV_fog_distance;
4205 GLboolean NV_point_sprite;
4206 GLboolean NV_primitive_restart;
4207 GLboolean NV_texture_barrier;
4208 GLboolean NV_texture_env_combine4;
4209 GLboolean NV_texture_rectangle;
4210 GLboolean NV_vdpau_interop;
4211 GLboolean NVX_gpu_memory_info;
4212 GLboolean TDFX_texture_compression_FXT1;
4213 GLboolean OES_EGL_image;
4214 GLboolean OES_draw_texture;
4215 GLboolean OES_depth_texture_cube_map;
4216 GLboolean OES_EGL_image_external;
4217 GLboolean OES_texture_float;
4218 GLboolean OES_texture_float_linear;
4219 GLboolean OES_texture_half_float;
4220 GLboolean OES_texture_half_float_linear;
4221 GLboolean OES_compressed_ETC1_RGB8_texture;
4222 GLboolean OES_geometry_shader;
4223 GLboolean OES_texture_compression_astc;
4224 GLboolean extension_sentinel;
4225 /** The extension string */
4226 const GLubyte *String;
4227 /** Number of supported extensions */
4228 GLuint Count;
4229 /**
4230 * The context version which extension helper functions compare against.
4231 * By default, the value is equal to ctx->Version. This changes to ~0
4232 * while meta is in progress.
4233 */
4234 GLubyte Version;
4235 };
4236
4237
4238 /**
4239 * A stack of matrices (projection, modelview, color, texture, etc).
4240 */
4241 struct gl_matrix_stack
4242 {
4243 GLmatrix *Top; /**< points into Stack */
4244 GLmatrix *Stack; /**< array [MaxDepth] of GLmatrix */
4245 unsigned StackSize; /**< Number of elements in Stack */
4246 GLuint Depth; /**< 0 <= Depth < MaxDepth */
4247 GLuint MaxDepth; /**< size of Stack[] array */
4248 GLuint DirtyFlag; /**< _NEW_MODELVIEW or _NEW_PROJECTION, for example */
4249 };
4250
4251
4252 /**
4253 * \name Bits for image transfer operations
4254 * \sa __struct gl_contextRec::ImageTransferState.
4255 */
4256 /*@{*/
4257 #define IMAGE_SCALE_BIAS_BIT 0x1
4258 #define IMAGE_SHIFT_OFFSET_BIT 0x2
4259 #define IMAGE_MAP_COLOR_BIT 0x4
4260 #define IMAGE_CLAMP_BIT 0x800
4261
4262
4263 /** Pixel Transfer ops */
4264 #define IMAGE_BITS (IMAGE_SCALE_BIAS_BIT | \
4265 IMAGE_SHIFT_OFFSET_BIT | \
4266 IMAGE_MAP_COLOR_BIT)
4267
4268 /**
4269 * \name Bits to indicate what state has changed.
4270 */
4271 /*@{*/
4272 #define _NEW_MODELVIEW (1u << 0) /**< gl_context::ModelView */
4273 #define _NEW_PROJECTION (1u << 1) /**< gl_context::Projection */
4274 #define _NEW_TEXTURE_MATRIX (1u << 2) /**< gl_context::TextureMatrix */
4275 #define _NEW_COLOR (1u << 3) /**< gl_context::Color */
4276 #define _NEW_DEPTH (1u << 4) /**< gl_context::Depth */
4277 #define _NEW_EVAL (1u << 5) /**< gl_context::Eval, EvalMap */
4278 #define _NEW_FOG (1u << 6) /**< gl_context::Fog */
4279 #define _NEW_HINT (1u << 7) /**< gl_context::Hint */
4280 #define _NEW_LIGHT (1u << 8) /**< gl_context::Light */
4281 #define _NEW_LINE (1u << 9) /**< gl_context::Line */
4282 #define _NEW_PIXEL (1u << 10) /**< gl_context::Pixel */
4283 #define _NEW_POINT (1u << 11) /**< gl_context::Point */
4284 #define _NEW_POLYGON (1u << 12) /**< gl_context::Polygon */
4285 #define _NEW_POLYGONSTIPPLE (1u << 13) /**< gl_context::PolygonStipple */
4286 #define _NEW_SCISSOR (1u << 14) /**< gl_context::Scissor */
4287 #define _NEW_STENCIL (1u << 15) /**< gl_context::Stencil */
4288 #define _NEW_TEXTURE_OBJECT (1u << 16) /**< gl_context::Texture (bindings only) */
4289 #define _NEW_TRANSFORM (1u << 17) /**< gl_context::Transform */
4290 #define _NEW_VIEWPORT (1u << 18) /**< gl_context::Viewport */
4291 #define _NEW_TEXTURE_STATE (1u << 19) /**< gl_context::Texture (states only) */
4292 #define _NEW_ARRAY (1u << 20) /**< gl_context::Array */
4293 #define _NEW_RENDERMODE (1u << 21) /**< gl_context::RenderMode, etc */
4294 #define _NEW_BUFFERS (1u << 22) /**< gl_context::Visual, DrawBuffer, */
4295 #define _NEW_CURRENT_ATTRIB (1u << 23) /**< gl_context::Current */
4296 #define _NEW_MULTISAMPLE (1u << 24) /**< gl_context::Multisample */
4297 #define _NEW_TRACK_MATRIX (1u << 25) /**< gl_context::VertexProgram */
4298 #define _NEW_PROGRAM (1u << 26) /**< New program/shader state */
4299 #define _NEW_PROGRAM_CONSTANTS (1u << 27)
4300 /* gap */
4301 #define _NEW_FRAG_CLAMP (1u << 29)
4302 /* gap, re-use for core Mesa state only; use ctx->DriverFlags otherwise */
4303 #define _NEW_VARYING_VP_INPUTS (1u << 31) /**< gl_context::varying_vp_inputs */
4304 #define _NEW_ALL ~0
4305 /*@}*/
4306
4307
4308 /**
4309 * Composite state flags
4310 */
4311 /*@{*/
4312 #define _NEW_TEXTURE (_NEW_TEXTURE_OBJECT | _NEW_TEXTURE_STATE)
4313
4314 #define _MESA_NEW_NEED_EYE_COORDS (_NEW_LIGHT | \
4315 _NEW_TEXTURE_STATE | \
4316 _NEW_POINT | \
4317 _NEW_PROGRAM | \
4318 _NEW_MODELVIEW)
4319
4320 #define _MESA_NEW_SEPARATE_SPECULAR (_NEW_LIGHT | \
4321 _NEW_FOG | \
4322 _NEW_PROGRAM)
4323
4324
4325 /*@}*/
4326
4327
4328
4329
4330 /* This has to be included here. */
4331 #include "dd.h"
4332
4333
4334 /**
4335 * Display list flags.
4336 * Strictly this is a tnl-private concept, but it doesn't seem
4337 * worthwhile adding a tnl private structure just to hold this one bit
4338 * of information:
4339 */
4340 #define DLIST_DANGLING_REFS 0x1
4341
4342
4343 /** Opaque declaration of display list payload data type */
4344 union gl_dlist_node;
4345
4346
4347 /**
4348 * Provide a location where information about a display list can be
4349 * collected. Could be extended with driverPrivate structures,
4350 * etc. in the future.
4351 */
4352 struct gl_display_list
4353 {
4354 GLuint Name;
4355 GLbitfield Flags; /**< DLIST_x flags */
4356 GLchar *Label; /**< GL_KHR_debug */
4357 /** The dlist commands are in a linked list of nodes */
4358 union gl_dlist_node *Head;
4359 };
4360
4361
4362 /**
4363 * State used during display list compilation and execution.
4364 */
4365 struct gl_dlist_state
4366 {
4367 struct gl_display_list *CurrentList; /**< List currently being compiled */
4368 union gl_dlist_node *CurrentBlock; /**< Pointer to current block of nodes */
4369 GLuint CurrentPos; /**< Index into current block of nodes */
4370 GLuint CallDepth; /**< Current recursion calling depth */
4371
4372 GLvertexformat ListVtxfmt;
4373
4374 GLubyte ActiveAttribSize[VERT_ATTRIB_MAX];
4375 GLfloat CurrentAttrib[VERT_ATTRIB_MAX][4];
4376
4377 GLubyte ActiveMaterialSize[MAT_ATTRIB_MAX];
4378 GLfloat CurrentMaterial[MAT_ATTRIB_MAX][4];
4379
4380 struct {
4381 /* State known to have been set by the currently-compiling display
4382 * list. Used to eliminate some redundant state changes.
4383 */
4384 GLenum ShadeModel;
4385 } Current;
4386 };
4387
4388 /** @{
4389 *
4390 * These are a mapping of the GL_ARB_debug_output/GL_KHR_debug enums
4391 * to small enums suitable for use as an array index.
4392 */
4393
4394 enum mesa_debug_source {
4395 MESA_DEBUG_SOURCE_API,
4396 MESA_DEBUG_SOURCE_WINDOW_SYSTEM,
4397 MESA_DEBUG_SOURCE_SHADER_COMPILER,
4398 MESA_DEBUG_SOURCE_THIRD_PARTY,
4399 MESA_DEBUG_SOURCE_APPLICATION,
4400 MESA_DEBUG_SOURCE_OTHER,
4401 MESA_DEBUG_SOURCE_COUNT
4402 };
4403
4404 enum mesa_debug_type {
4405 MESA_DEBUG_TYPE_ERROR,
4406 MESA_DEBUG_TYPE_DEPRECATED,
4407 MESA_DEBUG_TYPE_UNDEFINED,
4408 MESA_DEBUG_TYPE_PORTABILITY,
4409 MESA_DEBUG_TYPE_PERFORMANCE,
4410 MESA_DEBUG_TYPE_OTHER,
4411 MESA_DEBUG_TYPE_MARKER,
4412 MESA_DEBUG_TYPE_PUSH_GROUP,
4413 MESA_DEBUG_TYPE_POP_GROUP,
4414 MESA_DEBUG_TYPE_COUNT
4415 };
4416
4417 enum mesa_debug_severity {
4418 MESA_DEBUG_SEVERITY_LOW,
4419 MESA_DEBUG_SEVERITY_MEDIUM,
4420 MESA_DEBUG_SEVERITY_HIGH,
4421 MESA_DEBUG_SEVERITY_NOTIFICATION,
4422 MESA_DEBUG_SEVERITY_COUNT
4423 };
4424
4425 /** @} */
4426
4427 /**
4428 * Driver-specific state flags.
4429 *
4430 * These are or'd with gl_context::NewDriverState to notify a driver about
4431 * a state change. The driver sets the flags at context creation and
4432 * the meaning of the bits set is opaque to core Mesa.
4433 */
4434 struct gl_driver_flags
4435 {
4436 /** gl_context::Array::_DrawArrays (vertex array state) */
4437 uint64_t NewArray;
4438
4439 /** gl_context::TransformFeedback::CurrentObject */
4440 uint64_t NewTransformFeedback;
4441
4442 /** gl_context::TransformFeedback::CurrentObject::shader_program */
4443 uint64_t NewTransformFeedbackProg;
4444
4445 /** gl_context::RasterDiscard */
4446 uint64_t NewRasterizerDiscard;
4447
4448 /** gl_context::TileRasterOrder* */
4449 uint64_t NewTileRasterOrder;
4450
4451 /**
4452 * gl_context::UniformBufferBindings
4453 * gl_shader_program::UniformBlocks
4454 */
4455 uint64_t NewUniformBuffer;
4456
4457 /**
4458 * gl_context::ShaderStorageBufferBindings
4459 * gl_shader_program::ShaderStorageBlocks
4460 */
4461 uint64_t NewShaderStorageBuffer;
4462
4463 uint64_t NewTextureBuffer;
4464
4465 /**
4466 * gl_context::AtomicBufferBindings
4467 */
4468 uint64_t NewAtomicBuffer;
4469
4470 /**
4471 * gl_context::ImageUnits
4472 */
4473 uint64_t NewImageUnits;
4474
4475 /**
4476 * gl_context::TessCtrlProgram::patch_default_*
4477 */
4478 uint64_t NewDefaultTessLevels;
4479
4480 /**
4481 * gl_context::IntelConservativeRasterization
4482 */
4483 uint64_t NewIntelConservativeRasterization;
4484
4485 /**
4486 * gl_context::Scissor::WindowRects
4487 */
4488 uint64_t NewWindowRectangles;
4489
4490 /** gl_context::Color::sRGBEnabled */
4491 uint64_t NewFramebufferSRGB;
4492
4493 /** gl_context::Scissor::EnableFlags */
4494 uint64_t NewScissorTest;
4495
4496 /** gl_context::Scissor::ScissorArray */
4497 uint64_t NewScissorRect;
4498
4499 /** gl_context::Color::Alpha* */
4500 uint64_t NewAlphaTest;
4501
4502 /** gl_context::Color::Blend/Dither */
4503 uint64_t NewBlend;
4504
4505 /** gl_context::Color::BlendColor */
4506 uint64_t NewBlendColor;
4507
4508 /** gl_context::Color::Color/Index */
4509 uint64_t NewColorMask;
4510
4511 /** gl_context::Depth */
4512 uint64_t NewDepth;
4513
4514 /** gl_context::Color::LogicOp/ColorLogicOp/IndexLogicOp */
4515 uint64_t NewLogicOp;
4516
4517 /** gl_context::Multisample::Enabled */
4518 uint64_t NewMultisampleEnable;
4519
4520 /** gl_context::Multisample::SampleAlphaTo* */
4521 uint64_t NewSampleAlphaToXEnable;
4522
4523 /** gl_context::Multisample::SampleCoverage/SampleMaskValue */
4524 uint64_t NewSampleMask;
4525
4526 /** gl_context::Multisample::(Min)SampleShading */
4527 uint64_t NewSampleShading;
4528
4529 /** gl_context::Stencil */
4530 uint64_t NewStencil;
4531
4532 /** gl_context::Transform::ClipOrigin/ClipDepthMode */
4533 uint64_t NewClipControl;
4534
4535 /** gl_context::Transform::EyeUserPlane */
4536 uint64_t NewClipPlane;
4537
4538 /** gl_context::Transform::ClipPlanesEnabled */
4539 uint64_t NewClipPlaneEnable;
4540
4541 /** gl_context::Transform::DepthClamp */
4542 uint64_t NewDepthClamp;
4543
4544 /** gl_context::Line */
4545 uint64_t NewLineState;
4546
4547 /** gl_context::Polygon */
4548 uint64_t NewPolygonState;
4549
4550 /** gl_context::PolygonStipple */
4551 uint64_t NewPolygonStipple;
4552
4553 /** gl_context::ViewportArray */
4554 uint64_t NewViewport;
4555
4556 /** Shader constants (uniforms, program parameters, state constants) */
4557 uint64_t NewShaderConstants[MESA_SHADER_STAGES];
4558 };
4559
4560 struct gl_buffer_binding
4561 {
4562 struct gl_buffer_object *BufferObject;
4563 /** Start of uniform block data in the buffer */
4564 GLintptr Offset;
4565 /** Size of data allowed to be referenced from the buffer (in bytes) */
4566 GLsizeiptr Size;
4567 /**
4568 * glBindBufferBase() indicates that the Size should be ignored and only
4569 * limited by the current size of the BufferObject.
4570 */
4571 GLboolean AutomaticSize;
4572 };
4573
4574 /**
4575 * ARB_shader_image_load_store image unit.
4576 */
4577 struct gl_image_unit
4578 {
4579 /**
4580 * Texture object bound to this unit.
4581 */
4582 struct gl_texture_object *TexObj;
4583
4584 /**
4585 * Level of the texture object bound to this unit.
4586 */
4587 GLuint Level;
4588
4589 /**
4590 * \c GL_TRUE if the whole level is bound as an array of layers, \c
4591 * GL_FALSE if only some specific layer of the texture is bound.
4592 * \sa Layer
4593 */
4594 GLboolean Layered;
4595
4596 /**
4597 * Layer of the texture object bound to this unit as specified by the
4598 * application.
4599 */
4600 GLuint Layer;
4601
4602 /**
4603 * Layer of the texture object bound to this unit, or zero if the
4604 * whole level is bound.
4605 */
4606 GLuint _Layer;
4607
4608 /**
4609 * Access allowed to this texture image. Either \c GL_READ_ONLY,
4610 * \c GL_WRITE_ONLY or \c GL_READ_WRITE.
4611 */
4612 GLenum Access;
4613
4614 /**
4615 * GL internal format that determines the interpretation of the
4616 * image memory when shader image operations are performed through
4617 * this unit.
4618 */
4619 GLenum Format;
4620
4621 /**
4622 * Mesa format corresponding to \c Format.
4623 */
4624 mesa_format _ActualFormat;
4625
4626 };
4627
4628 /**
4629 * Shader subroutines storage
4630 */
4631 struct gl_subroutine_index_binding
4632 {
4633 GLuint NumIndex;
4634 GLuint *IndexPtr;
4635 };
4636
4637 struct gl_texture_handle_object
4638 {
4639 struct gl_texture_object *texObj;
4640 struct gl_sampler_object *sampObj;
4641 GLuint64 handle;
4642 };
4643
4644 struct gl_image_handle_object
4645 {
4646 struct gl_image_unit imgObj;
4647 GLuint64 handle;
4648 };
4649
4650 struct gl_memory_object
4651 {
4652 GLuint Name; /**< hash table ID/name */
4653 GLboolean Immutable; /**< denotes mutability state of parameters */
4654 GLboolean Dedicated; /**< import memory from a dedicated allocation */
4655 };
4656
4657 /**
4658 * Mesa rendering context.
4659 *
4660 * This is the central context data structure for Mesa. Almost all
4661 * OpenGL state is contained in this structure.
4662 * Think of this as a base class from which device drivers will derive
4663 * sub classes.
4664 */
4665 struct gl_context
4666 {
4667 /** State possibly shared with other contexts in the address space */
4668 struct gl_shared_state *Shared;
4669
4670 /** \name API function pointer tables */
4671 /*@{*/
4672 gl_api API;
4673
4674 /**
4675 * The current dispatch table for non-displaylist-saving execution, either
4676 * BeginEnd or OutsideBeginEnd
4677 */
4678 struct _glapi_table *Exec;
4679 /**
4680 * The normal dispatch table for non-displaylist-saving, non-begin/end
4681 */
4682 struct _glapi_table *OutsideBeginEnd;
4683 /** The dispatch table used between glNewList() and glEndList() */
4684 struct _glapi_table *Save;
4685 /**
4686 * The dispatch table used between glBegin() and glEnd() (outside of a
4687 * display list). Only valid functions between those two are set, which is
4688 * mostly just the set in a GLvertexformat struct.
4689 */
4690 struct _glapi_table *BeginEnd;
4691 /**
4692 * Dispatch table for when a graphics reset has happened.
4693 */
4694 struct _glapi_table *ContextLost;
4695 /**
4696 * Dispatch table used to marshal API calls from the client program to a
4697 * separate server thread. NULL if API calls are not being marshalled to
4698 * another thread.
4699 */
4700 struct _glapi_table *MarshalExec;
4701 /**
4702 * Dispatch table currently in use for fielding API calls from the client
4703 * program. If API calls are being marshalled to another thread, this ==
4704 * MarshalExec. Otherwise it == CurrentServerDispatch.
4705 */
4706 struct _glapi_table *CurrentClientDispatch;
4707
4708 /**
4709 * Dispatch table currently in use for performing API calls. == Save or
4710 * Exec.
4711 */
4712 struct _glapi_table *CurrentServerDispatch;
4713
4714 /*@}*/
4715
4716 struct glthread_state *GLThread;
4717
4718 struct gl_config Visual;
4719 struct gl_framebuffer *DrawBuffer; /**< buffer for writing */
4720 struct gl_framebuffer *ReadBuffer; /**< buffer for reading */
4721 struct gl_framebuffer *WinSysDrawBuffer; /**< set with MakeCurrent */
4722 struct gl_framebuffer *WinSysReadBuffer; /**< set with MakeCurrent */
4723
4724 /**
4725 * Device driver function pointer table
4726 */
4727 struct dd_function_table Driver;
4728
4729 /** Core/Driver constants */
4730 struct gl_constants Const;
4731
4732 /** \name The various 4x4 matrix stacks */
4733 /*@{*/
4734 struct gl_matrix_stack ModelviewMatrixStack;
4735 struct gl_matrix_stack ProjectionMatrixStack;
4736 struct gl_matrix_stack TextureMatrixStack[MAX_TEXTURE_UNITS];
4737 struct gl_matrix_stack ProgramMatrixStack[MAX_PROGRAM_MATRICES];
4738 struct gl_matrix_stack *CurrentStack; /**< Points to one of the above stacks */
4739 /*@}*/
4740
4741 /** Combined modelview and projection matrix */
4742 GLmatrix _ModelProjectMatrix;
4743
4744 /** \name Display lists */
4745 struct gl_dlist_state ListState;
4746
4747 GLboolean ExecuteFlag; /**< Execute GL commands? */
4748 GLboolean CompileFlag; /**< Compile GL commands into display list? */
4749
4750 /** Extension information */
4751 struct gl_extensions Extensions;
4752
4753 /** GL version integer, for example 31 for GL 3.1, or 20 for GLES 2.0. */
4754 GLuint Version;
4755 char *VersionString;
4756
4757 /** \name State attribute stack (for glPush/PopAttrib) */
4758 /*@{*/
4759 GLuint AttribStackDepth;
4760 struct gl_attrib_node *AttribStack[MAX_ATTRIB_STACK_DEPTH];
4761 /*@}*/
4762
4763 /** \name Renderer attribute groups
4764 *
4765 * We define a struct for each attribute group to make pushing and popping
4766 * attributes easy. Also it's a good organization.
4767 */
4768 /*@{*/
4769 struct gl_accum_attrib Accum; /**< Accum buffer attributes */
4770 struct gl_colorbuffer_attrib Color; /**< Color buffer attributes */
4771 struct gl_current_attrib Current; /**< Current attributes */
4772 struct gl_depthbuffer_attrib Depth; /**< Depth buffer attributes */
4773 struct gl_eval_attrib Eval; /**< Eval attributes */
4774 struct gl_fog_attrib Fog; /**< Fog attributes */
4775 struct gl_hint_attrib Hint; /**< Hint attributes */
4776 struct gl_light_attrib Light; /**< Light attributes */
4777 struct gl_line_attrib Line; /**< Line attributes */
4778 struct gl_list_attrib List; /**< List attributes */
4779 struct gl_multisample_attrib Multisample;
4780 struct gl_pixel_attrib Pixel; /**< Pixel attributes */
4781 struct gl_point_attrib Point; /**< Point attributes */
4782 struct gl_polygon_attrib Polygon; /**< Polygon attributes */
4783 GLuint PolygonStipple[32]; /**< Polygon stipple */
4784 struct gl_scissor_attrib Scissor; /**< Scissor attributes */
4785 struct gl_stencil_attrib Stencil; /**< Stencil buffer attributes */
4786 struct gl_texture_attrib Texture; /**< Texture attributes */
4787 struct gl_transform_attrib Transform; /**< Transformation attributes */
4788 struct gl_viewport_attrib ViewportArray[MAX_VIEWPORTS]; /**< Viewport attributes */
4789 /*@}*/
4790
4791 /** \name Client attribute stack */
4792 /*@{*/
4793 GLuint ClientAttribStackDepth;
4794 struct gl_attrib_node *ClientAttribStack[MAX_CLIENT_ATTRIB_STACK_DEPTH];
4795 /*@}*/
4796
4797 /** \name Client attribute groups */
4798 /*@{*/
4799 struct gl_array_attrib Array; /**< Vertex arrays */
4800 struct gl_pixelstore_attrib Pack; /**< Pixel packing */
4801 struct gl_pixelstore_attrib Unpack; /**< Pixel unpacking */
4802 struct gl_pixelstore_attrib DefaultPacking; /**< Default params */
4803 /*@}*/
4804
4805 /** \name Other assorted state (not pushed/popped on attribute stack) */
4806 /*@{*/
4807 struct gl_pixelmaps PixelMaps;
4808
4809 struct gl_evaluators EvalMap; /**< All evaluators */
4810 struct gl_feedback Feedback; /**< Feedback */
4811 struct gl_selection Select; /**< Selection */
4812
4813 struct gl_program_state Program; /**< general program state */
4814 struct gl_vertex_program_state VertexProgram;
4815 struct gl_fragment_program_state FragmentProgram;
4816 struct gl_geometry_program_state GeometryProgram;
4817 struct gl_compute_program_state ComputeProgram;
4818 struct gl_tess_ctrl_program_state TessCtrlProgram;
4819 struct gl_tess_eval_program_state TessEvalProgram;
4820 struct gl_ati_fragment_shader_state ATIFragmentShader;
4821
4822 struct gl_pipeline_shader_state Pipeline; /**< GLSL pipeline shader object state */
4823 struct gl_pipeline_object Shader; /**< GLSL shader object state */
4824
4825 /**
4826 * Current active shader pipeline state
4827 *
4828 * Almost all internal users want ::_Shader instead of ::Shader. The
4829 * exceptions are bits of legacy GLSL API that do not know about separate
4830 * shader objects.
4831 *
4832 * If a program is active via \c glUseProgram, this will point to
4833 * \c ::Shader.
4834 *
4835 * If a program pipeline is active via \c glBindProgramPipeline, this will
4836 * point to \c ::Pipeline.Current.
4837 *
4838 * If neither a program nor a program pipeline is active, this will point to
4839 * \c ::Pipeline.Default. This ensures that \c ::_Shader will never be
4840 * \c NULL.
4841 */
4842 struct gl_pipeline_object *_Shader;
4843
4844 struct gl_query_state Query; /**< occlusion, timer queries */
4845
4846 struct gl_transform_feedback_state TransformFeedback;
4847
4848 struct gl_perf_monitor_state PerfMonitor;
4849 struct gl_perf_query_state PerfQuery;
4850
4851 struct gl_buffer_object *DrawIndirectBuffer; /** < GL_ARB_draw_indirect */
4852 struct gl_buffer_object *ParameterBuffer; /** < GL_ARB_indirect_parameters */
4853 struct gl_buffer_object *DispatchIndirectBuffer; /** < GL_ARB_compute_shader */
4854
4855 struct gl_buffer_object *CopyReadBuffer; /**< GL_ARB_copy_buffer */
4856 struct gl_buffer_object *CopyWriteBuffer; /**< GL_ARB_copy_buffer */
4857
4858 struct gl_buffer_object *QueryBuffer; /**< GL_ARB_query_buffer_object */
4859
4860 /**
4861 * Current GL_ARB_uniform_buffer_object binding referenced by
4862 * GL_UNIFORM_BUFFER target for glBufferData, glMapBuffer, etc.
4863 */
4864 struct gl_buffer_object *UniformBuffer;
4865
4866 /**
4867 * Current GL_ARB_shader_storage_buffer_object binding referenced by
4868 * GL_SHADER_STORAGE_BUFFER target for glBufferData, glMapBuffer, etc.
4869 */
4870 struct gl_buffer_object *ShaderStorageBuffer;
4871
4872 /**
4873 * Array of uniform buffers for GL_ARB_uniform_buffer_object and GL 3.1.
4874 * This is set up using glBindBufferRange() or glBindBufferBase(). They are
4875 * associated with uniform blocks by glUniformBlockBinding()'s state in the
4876 * shader program.
4877 */
4878 struct gl_buffer_binding
4879 UniformBufferBindings[MAX_COMBINED_UNIFORM_BUFFERS];
4880
4881 /**
4882 * Array of shader storage buffers for ARB_shader_storage_buffer_object
4883 * and GL 4.3. This is set up using glBindBufferRange() or
4884 * glBindBufferBase(). They are associated with shader storage blocks by
4885 * glShaderStorageBlockBinding()'s state in the shader program.
4886 */
4887 struct gl_buffer_binding
4888 ShaderStorageBufferBindings[MAX_COMBINED_SHADER_STORAGE_BUFFERS];
4889
4890 /**
4891 * Object currently associated with the GL_ATOMIC_COUNTER_BUFFER
4892 * target.
4893 */
4894 struct gl_buffer_object *AtomicBuffer;
4895
4896 /**
4897 * Object currently associated w/ the GL_EXTERNAL_VIRTUAL_MEMORY_BUFFER_AMD
4898 * target.
4899 */
4900 struct gl_buffer_object *ExternalVirtualMemoryBuffer;
4901
4902 /**
4903 * Array of atomic counter buffer binding points.
4904 */
4905 struct gl_buffer_binding
4906 AtomicBufferBindings[MAX_COMBINED_ATOMIC_BUFFERS];
4907
4908 /**
4909 * Array of image units for ARB_shader_image_load_store.
4910 */
4911 struct gl_image_unit ImageUnits[MAX_IMAGE_UNITS];
4912
4913 struct gl_subroutine_index_binding SubroutineIndex[MESA_SHADER_STAGES];
4914 /*@}*/
4915
4916 struct gl_meta_state *Meta; /**< for "meta" operations */
4917
4918 /* GL_EXT_framebuffer_object */
4919 struct gl_renderbuffer *CurrentRenderbuffer;
4920
4921 GLenum ErrorValue; /**< Last error code */
4922
4923 /**
4924 * Recognize and silence repeated error debug messages in buggy apps.
4925 */
4926 const char *ErrorDebugFmtString;
4927 GLuint ErrorDebugCount;
4928
4929 /* GL_ARB_debug_output/GL_KHR_debug */
4930 mtx_t DebugMutex;
4931 struct gl_debug_state *Debug;
4932
4933 GLenum RenderMode; /**< either GL_RENDER, GL_SELECT, GL_FEEDBACK */
4934 GLbitfield NewState; /**< bitwise-or of _NEW_* flags */
4935 uint64_t NewDriverState; /**< bitwise-or of flags from DriverFlags */
4936
4937 struct gl_driver_flags DriverFlags;
4938
4939 GLboolean ViewportInitialized; /**< has viewport size been initialized? */
4940
4941 GLbitfield64 varying_vp_inputs; /**< mask of VERT_BIT_* flags */
4942
4943 /** \name Derived state */
4944 GLbitfield _ImageTransferState;/**< bitwise-or of IMAGE_*_BIT flags */
4945 GLfloat _EyeZDir[3];
4946 GLfloat _ModelViewInvScale;
4947 GLboolean _NeedEyeCoords;
4948 GLboolean _ForceEyeCoords;
4949
4950 GLuint TextureStateTimestamp; /**< detect changes to shared state */
4951
4952 struct gl_list_extensions *ListExt; /**< driver dlist extensions */
4953
4954 /** \name For debugging/development only */
4955 /*@{*/
4956 GLboolean FirstTimeCurrent;
4957 /*@}*/
4958
4959 /**
4960 * False if this context was created without a config. This is needed
4961 * because the initial state of glDrawBuffers depends on this
4962 */
4963 GLboolean HasConfig;
4964
4965 GLboolean TextureFormatSupported[MESA_FORMAT_COUNT];
4966
4967 GLboolean RasterDiscard; /**< GL_RASTERIZER_DISCARD */
4968 GLboolean IntelConservativeRasterization; /**< GL_INTEL_CONSERVATIVE_RASTERIZATION */
4969
4970 /** Does glVertexAttrib(0) alias glVertex()? */
4971 bool _AttribZeroAliasesVertex;
4972
4973 /**
4974 * When set, TileRasterOrderIncreasingX/Y control the order that a tiled
4975 * renderer's tiles should be excecuted, to meet the requirements of
4976 * GL_MESA_tile_raster_order.
4977 */
4978 GLboolean TileRasterOrderFixed;
4979 GLboolean TileRasterOrderIncreasingX;
4980 GLboolean TileRasterOrderIncreasingY;
4981
4982 /**
4983 * \name Hooks for module contexts.
4984 *
4985 * These will eventually live in the driver or elsewhere.
4986 */
4987 /*@{*/
4988 void *swrast_context;
4989 void *swsetup_context;
4990 void *swtnl_context;
4991 struct vbo_context *vbo_context;
4992 struct st_context *st;
4993 void *aelt_context;
4994 /*@}*/
4995
4996 /**
4997 * \name NV_vdpau_interop
4998 */
4999 /*@{*/
5000 const void *vdpDevice;
5001 const void *vdpGetProcAddress;
5002 struct set *vdpSurfaces;
5003 /*@}*/
5004
5005 /**
5006 * Has this context observed a GPU reset in any context in the share group?
5007 *
5008 * Once this field becomes true, it is never reset to false.
5009 */
5010 GLboolean ShareGroupReset;
5011
5012 /**
5013 * \name OES_primitive_bounding_box
5014 *
5015 * Stores the arguments to glPrimitiveBoundingBox
5016 */
5017 GLfloat PrimitiveBoundingBox[8];
5018
5019 struct disk_cache *Cache;
5020
5021 /**
5022 * \name GL_ARB_bindless_texture
5023 */
5024 /*@{*/
5025 struct hash_table_u64 *ResidentTextureHandles;
5026 struct hash_table_u64 *ResidentImageHandles;
5027 /*@}*/
5028 };
5029
5030 /**
5031 * Information about memory usage. All sizes are in kilobytes.
5032 */
5033 struct gl_memory_info
5034 {
5035 unsigned total_device_memory; /**< size of device memory, e.g. VRAM */
5036 unsigned avail_device_memory; /**< free device memory at the moment */
5037 unsigned total_staging_memory; /**< size of staging memory, e.g. GART */
5038 unsigned avail_staging_memory; /**< free staging memory at the moment */
5039 unsigned device_memory_evicted; /**< size of memory evicted (monotonic counter) */
5040 unsigned nr_device_memory_evictions; /**< # of evictions (monotonic counter) */
5041 };
5042
5043 #ifdef DEBUG
5044 extern int MESA_VERBOSE;
5045 extern int MESA_DEBUG_FLAGS;
5046 # define MESA_FUNCTION __func__
5047 #else
5048 # define MESA_VERBOSE 0
5049 # define MESA_DEBUG_FLAGS 0
5050 # define MESA_FUNCTION "a function"
5051 #endif
5052
5053
5054 /** The MESA_VERBOSE var is a bitmask of these flags */
5055 enum _verbose
5056 {
5057 VERBOSE_VARRAY = 0x0001,
5058 VERBOSE_TEXTURE = 0x0002,
5059 VERBOSE_MATERIAL = 0x0004,
5060 VERBOSE_PIPELINE = 0x0008,
5061 VERBOSE_DRIVER = 0x0010,
5062 VERBOSE_STATE = 0x0020,
5063 VERBOSE_API = 0x0040,
5064 VERBOSE_DISPLAY_LIST = 0x0100,
5065 VERBOSE_LIGHTING = 0x0200,
5066 VERBOSE_PRIMS = 0x0400,
5067 VERBOSE_VERTS = 0x0800,
5068 VERBOSE_DISASSEM = 0x1000,
5069 VERBOSE_DRAW = 0x2000,
5070 VERBOSE_SWAPBUFFERS = 0x4000
5071 };
5072
5073
5074 /** The MESA_DEBUG_FLAGS var is a bitmask of these flags */
5075 enum _debug
5076 {
5077 DEBUG_SILENT = (1 << 0),
5078 DEBUG_ALWAYS_FLUSH = (1 << 1),
5079 DEBUG_INCOMPLETE_TEXTURE = (1 << 2),
5080 DEBUG_INCOMPLETE_FBO = (1 << 3),
5081 DEBUG_CONTEXT = (1 << 4)
5082 };
5083
5084 #ifdef __cplusplus
5085 }
5086 #endif
5087
5088 #endif /* MTYPES_H */