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