gallium: remove pipe_index_buffer and set_index_buffer
[mesa.git] / src / gallium / drivers / etnaviv / etnaviv_emit.c
1 /*
2 * Copyright (c) 2014-2015 Etnaviv Project
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sub license,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Wladimir J. van der Laan <laanwj@gmail.com>
25 */
26
27 #include "etnaviv_emit.h"
28
29 #include "etnaviv_blend.h"
30 #include "etnaviv_compiler.h"
31 #include "etnaviv_context.h"
32 #include "etnaviv_rasterizer.h"
33 #include "etnaviv_resource.h"
34 #include "etnaviv_rs.h"
35 #include "etnaviv_screen.h"
36 #include "etnaviv_shader.h"
37 #include "etnaviv_texture.h"
38 #include "etnaviv_translate.h"
39 #include "etnaviv_uniforms.h"
40 #include "etnaviv_util.h"
41 #include "etnaviv_zsa.h"
42 #include "hw/common.xml.h"
43 #include "hw/state.xml.h"
44 #include "util/u_math.h"
45
46 struct etna_coalesce {
47 uint32_t start;
48 uint32_t last_reg;
49 uint32_t last_fixp;
50 };
51
52 /* Queue a STALL command (queues 2 words) */
53 static inline void
54 CMD_STALL(struct etna_cmd_stream *stream, uint32_t from, uint32_t to)
55 {
56 etna_cmd_stream_emit(stream, VIV_FE_STALL_HEADER_OP_STALL);
57 etna_cmd_stream_emit(stream, VIV_FE_STALL_TOKEN_FROM(from) | VIV_FE_STALL_TOKEN_TO(to));
58 }
59
60 void
61 etna_stall(struct etna_cmd_stream *stream, uint32_t from, uint32_t to)
62 {
63 etna_cmd_stream_reserve(stream, 4);
64
65 etna_emit_load_state(stream, VIVS_GL_SEMAPHORE_TOKEN >> 2, 1, 0);
66 etna_cmd_stream_emit(stream, VIVS_GL_SEMAPHORE_TOKEN_FROM(from) | VIVS_GL_SEMAPHORE_TOKEN_TO(to));
67
68 if (from == SYNC_RECIPIENT_FE) {
69 /* if the frontend is to be stalled, queue a STALL frontend command */
70 CMD_STALL(stream, from, to);
71 } else {
72 /* otherwise, load the STALL token state */
73 etna_emit_load_state(stream, VIVS_GL_STALL_TOKEN >> 2, 1, 0);
74 etna_cmd_stream_emit(stream, VIVS_GL_STALL_TOKEN_FROM(from) | VIVS_GL_STALL_TOKEN_TO(to));
75 }
76 }
77
78 static void
79 etna_coalesce_start(struct etna_cmd_stream *stream,
80 struct etna_coalesce *coalesce)
81 {
82 coalesce->start = etna_cmd_stream_offset(stream);
83 coalesce->last_reg = 0;
84 coalesce->last_fixp = 0;
85 }
86
87 static void
88 etna_coalesce_end(struct etna_cmd_stream *stream,
89 struct etna_coalesce *coalesce)
90 {
91 uint32_t end = etna_cmd_stream_offset(stream);
92 uint32_t size = end - coalesce->start;
93
94 if (size) {
95 uint32_t offset = coalesce->start - 1;
96 uint32_t value = etna_cmd_stream_get(stream, offset);
97
98 value |= VIV_FE_LOAD_STATE_HEADER_COUNT(size);
99 etna_cmd_stream_set(stream, offset, value);
100 }
101
102 /* append needed padding */
103 if (end % 2 == 1)
104 etna_cmd_stream_emit(stream, 0xdeadbeef);
105 }
106
107 static void
108 check_coalsence(struct etna_cmd_stream *stream, struct etna_coalesce *coalesce,
109 uint32_t reg, uint32_t fixp)
110 {
111 if (coalesce->last_reg != 0) {
112 if (((coalesce->last_reg + 4) != reg) || (coalesce->last_fixp != fixp)) {
113 etna_coalesce_end(stream, coalesce);
114 etna_emit_load_state(stream, reg >> 2, 0, fixp);
115 coalesce->start = etna_cmd_stream_offset(stream);
116 }
117 } else {
118 etna_emit_load_state(stream, reg >> 2, 0, fixp);
119 coalesce->start = etna_cmd_stream_offset(stream);
120 }
121
122 coalesce->last_reg = reg;
123 coalesce->last_fixp = fixp;
124 }
125
126 static inline void
127 etna_coalsence_emit(struct etna_cmd_stream *stream,
128 struct etna_coalesce *coalesce, uint32_t reg,
129 uint32_t value)
130 {
131 check_coalsence(stream, coalesce, reg, 0);
132 etna_cmd_stream_emit(stream, value);
133 }
134
135 static inline void
136 etna_coalsence_emit_fixp(struct etna_cmd_stream *stream,
137 struct etna_coalesce *coalesce, uint32_t reg,
138 uint32_t value)
139 {
140 check_coalsence(stream, coalesce, reg, 1);
141 etna_cmd_stream_emit(stream, value);
142 }
143
144 static inline void
145 etna_coalsence_emit_reloc(struct etna_cmd_stream *stream,
146 struct etna_coalesce *coalesce, uint32_t reg,
147 const struct etna_reloc *r)
148 {
149 if (r->bo) {
150 check_coalsence(stream, coalesce, reg, 0);
151 etna_cmd_stream_reloc(stream, r);
152 }
153 }
154
155 #define EMIT_STATE(state_name, src_value) \
156 etna_coalsence_emit(stream, &coalesce, VIVS_##state_name, src_value)
157
158 #define EMIT_STATE_FIXP(state_name, src_value) \
159 etna_coalsence_emit_fixp(stream, &coalesce, VIVS_##state_name, src_value)
160
161 #define EMIT_STATE_RELOC(state_name, src_value) \
162 etna_coalsence_emit_reloc(stream, &coalesce, VIVS_##state_name, src_value)
163
164 /* submit RS state, without any processing and no dependence on context
165 * except TS if this is a source-to-destination blit. */
166 void
167 etna_submit_rs_state(struct etna_context *ctx,
168 const struct compiled_rs_state *cs)
169 {
170 struct etna_screen *screen = etna_screen(ctx->base.screen);
171 struct etna_cmd_stream *stream = ctx->stream;
172 struct etna_coalesce coalesce;
173
174 if (screen->specs.pixel_pipes == 1) {
175 etna_cmd_stream_reserve(stream, 22);
176 etna_coalesce_start(stream, &coalesce);
177 /* 0/1 */ EMIT_STATE(RS_CONFIG, cs->RS_CONFIG);
178 /* 2 */ EMIT_STATE_RELOC(RS_SOURCE_ADDR, &cs->source[0]);
179 /* 3 */ EMIT_STATE(RS_SOURCE_STRIDE, cs->RS_SOURCE_STRIDE);
180 /* 4 */ EMIT_STATE_RELOC(RS_DEST_ADDR, &cs->dest[0]);
181 /* 5 */ EMIT_STATE(RS_DEST_STRIDE, cs->RS_DEST_STRIDE);
182 /* 6/7 */ EMIT_STATE(RS_WINDOW_SIZE, cs->RS_WINDOW_SIZE);
183 /* 8/9 */ EMIT_STATE(RS_DITHER(0), cs->RS_DITHER[0]);
184 /*10 */ EMIT_STATE(RS_DITHER(1), cs->RS_DITHER[1]);
185 /*11 - pad */
186 /*12/13*/ EMIT_STATE(RS_CLEAR_CONTROL, cs->RS_CLEAR_CONTROL);
187 /*14 */ EMIT_STATE(RS_FILL_VALUE(0), cs->RS_FILL_VALUE[0]);
188 /*15 */ EMIT_STATE(RS_FILL_VALUE(1), cs->RS_FILL_VALUE[1]);
189 /*16 */ EMIT_STATE(RS_FILL_VALUE(2), cs->RS_FILL_VALUE[2]);
190 /*17 */ EMIT_STATE(RS_FILL_VALUE(3), cs->RS_FILL_VALUE[3]);
191 /*18/19*/ EMIT_STATE(RS_EXTRA_CONFIG, cs->RS_EXTRA_CONFIG);
192 /*20/21*/ EMIT_STATE(RS_KICKER, 0xbeebbeeb);
193 etna_coalesce_end(stream, &coalesce);
194 } else if (screen->specs.pixel_pipes == 2) {
195 etna_cmd_stream_reserve(stream, 34); /* worst case - both pipes multi=1 */
196 etna_coalesce_start(stream, &coalesce);
197 /* 0/1 */ EMIT_STATE(RS_CONFIG, cs->RS_CONFIG);
198 /* 2/3 */ EMIT_STATE(RS_SOURCE_STRIDE, cs->RS_SOURCE_STRIDE);
199 /* 4/5 */ EMIT_STATE(RS_DEST_STRIDE, cs->RS_DEST_STRIDE);
200 /* 6/7 */ EMIT_STATE_RELOC(RS_PIPE_SOURCE_ADDR(0), &cs->source[0]);
201 if (cs->RS_SOURCE_STRIDE & VIVS_RS_SOURCE_STRIDE_MULTI) {
202 /*8 */ EMIT_STATE_RELOC(RS_PIPE_SOURCE_ADDR(1), &cs->source[1]);
203 /*9 - pad */
204 }
205 /*10/11*/ EMIT_STATE_RELOC(RS_PIPE_DEST_ADDR(0), &cs->dest[0]);
206 if (cs->RS_DEST_STRIDE & VIVS_RS_DEST_STRIDE_MULTI) {
207 /*12*/ EMIT_STATE_RELOC(RS_PIPE_DEST_ADDR(1), &cs->dest[1]);
208 /*13 - pad */
209 }
210 /*14/15*/ EMIT_STATE(RS_PIPE_OFFSET(0), cs->RS_PIPE_OFFSET[0]);
211 /*16 */ EMIT_STATE(RS_PIPE_OFFSET(1), cs->RS_PIPE_OFFSET[1]);
212 /*17 - pad */
213 /*18/19*/ EMIT_STATE(RS_WINDOW_SIZE, cs->RS_WINDOW_SIZE);
214 /*20/21*/ EMIT_STATE(RS_DITHER(0), cs->RS_DITHER[0]);
215 /*22 */ EMIT_STATE(RS_DITHER(1), cs->RS_DITHER[1]);
216 /*23 - pad */
217 /*24/25*/ EMIT_STATE(RS_CLEAR_CONTROL, cs->RS_CLEAR_CONTROL);
218 /*26 */ EMIT_STATE(RS_FILL_VALUE(0), cs->RS_FILL_VALUE[0]);
219 /*27 */ EMIT_STATE(RS_FILL_VALUE(1), cs->RS_FILL_VALUE[1]);
220 /*28 */ EMIT_STATE(RS_FILL_VALUE(2), cs->RS_FILL_VALUE[2]);
221 /*29 */ EMIT_STATE(RS_FILL_VALUE(3), cs->RS_FILL_VALUE[3]);
222 /*30/31*/ EMIT_STATE(RS_EXTRA_CONFIG, cs->RS_EXTRA_CONFIG);
223 /*32/33*/ EMIT_STATE(RS_KICKER, 0xbeebbeeb);
224 etna_coalesce_end(stream, &coalesce);
225 } else {
226 abort();
227 }
228 }
229
230 /* Create bit field that specifies which samplers are active and thus need to be
231 * programmed
232 * 32 bits is enough for 32 samplers. As far as I know this is the upper bound
233 * supported on any Vivante hw
234 * up to GC4000.
235 */
236 static uint32_t
237 active_samplers_bits(struct etna_context *ctx)
238 {
239 return ctx->active_sampler_views & ctx->active_samplers;
240 }
241
242 #define ETNA_3D_CONTEXT_SIZE (400) /* keep this number above "Total state updates (fixed)" from gen_weave_state tool */
243
244 static unsigned
245 required_stream_size(struct etna_context *ctx)
246 {
247 unsigned size = ETNA_3D_CONTEXT_SIZE;
248
249 /* stall + flush */
250 size += 2 + 4;
251
252 /* vertex elements */
253 size += ctx->vertex_elements->num_elements + 1;
254
255 /* uniforms - worst case (2 words per uniform load) */
256 size += ctx->shader.vs->uniforms.const_count * 2;
257 size += ctx->shader.fs->uniforms.const_count * 2;
258
259 /* shader */
260 size += ctx->shader_state.vs_inst_mem_size + 1;
261 size += ctx->shader_state.ps_inst_mem_size + 1;
262
263 /* DRAW_INDEXED_PRIMITIVES command */
264 size += 6;
265
266 /* reserve for alignment etc. */
267 size += 64;
268
269 return size;
270 }
271
272 /* Weave state before draw operation. This function merges all the compiled
273 * state blocks under the context into one device register state. Parts of
274 * this state that are changed since last call (dirty) will be uploaded as
275 * state changes in the command buffer. */
276 void
277 etna_emit_state(struct etna_context *ctx)
278 {
279 struct etna_cmd_stream *stream = ctx->stream;
280 uint32_t active_samplers = active_samplers_bits(ctx);
281
282 /* Pre-reserve the command buffer space which we are likely to need.
283 * This must cover all the state emitted below, and the following
284 * draw command. */
285 etna_cmd_stream_reserve(stream, required_stream_size(ctx));
286
287 uint32_t dirty = ctx->dirty;
288
289 /* Pre-processing: see what caches we need to flush before making state changes. */
290 uint32_t to_flush = 0;
291 if (unlikely(dirty & (ETNA_DIRTY_BLEND))) {
292 /* Need flush COLOR when changing PE.COLOR_FORMAT.OVERWRITE. */
293 #if 0
294 /* TODO*/
295 if ((ctx->gpu3d.PE_COLOR_FORMAT & VIVS_PE_COLOR_FORMAT_OVERWRITE) !=
296 (etna_blend_state(ctx->blend)->PE_COLOR_FORMAT & VIVS_PE_COLOR_FORMAT_OVERWRITE))
297 #endif
298 to_flush |= VIVS_GL_FLUSH_CACHE_COLOR;
299 }
300 if (unlikely(dirty & (ETNA_DIRTY_TEXTURE_CACHES)))
301 to_flush |= VIVS_GL_FLUSH_CACHE_TEXTURE;
302 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER))) /* Framebuffer config changed? */
303 to_flush |= VIVS_GL_FLUSH_CACHE_COLOR | VIVS_GL_FLUSH_CACHE_DEPTH;
304 if (DBG_ENABLED(ETNA_DBG_CFLUSH_ALL))
305 to_flush |= VIVS_GL_FLUSH_CACHE_TEXTURE | VIVS_GL_FLUSH_CACHE_COLOR | VIVS_GL_FLUSH_CACHE_DEPTH;
306
307 if (to_flush) {
308 etna_set_state(stream, VIVS_GL_FLUSH_CACHE, to_flush);
309 etna_stall(stream, SYNC_RECIPIENT_RA, SYNC_RECIPIENT_PE);
310 }
311
312 /* If MULTI_SAMPLE_CONFIG.MSAA_SAMPLES changed, clobber affected shader
313 * state to make sure it is always rewritten. */
314 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER))) {
315 if ((ctx->gpu3d.GL_MULTI_SAMPLE_CONFIG & VIVS_GL_MULTI_SAMPLE_CONFIG_MSAA_SAMPLES__MASK) !=
316 (ctx->framebuffer.GL_MULTI_SAMPLE_CONFIG & VIVS_GL_MULTI_SAMPLE_CONFIG_MSAA_SAMPLES__MASK)) {
317 /* XXX what does the GPU set these states to on MSAA samples change?
318 * Does it do the right thing?
319 * (increase/decrease as necessary) or something else? Just set some
320 * invalid value until we know for
321 * sure. */
322 ctx->gpu3d.PS_INPUT_COUNT = 0xffffffff;
323 ctx->gpu3d.PS_TEMP_REGISTER_CONTROL = 0xffffffff;
324 }
325 }
326
327 /* Update vertex elements. This is different from any of the other states, in that
328 * a) the number of vertex elements written matters: so write only active ones
329 * b) the vertex element states must all be written: do not skip entries that stay the same */
330 if (dirty & (ETNA_DIRTY_VERTEX_ELEMENTS)) {
331 /* Special case: vertex elements must always be sent in full if changed */
332 /*00600*/ etna_set_state_multi(stream, VIVS_FE_VERTEX_ELEMENT_CONFIG(0),
333 ctx->vertex_elements->num_elements,
334 ctx->vertex_elements->FE_VERTEX_ELEMENT_CONFIG);
335 }
336
337 /* The following code is originally generated by gen_merge_state.py, to
338 * emit state in increasing order of address (this makes it possible to merge
339 * consecutive register updates into one SET_STATE command)
340 *
341 * There have been some manual changes, where the weaving operation is not
342 * simply bitwise or:
343 * - scissor fixp
344 * - num vertex elements
345 * - scissor handling
346 * - num samplers
347 * - texture lod
348 * - ETNA_DIRTY_TS
349 * - removed ETNA_DIRTY_BASE_SETUP statements -- these are guaranteed to not
350 * change anyway
351 * - PS / framebuffer interaction for MSAA
352 * - move update of GL_MULTI_SAMPLE_CONFIG first
353 * - add unlikely()/likely()
354 */
355 struct etna_coalesce coalesce;
356
357 etna_coalesce_start(stream, &coalesce);
358
359 /* begin only EMIT_STATE -- make sure no new etna_reserve calls are done here
360 * directly
361 * or indirectly */
362 /* multi sample config is set first, and outside of the normal sorting
363 * order, as changing the multisample state clobbers PS.INPUT_COUNT (and
364 * possibly PS.TEMP_REGISTER_CONTROL).
365 */
366 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER | ETNA_DIRTY_SAMPLE_MASK))) {
367 uint32_t val = VIVS_GL_MULTI_SAMPLE_CONFIG_MSAA_ENABLES(ctx->sample_mask);
368 val |= ctx->framebuffer.GL_MULTI_SAMPLE_CONFIG;
369
370 /*03818*/ EMIT_STATE(GL_MULTI_SAMPLE_CONFIG, val);
371 }
372 if (likely(dirty & (ETNA_DIRTY_INDEX_BUFFER))) {
373 /*00644*/ EMIT_STATE_RELOC(FE_INDEX_STREAM_BASE_ADDR, &ctx->index_buffer.FE_INDEX_STREAM_BASE_ADDR);
374 /*00648*/ EMIT_STATE(FE_INDEX_STREAM_CONTROL, ctx->index_buffer.FE_INDEX_STREAM_CONTROL);
375 }
376 if (likely(dirty & (ETNA_DIRTY_VERTEX_BUFFERS))) {
377 /*0064C*/ EMIT_STATE_RELOC(FE_VERTEX_STREAM_BASE_ADDR, &ctx->vertex_buffer.cvb[0].FE_VERTEX_STREAM_BASE_ADDR);
378 /*00650*/ EMIT_STATE(FE_VERTEX_STREAM_CONTROL, ctx->vertex_buffer.cvb[0].FE_VERTEX_STREAM_CONTROL);
379 }
380 if (likely(dirty & (ETNA_DIRTY_INDEX_BUFFER))) {
381 /*00674*/ EMIT_STATE(FE_PRIMITIVE_RESTART_INDEX, ctx->index_buffer.FE_PRIMITIVE_RESTART_INDEX);
382 }
383 if (likely(dirty & (ETNA_DIRTY_VERTEX_BUFFERS))) {
384 for (int x = 1; x < ctx->vertex_buffer.count; ++x) {
385 /*00680*/ EMIT_STATE_RELOC(FE_VERTEX_STREAMS_BASE_ADDR(x), &ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_BASE_ADDR);
386 }
387 for (int x = 1; x < ctx->vertex_buffer.count; ++x) {
388 if (ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_BASE_ADDR.bo) {
389 /*006A0*/ EMIT_STATE(FE_VERTEX_STREAMS_CONTROL(x), ctx->vertex_buffer.cvb[x].FE_VERTEX_STREAM_CONTROL);
390 }
391 }
392 }
393 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
394 /*00800*/ EMIT_STATE(VS_END_PC, ctx->shader_state.VS_END_PC);
395 }
396 if (unlikely(dirty & (ETNA_DIRTY_SHADER | ETNA_DIRTY_RASTERIZER))) {
397 bool point_size_per_vertex =
398 etna_rasterizer_state(ctx->rasterizer)->point_size_per_vertex;
399
400 /*00804*/ EMIT_STATE(VS_OUTPUT_COUNT,
401 point_size_per_vertex
402 ? ctx->shader_state.VS_OUTPUT_COUNT_PSIZE
403 : ctx->shader_state.VS_OUTPUT_COUNT);
404 }
405 if (unlikely(dirty & (ETNA_DIRTY_VERTEX_ELEMENTS | ETNA_DIRTY_SHADER))) {
406 /*00808*/ EMIT_STATE(VS_INPUT_COUNT, ctx->shader_state.VS_INPUT_COUNT);
407 /*0080C*/ EMIT_STATE(VS_TEMP_REGISTER_CONTROL, ctx->shader_state.VS_TEMP_REGISTER_CONTROL);
408 }
409 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
410 for (int x = 0; x < 4; ++x) {
411 /*00810*/ EMIT_STATE(VS_OUTPUT(x), ctx->shader_state.VS_OUTPUT[x]);
412 }
413 }
414 if (unlikely(dirty & (ETNA_DIRTY_VERTEX_ELEMENTS | ETNA_DIRTY_SHADER))) {
415 for (int x = 0; x < 4; ++x) {
416 /*00820*/ EMIT_STATE(VS_INPUT(x), ctx->shader_state.VS_INPUT[x]);
417 }
418 }
419 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
420 /*00830*/ EMIT_STATE(VS_LOAD_BALANCING, ctx->shader_state.VS_LOAD_BALANCING);
421 /*00838*/ EMIT_STATE(VS_START_PC, ctx->shader_state.VS_START_PC);
422 if (ctx->specs.has_shader_range_registers) {
423 /*0085C*/ EMIT_STATE(VS_RANGE, (ctx->shader_state.vs_inst_mem_size / 4 - 1) << 16);
424 }
425 }
426 if (unlikely(dirty & (ETNA_DIRTY_VIEWPORT))) {
427 /*00A00*/ EMIT_STATE_FIXP(PA_VIEWPORT_SCALE_X, ctx->viewport.PA_VIEWPORT_SCALE_X);
428 /*00A04*/ EMIT_STATE_FIXP(PA_VIEWPORT_SCALE_Y, ctx->viewport.PA_VIEWPORT_SCALE_Y);
429 /*00A08*/ EMIT_STATE(PA_VIEWPORT_SCALE_Z, ctx->viewport.PA_VIEWPORT_SCALE_Z);
430 /*00A0C*/ EMIT_STATE_FIXP(PA_VIEWPORT_OFFSET_X, ctx->viewport.PA_VIEWPORT_OFFSET_X);
431 /*00A10*/ EMIT_STATE_FIXP(PA_VIEWPORT_OFFSET_Y, ctx->viewport.PA_VIEWPORT_OFFSET_Y);
432 /*00A14*/ EMIT_STATE(PA_VIEWPORT_OFFSET_Z, ctx->viewport.PA_VIEWPORT_OFFSET_Z);
433 }
434 if (unlikely(dirty & (ETNA_DIRTY_RASTERIZER))) {
435 struct etna_rasterizer_state *rasterizer = etna_rasterizer_state(ctx->rasterizer);
436
437 /*00A18*/ EMIT_STATE(PA_LINE_WIDTH, rasterizer->PA_LINE_WIDTH);
438 /*00A1C*/ EMIT_STATE(PA_POINT_SIZE, rasterizer->PA_POINT_SIZE);
439 /*00A28*/ EMIT_STATE(PA_SYSTEM_MODE, rasterizer->PA_SYSTEM_MODE);
440 }
441 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
442 /*00A30*/ EMIT_STATE(PA_ATTRIBUTE_ELEMENT_COUNT, ctx->shader_state.PA_ATTRIBUTE_ELEMENT_COUNT);
443 }
444 if (unlikely(dirty & (ETNA_DIRTY_RASTERIZER | ETNA_DIRTY_SHADER))) {
445 uint32_t val = etna_rasterizer_state(ctx->rasterizer)->PA_CONFIG;
446 /*00A34*/ EMIT_STATE(PA_CONFIG, val & ctx->shader_state.PA_CONFIG);
447 }
448 if (unlikely(dirty & (ETNA_DIRTY_RASTERIZER))) {
449 struct etna_rasterizer_state *rasterizer = etna_rasterizer_state(ctx->rasterizer);
450 /*00A38*/ EMIT_STATE(PA_WIDE_LINE_WIDTH0, rasterizer->PA_LINE_WIDTH);
451 /*00A3C*/ EMIT_STATE(PA_WIDE_LINE_WIDTH1, rasterizer->PA_LINE_WIDTH);
452 }
453 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
454 for (int x = 0; x < 10; ++x) {
455 /*00A40*/ EMIT_STATE(PA_SHADER_ATTRIBUTES(x), ctx->shader_state.PA_SHADER_ATTRIBUTES[x]);
456 }
457 }
458 if (unlikely(dirty & (ETNA_DIRTY_SCISSOR | ETNA_DIRTY_FRAMEBUFFER |
459 ETNA_DIRTY_RASTERIZER | ETNA_DIRTY_VIEWPORT))) {
460 /* this is a bit of a mess: rasterizer.scissor determines whether to use
461 * only the framebuffer scissor, or specific scissor state, and the
462 * viewport clips too so the logic spans four CSOs */
463 struct etna_rasterizer_state *rasterizer = etna_rasterizer_state(ctx->rasterizer);
464
465 uint32_t scissor_left =
466 MAX2(ctx->framebuffer.SE_SCISSOR_LEFT, ctx->viewport.SE_SCISSOR_LEFT);
467 uint32_t scissor_top =
468 MAX2(ctx->framebuffer.SE_SCISSOR_TOP, ctx->viewport.SE_SCISSOR_TOP);
469 uint32_t scissor_right =
470 MIN2(ctx->framebuffer.SE_SCISSOR_RIGHT, ctx->viewport.SE_SCISSOR_RIGHT);
471 uint32_t scissor_bottom =
472 MIN2(ctx->framebuffer.SE_SCISSOR_BOTTOM, ctx->viewport.SE_SCISSOR_BOTTOM);
473
474 if (rasterizer->scissor) {
475 scissor_left = MAX2(ctx->scissor.SE_SCISSOR_LEFT, scissor_left);
476 scissor_top = MAX2(ctx->scissor.SE_SCISSOR_TOP, scissor_top);
477 scissor_right = MIN2(ctx->scissor.SE_SCISSOR_RIGHT, scissor_right);
478 scissor_bottom = MIN2(ctx->scissor.SE_SCISSOR_BOTTOM, scissor_bottom);
479 }
480
481 /*00C00*/ EMIT_STATE_FIXP(SE_SCISSOR_LEFT, scissor_left);
482 /*00C04*/ EMIT_STATE_FIXP(SE_SCISSOR_TOP, scissor_top);
483 /*00C08*/ EMIT_STATE_FIXP(SE_SCISSOR_RIGHT, scissor_right);
484 /*00C0C*/ EMIT_STATE_FIXP(SE_SCISSOR_BOTTOM, scissor_bottom);
485 }
486 if (unlikely(dirty & (ETNA_DIRTY_RASTERIZER))) {
487 struct etna_rasterizer_state *rasterizer = etna_rasterizer_state(ctx->rasterizer);
488
489 /*00C10*/ EMIT_STATE(SE_DEPTH_SCALE, rasterizer->SE_DEPTH_SCALE);
490 /*00C14*/ EMIT_STATE(SE_DEPTH_BIAS, rasterizer->SE_DEPTH_BIAS);
491 /*00C18*/ EMIT_STATE(SE_CONFIG, rasterizer->SE_CONFIG);
492 }
493 if (unlikely(dirty & (ETNA_DIRTY_SCISSOR | ETNA_DIRTY_FRAMEBUFFER |
494 ETNA_DIRTY_RASTERIZER | ETNA_DIRTY_VIEWPORT))) {
495 struct etna_rasterizer_state *rasterizer = etna_rasterizer_state(ctx->rasterizer);
496
497 uint32_t clip_right =
498 MIN2(ctx->framebuffer.SE_CLIP_RIGHT, ctx->viewport.SE_CLIP_RIGHT);
499 uint32_t clip_bottom =
500 MIN2(ctx->framebuffer.SE_CLIP_BOTTOM, ctx->viewport.SE_CLIP_BOTTOM);
501
502 if (rasterizer->scissor) {
503 clip_right = MIN2(ctx->scissor.SE_CLIP_RIGHT, clip_right);
504 clip_bottom = MIN2(ctx->scissor.SE_CLIP_BOTTOM, clip_bottom);
505 }
506
507 /*00C20*/ EMIT_STATE_FIXP(SE_CLIP_RIGHT, clip_right);
508 /*00C24*/ EMIT_STATE_FIXP(SE_CLIP_BOTTOM, clip_bottom);
509 }
510 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
511 /*00E00*/ EMIT_STATE(RA_CONTROL, ctx->shader_state.RA_CONTROL);
512 }
513 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER))) {
514 /*00E04*/ EMIT_STATE(RA_MULTISAMPLE_UNK00E04, ctx->framebuffer.RA_MULTISAMPLE_UNK00E04);
515 for (int x = 0; x < 4; ++x) {
516 /*00E10*/ EMIT_STATE(RA_MULTISAMPLE_UNK00E10(x), ctx->framebuffer.RA_MULTISAMPLE_UNK00E10[x]);
517 }
518 for (int x = 0; x < 16; ++x) {
519 /*00E40*/ EMIT_STATE(RA_CENTROID_TABLE(x), ctx->framebuffer.RA_CENTROID_TABLE[x]);
520 }
521 }
522 if (unlikely(dirty & (ETNA_DIRTY_SHADER | ETNA_DIRTY_FRAMEBUFFER))) {
523 /*01000*/ EMIT_STATE(PS_END_PC, ctx->shader_state.PS_END_PC);
524 /*01004*/ EMIT_STATE(PS_OUTPUT_REG, ctx->shader_state.PS_OUTPUT_REG);
525 /*01008*/ EMIT_STATE(PS_INPUT_COUNT,
526 ctx->framebuffer.msaa_mode
527 ? ctx->shader_state.PS_INPUT_COUNT_MSAA
528 : ctx->shader_state.PS_INPUT_COUNT);
529 /*0100C*/ EMIT_STATE(PS_TEMP_REGISTER_CONTROL,
530 ctx->framebuffer.msaa_mode
531 ? ctx->shader_state.PS_TEMP_REGISTER_CONTROL_MSAA
532 : ctx->shader_state.PS_TEMP_REGISTER_CONTROL);
533 /*01010*/ EMIT_STATE(PS_CONTROL, ctx->shader_state.PS_CONTROL);
534 /*01018*/ EMIT_STATE(PS_START_PC, ctx->shader_state.PS_START_PC);
535 if (ctx->specs.has_shader_range_registers) {
536 /*0101C*/ EMIT_STATE(PS_RANGE, ((ctx->shader_state.ps_inst_mem_size / 4 - 1 + 0x100) << 16) |
537 0x100);
538 }
539 }
540 if (unlikely(dirty & (ETNA_DIRTY_ZSA | ETNA_DIRTY_FRAMEBUFFER))) {
541 uint32_t val = etna_zsa_state(ctx->zsa)->PE_DEPTH_CONFIG;
542 /*01400*/ EMIT_STATE(PE_DEPTH_CONFIG, val | ctx->framebuffer.PE_DEPTH_CONFIG);
543 }
544 if (unlikely(dirty & (ETNA_DIRTY_VIEWPORT))) {
545 /*01404*/ EMIT_STATE(PE_DEPTH_NEAR, ctx->viewport.PE_DEPTH_NEAR);
546 /*01408*/ EMIT_STATE(PE_DEPTH_FAR, ctx->viewport.PE_DEPTH_FAR);
547 }
548 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER))) {
549 /*0140C*/ EMIT_STATE(PE_DEPTH_NORMALIZE, ctx->framebuffer.PE_DEPTH_NORMALIZE);
550
551 if (ctx->specs.pixel_pipes == 1) {
552 /*01410*/ EMIT_STATE_RELOC(PE_DEPTH_ADDR, &ctx->framebuffer.PE_DEPTH_ADDR);
553 }
554
555 /*01414*/ EMIT_STATE(PE_DEPTH_STRIDE, ctx->framebuffer.PE_DEPTH_STRIDE);
556 }
557 if (unlikely(dirty & (ETNA_DIRTY_ZSA))) {
558 uint32_t val = etna_zsa_state(ctx->zsa)->PE_STENCIL_OP;
559 /*01418*/ EMIT_STATE(PE_STENCIL_OP, val);
560 }
561 if (unlikely(dirty & (ETNA_DIRTY_ZSA | ETNA_DIRTY_STENCIL_REF))) {
562 uint32_t val = etna_zsa_state(ctx->zsa)->PE_STENCIL_CONFIG;
563 /*0141C*/ EMIT_STATE(PE_STENCIL_CONFIG, val | ctx->stencil_ref.PE_STENCIL_CONFIG);
564 }
565 if (unlikely(dirty & (ETNA_DIRTY_ZSA))) {
566 uint32_t val = etna_zsa_state(ctx->zsa)->PE_ALPHA_OP;
567 /*01420*/ EMIT_STATE(PE_ALPHA_OP, val);
568 }
569 if (unlikely(dirty & (ETNA_DIRTY_BLEND_COLOR))) {
570 /*01424*/ EMIT_STATE(PE_ALPHA_BLEND_COLOR, ctx->blend_color.PE_ALPHA_BLEND_COLOR);
571 }
572 if (unlikely(dirty & (ETNA_DIRTY_BLEND))) {
573 uint32_t val = etna_blend_state(ctx->blend)->PE_ALPHA_CONFIG;
574 /*01428*/ EMIT_STATE(PE_ALPHA_CONFIG, val);
575 }
576 if (unlikely(dirty & (ETNA_DIRTY_BLEND | ETNA_DIRTY_FRAMEBUFFER))) {
577 uint32_t val;
578 /* Use the components and overwrite bits in framebuffer.PE_COLOR_FORMAT
579 * as a mask to enable the bits from blend PE_COLOR_FORMAT */
580 val = ~(VIVS_PE_COLOR_FORMAT_COMPONENTS__MASK |
581 VIVS_PE_COLOR_FORMAT_OVERWRITE);
582 val |= etna_blend_state(ctx->blend)->PE_COLOR_FORMAT;
583 val &= ctx->framebuffer.PE_COLOR_FORMAT;
584 /*0142C*/ EMIT_STATE(PE_COLOR_FORMAT, val);
585 }
586 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER))) {
587 if (ctx->specs.pixel_pipes == 1) {
588 /*01430*/ EMIT_STATE_RELOC(PE_COLOR_ADDR, &ctx->framebuffer.PE_COLOR_ADDR);
589 /*01434*/ EMIT_STATE(PE_COLOR_STRIDE, ctx->framebuffer.PE_COLOR_STRIDE);
590 /*01454*/ EMIT_STATE(PE_HDEPTH_CONTROL, ctx->framebuffer.PE_HDEPTH_CONTROL);
591 } else if (ctx->specs.pixel_pipes == 2) {
592 /*01434*/ EMIT_STATE(PE_COLOR_STRIDE, ctx->framebuffer.PE_COLOR_STRIDE);
593 /*01454*/ EMIT_STATE(PE_HDEPTH_CONTROL, ctx->framebuffer.PE_HDEPTH_CONTROL);
594 /*01460*/ EMIT_STATE_RELOC(PE_PIPE_COLOR_ADDR(0), &ctx->framebuffer.PE_PIPE_COLOR_ADDR[0]);
595 /*01464*/ EMIT_STATE_RELOC(PE_PIPE_COLOR_ADDR(1), &ctx->framebuffer.PE_PIPE_COLOR_ADDR[1]);
596 /*01480*/ EMIT_STATE_RELOC(PE_PIPE_DEPTH_ADDR(0), &ctx->framebuffer.PE_PIPE_DEPTH_ADDR[0]);
597 /*01484*/ EMIT_STATE_RELOC(PE_PIPE_DEPTH_ADDR(1), &ctx->framebuffer.PE_PIPE_DEPTH_ADDR[1]);
598 } else {
599 abort();
600 }
601 }
602 if (unlikely(dirty & (ETNA_DIRTY_STENCIL_REF))) {
603 /*014A0*/ EMIT_STATE(PE_STENCIL_CONFIG_EXT, ctx->stencil_ref.PE_STENCIL_CONFIG_EXT);
604 }
605 if (unlikely(dirty & (ETNA_DIRTY_BLEND | ETNA_DIRTY_FRAMEBUFFER))) {
606 struct etna_blend_state *blend = etna_blend_state(ctx->blend);
607 /*014A4*/ EMIT_STATE(PE_LOGIC_OP, blend->PE_LOGIC_OP | ctx->framebuffer.PE_LOGIC_OP);
608 }
609 if (unlikely(dirty & (ETNA_DIRTY_BLEND))) {
610 struct etna_blend_state *blend = etna_blend_state(ctx->blend);
611 for (int x = 0; x < 2; ++x) {
612 /*014A8*/ EMIT_STATE(PE_DITHER(x), blend->PE_DITHER[x]);
613 }
614 }
615 if (unlikely(dirty & (ETNA_DIRTY_FRAMEBUFFER | ETNA_DIRTY_TS))) {
616 /*01654*/ EMIT_STATE(TS_MEM_CONFIG, ctx->framebuffer.TS_MEM_CONFIG);
617 /*01658*/ EMIT_STATE_RELOC(TS_COLOR_STATUS_BASE, &ctx->framebuffer.TS_COLOR_STATUS_BASE);
618 /*0165C*/ EMIT_STATE_RELOC(TS_COLOR_SURFACE_BASE, &ctx->framebuffer.TS_COLOR_SURFACE_BASE);
619 /*01660*/ EMIT_STATE(TS_COLOR_CLEAR_VALUE, ctx->framebuffer.TS_COLOR_CLEAR_VALUE);
620 /*01664*/ EMIT_STATE_RELOC(TS_DEPTH_STATUS_BASE, &ctx->framebuffer.TS_DEPTH_STATUS_BASE);
621 /*01668*/ EMIT_STATE_RELOC(TS_DEPTH_SURFACE_BASE, &ctx->framebuffer.TS_DEPTH_SURFACE_BASE);
622 /*0166C*/ EMIT_STATE(TS_DEPTH_CLEAR_VALUE, ctx->framebuffer.TS_DEPTH_CLEAR_VALUE);
623 }
624 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS | ETNA_DIRTY_SAMPLERS))) {
625 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
626 uint32_t val = 0; /* 0 == sampler inactive */
627
628 /* set active samplers to their configuration value (determined by both
629 * the sampler state and sampler view) */
630 if ((1 << x) & active_samplers) {
631 struct etna_sampler_state *ss = etna_sampler_state(ctx->sampler[x]);
632 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
633
634 val = (ss->TE_SAMPLER_CONFIG0 & sv->TE_SAMPLER_CONFIG0_MASK) |
635 sv->TE_SAMPLER_CONFIG0;
636 }
637
638 /*02000*/ EMIT_STATE(TE_SAMPLER_CONFIG0(x), val);
639 }
640 }
641 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS))) {
642 struct etna_sampler_view *sv;
643
644 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
645 if ((1 << x) & active_samplers) {
646 sv = etna_sampler_view(ctx->sampler_view[x]);
647 /*02040*/ EMIT_STATE(TE_SAMPLER_SIZE(x), sv->TE_SAMPLER_SIZE);
648 }
649 }
650 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
651 if ((1 << x) & active_samplers) {
652 sv = etna_sampler_view(ctx->sampler_view[x]);
653 /*02080*/ EMIT_STATE(TE_SAMPLER_LOG_SIZE(x), sv->TE_SAMPLER_LOG_SIZE);
654 }
655 }
656 }
657 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS | ETNA_DIRTY_SAMPLERS))) {
658 struct etna_sampler_state *ss;
659 struct etna_sampler_view *sv;
660
661 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
662 if ((1 << x) & active_samplers) {
663 ss = etna_sampler_state(ctx->sampler[x]);
664 sv = etna_sampler_view(ctx->sampler_view[x]);
665
666 /* min and max lod is determined both by the sampler and the view */
667 /*020C0*/ EMIT_STATE(TE_SAMPLER_LOD_CONFIG(x),
668 ss->TE_SAMPLER_LOD_CONFIG |
669 VIVS_TE_SAMPLER_LOD_CONFIG_MAX(MIN2(ss->max_lod, sv->max_lod)) |
670 VIVS_TE_SAMPLER_LOD_CONFIG_MIN(MAX2(ss->min_lod, sv->min_lod)));
671 }
672 }
673 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
674 if ((1 << x) & active_samplers) {
675 ss = etna_sampler_state(ctx->sampler[x]);
676 sv = etna_sampler_view(ctx->sampler_view[x]);
677
678 /*021C0*/ EMIT_STATE(TE_SAMPLER_CONFIG1(x), ss->TE_SAMPLER_CONFIG1 |
679 sv->TE_SAMPLER_CONFIG1);
680 }
681 }
682 }
683 if (unlikely(dirty & (ETNA_DIRTY_SAMPLER_VIEWS))) {
684 for (int y = 0; y < VIVS_TE_SAMPLER_LOD_ADDR__LEN; ++y) {
685 for (int x = 0; x < VIVS_TE_SAMPLER__LEN; ++x) {
686 if ((1 << x) & active_samplers) {
687 struct etna_sampler_view *sv = etna_sampler_view(ctx->sampler_view[x]);
688 /*02400*/ EMIT_STATE_RELOC(TE_SAMPLER_LOD_ADDR(x, y),&sv->TE_SAMPLER_LOD_ADDR[y]);
689 }
690 }
691 }
692 }
693 if (unlikely(dirty & (ETNA_DIRTY_SHADER))) {
694 /*0381C*/ EMIT_STATE(GL_VARYING_TOTAL_COMPONENTS, ctx->shader_state.GL_VARYING_TOTAL_COMPONENTS);
695 /*03820*/ EMIT_STATE(GL_VARYING_NUM_COMPONENTS, ctx->shader_state.GL_VARYING_NUM_COMPONENTS);
696 for (int x = 0; x < 2; ++x) {
697 /*03828*/ EMIT_STATE(GL_VARYING_COMPONENT_USE(x), ctx->shader_state.GL_VARYING_COMPONENT_USE[x]);
698 }
699 }
700 etna_coalesce_end(stream, &coalesce);
701 /* end only EMIT_STATE */
702
703 /* Insert a FE/PE stall as changing the shader instructions (and maybe
704 * the uniforms) can corrupt the previous in-progress draw operation.
705 * Observed with amoeba on GC2000 during the right-to-left rendering
706 * of PI, and can cause GPU hangs immediately after.
707 * I summise that this is because the "new" locations at 0xc000 are not
708 * properly protected against updates as other states seem to be. Hence,
709 * we detect the "new" vertex shader instruction offset to apply this. */
710 if (ctx->dirty & (ETNA_DIRTY_SHADER | ETNA_DIRTY_CONSTBUF) && ctx->specs.vs_offset > 0x4000)
711 etna_stall(ctx->stream, SYNC_RECIPIENT_FE, SYNC_RECIPIENT_PE);
712
713 /* We need to update the uniform cache only if one of the following bits are
714 * set in ctx->dirty:
715 * - ETNA_DIRTY_SHADER
716 * - ETNA_DIRTY_CONSTBUF
717 * - uniforms_dirty_bits
718 *
719 * In case of ETNA_DIRTY_SHADER we need load all uniforms from the cache. In
720 * all
721 * other cases we can load on the changed uniforms.
722 */
723 static const uint32_t uniform_dirty_bits =
724 ETNA_DIRTY_SHADER | ETNA_DIRTY_CONSTBUF;
725
726 if (dirty & (uniform_dirty_bits | ctx->shader.fs->uniforms_dirty_bits))
727 etna_uniforms_write(
728 ctx, ctx->shader.vs, &ctx->constant_buffer[PIPE_SHADER_VERTEX],
729 ctx->shader_state.VS_UNIFORMS, &ctx->shader_state.vs_uniforms_size);
730
731 if (dirty & (uniform_dirty_bits | ctx->shader.vs->uniforms_dirty_bits))
732 etna_uniforms_write(
733 ctx, ctx->shader.fs, &ctx->constant_buffer[PIPE_SHADER_FRAGMENT],
734 ctx->shader_state.PS_UNIFORMS, &ctx->shader_state.ps_uniforms_size);
735
736 /**** Large dynamically-sized state ****/
737 if (dirty & (ETNA_DIRTY_SHADER)) {
738 /* Special case: a new shader was loaded; simply re-load all uniforms and
739 * shader code at once */
740 /*04000 or 0C000*/
741 etna_set_state_multi(stream, ctx->specs.vs_offset,
742 ctx->shader_state.vs_inst_mem_size,
743 ctx->shader_state.VS_INST_MEM);
744 /*06000 or 0D000*/
745 etna_set_state_multi(stream, ctx->specs.ps_offset,
746 ctx->shader_state.ps_inst_mem_size,
747 ctx->shader_state.PS_INST_MEM);
748 /*05000*/ etna_set_state_multi(stream, VIVS_VS_UNIFORMS(0),
749 ctx->shader_state.vs_uniforms_size,
750 ctx->shader_state.VS_UNIFORMS);
751 /*07000*/ etna_set_state_multi(stream, VIVS_PS_UNIFORMS(0),
752 ctx->shader_state.ps_uniforms_size,
753 ctx->shader_state.PS_UNIFORMS);
754
755 /* Copy uniforms to gpu3d, so that incremental updates to uniforms are
756 * possible as long as the
757 * same shader remains bound */
758 ctx->gpu3d.vs_uniforms_size = ctx->shader_state.vs_uniforms_size;
759 ctx->gpu3d.ps_uniforms_size = ctx->shader_state.ps_uniforms_size;
760 memcpy(ctx->gpu3d.VS_UNIFORMS, ctx->shader_state.VS_UNIFORMS,
761 ctx->shader_state.vs_uniforms_size * 4);
762 memcpy(ctx->gpu3d.PS_UNIFORMS, ctx->shader_state.PS_UNIFORMS,
763 ctx->shader_state.ps_uniforms_size * 4);
764 } else {
765 etna_coalesce_start(stream, &coalesce);
766 for (int x = 0; x < ctx->shader.vs->uniforms.const_count; ++x) {
767 if (ctx->gpu3d.VS_UNIFORMS[x] != ctx->shader_state.VS_UNIFORMS[x]) {
768 /*05000*/ EMIT_STATE(VS_UNIFORMS(x), ctx->shader_state.VS_UNIFORMS[x]);
769 ctx->gpu3d.VS_UNIFORMS[x] = ctx->shader_state.VS_UNIFORMS[x];
770 }
771 }
772 etna_coalesce_end(stream, &coalesce);
773
774 etna_coalesce_start(stream, &coalesce);
775 for (int x = 0; x < ctx->shader.fs->uniforms.const_count; ++x) {
776 if (ctx->gpu3d.PS_UNIFORMS[x] != ctx->shader_state.PS_UNIFORMS[x]) {
777 /*07000*/ EMIT_STATE(PS_UNIFORMS(x), ctx->shader_state.PS_UNIFORMS[x]);
778 ctx->gpu3d.PS_UNIFORMS[x] = ctx->shader_state.PS_UNIFORMS[x];
779 }
780 }
781 etna_coalesce_end(stream, &coalesce);
782 }
783 /**** End of state update ****/
784 #undef EMIT_STATE
785 #undef EMIT_STATE_FIXP
786 #undef EMIT_STATE_RELOC
787 ctx->dirty = 0;
788 }