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