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