Merge ../mesa into vulkan
[mesa.git] / src / mesa / state_tracker / st_atom.c
1 /**************************************************************************
2 *
3 * Copyright 2003 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28
29 #include <stdio.h>
30 #include "main/glheader.h"
31 #include "main/context.h"
32
33 #include "pipe/p_defines.h"
34 #include "st_context.h"
35 #include "st_atom.h"
36 #include "st_program.h"
37 #include "st_manager.h"
38
39
40 /**
41 * This is used to initialize st->atoms[].
42 */
43 static const struct st_tracked_state *atoms[] =
44 {
45 &st_update_depth_stencil_alpha,
46 &st_update_clip,
47
48 &st_update_fp,
49 &st_update_gp,
50 &st_update_tep,
51 &st_update_tcp,
52 &st_update_vp,
53
54 &st_update_rasterizer,
55 &st_update_polygon_stipple,
56 &st_update_viewport,
57 &st_update_scissor,
58 &st_update_blend,
59 &st_update_vertex_texture,
60 &st_update_fragment_texture,
61 &st_update_geometry_texture,
62 &st_update_tessctrl_texture,
63 &st_update_tesseval_texture,
64 &st_update_sampler, /* depends on update_*_texture for swizzle */
65 &st_update_framebuffer,
66 &st_update_msaa,
67 &st_update_sample_shading,
68 &st_update_vs_constants,
69 &st_update_tcs_constants,
70 &st_update_tes_constants,
71 &st_update_gs_constants,
72 &st_update_fs_constants,
73 &st_bind_vs_ubos,
74 &st_bind_tcs_ubos,
75 &st_bind_tes_ubos,
76 &st_bind_fs_ubos,
77 &st_bind_gs_ubos,
78 &st_update_pixel_transfer,
79 &st_update_tess,
80
81 /* this must be done after the vertex program update */
82 &st_update_array
83 };
84
85
86 void st_init_atoms( struct st_context *st )
87 {
88 /* no-op */
89 }
90
91
92 void st_destroy_atoms( struct st_context *st )
93 {
94 /* no-op */
95 }
96
97
98
99 static bool
100 check_state(const struct st_state_flags *a, const struct st_state_flags *b)
101 {
102 return (a->mesa & b->mesa) || (a->st & b->st);
103 }
104
105
106 static void
107 accumulate_state(struct st_state_flags *a, const struct st_state_flags *b)
108 {
109 a->mesa |= b->mesa;
110 a->st |= b->st;
111 }
112
113
114 static void
115 xor_states(struct st_state_flags *result,
116 const struct st_state_flags *a,
117 const struct st_state_flags *b)
118 {
119 result->mesa = a->mesa ^ b->mesa;
120 result->st = a->st ^ b->st;
121 }
122
123
124 /* Too complex to figure out, just check every time:
125 */
126 static void check_program_state( struct st_context *st )
127 {
128 struct gl_context *ctx = st->ctx;
129
130 if (ctx->VertexProgram._Current != &st->vp->Base)
131 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
132
133 if (ctx->FragmentProgram._Current != &st->fp->Base)
134 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
135
136 if (ctx->GeometryProgram._Current != &st->gp->Base)
137 st->dirty.st |= ST_NEW_GEOMETRY_PROGRAM;
138 }
139
140 static void check_attrib_edgeflag(struct st_context *st)
141 {
142 const struct gl_client_array **arrays = st->ctx->Array._DrawArrays;
143 GLboolean vertdata_edgeflags, edgeflag_culls_prims, edgeflags_enabled;
144
145 if (!arrays)
146 return;
147
148 edgeflags_enabled = st->ctx->Polygon.FrontMode != GL_FILL ||
149 st->ctx->Polygon.BackMode != GL_FILL;
150
151 vertdata_edgeflags = edgeflags_enabled &&
152 arrays[VERT_ATTRIB_EDGEFLAG]->StrideB != 0;
153 if (vertdata_edgeflags != st->vertdata_edgeflags) {
154 st->vertdata_edgeflags = vertdata_edgeflags;
155 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
156 }
157
158 edgeflag_culls_prims = edgeflags_enabled && !vertdata_edgeflags &&
159 !st->ctx->Current.Attrib[VERT_ATTRIB_EDGEFLAG][0];
160 if (edgeflag_culls_prims != st->edgeflag_culls_prims) {
161 st->edgeflag_culls_prims = edgeflag_culls_prims;
162 st->dirty.st |= ST_NEW_RASTERIZER;
163 }
164 }
165
166
167 /***********************************************************************
168 * Update all derived state:
169 */
170
171 void st_validate_state( struct st_context *st )
172 {
173 struct st_state_flags *state = &st->dirty;
174 GLuint i;
175
176 /* Get Mesa driver state. */
177 st->dirty.st |= st->ctx->NewDriverState;
178 st->ctx->NewDriverState = 0;
179
180 check_attrib_edgeflag(st);
181
182 check_program_state( st );
183
184 st_manager_validate_framebuffers(st);
185
186 if (state->st == 0 && state->mesa == 0)
187 return;
188
189 /*printf("%s %x/%x\n", __func__, state->mesa, state->st);*/
190
191 #ifdef DEBUG
192 if (1) {
193 #else
194 if (0) {
195 #endif
196 /* Debug version which enforces various sanity checks on the
197 * state flags which are generated and checked to help ensure
198 * state atoms are ordered correctly in the list.
199 */
200 struct st_state_flags examined, prev;
201 memset(&examined, 0, sizeof(examined));
202 prev = *state;
203
204 for (i = 0; i < ARRAY_SIZE(atoms); i++) {
205 const struct st_tracked_state *atom = atoms[i];
206 struct st_state_flags generated;
207
208 /*printf("atom %s %x/%x\n", atom->name, atom->dirty.mesa, atom->dirty.st);*/
209
210 if (!(atom->dirty.mesa || atom->dirty.st) ||
211 !atom->update) {
212 printf("malformed atom %s\n", atom->name);
213 assert(0);
214 }
215
216 if (check_state(state, &atom->dirty)) {
217 atoms[i]->update( st );
218 /*printf("after: %x\n", atom->dirty.mesa);*/
219 }
220
221 accumulate_state(&examined, &atom->dirty);
222
223 /* generated = (prev ^ state)
224 * if (examined & generated)
225 * fail;
226 */
227 xor_states(&generated, &prev, state);
228 assert(!check_state(&examined, &generated));
229 prev = *state;
230 }
231 /*printf("\n");*/
232
233 }
234 else {
235 for (i = 0; i < ARRAY_SIZE(atoms); i++) {
236 if (check_state(state, &atoms[i]->dirty))
237 atoms[i]->update( st );
238 }
239 }
240
241 memset(state, 0, sizeof(*state));
242 }