iris: Convert fences to using lightweight seqno
[mesa.git] / src / gallium / drivers / swr / swr_state.cpp
1 /****************************************************************************
2 * Copyright (C) 2015 Intel Corporation. All Rights Reserved.
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, sublicense,
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 next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * 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 NONINFRINGEMENT. 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 DEALINGS
21 * IN THE SOFTWARE.
22 ***************************************************************************/
23
24 #include <llvm/Config/llvm-config.h>
25
26 #if LLVM_VERSION_MAJOR < 7
27 // llvm redefines DEBUG
28 #pragma push_macro("DEBUG")
29 #undef DEBUG
30 #endif
31
32 #include <rasterizer/core/state.h>
33 #include "JitManager.h"
34
35 #if LLVM_VERSION_MAJOR < 7
36 #pragma pop_macro("DEBUG")
37 #endif
38
39 #include "common/os.h"
40 #include "jit_api.h"
41 #include "gen_state_llvm.h"
42 #include "core/multisample.h"
43 #include "core/state_funcs.h"
44
45 #include "gallivm/lp_bld_tgsi.h"
46 #include "util/format/u_format.h"
47
48 #include "util/u_memory.h"
49 #include "util/u_inlines.h"
50 #include "util/u_helpers.h"
51 #include "util/u_framebuffer.h"
52 #include "util/u_viewport.h"
53 #include "util/u_prim.h"
54
55 #include "swr_state.h"
56 #include "swr_context.h"
57 #include "gen_surf_state_llvm.h"
58 #include "gen_swr_context_llvm.h"
59 #include "swr_screen.h"
60 #include "swr_resource.h"
61 #include "swr_tex_sample.h"
62 #include "swr_scratch.h"
63 #include "swr_shader.h"
64 #include "swr_fence.h"
65
66 /* These should be pulled out into separate files as necessary
67 * Just initializing everything here to get going. */
68
69 static void *
70 swr_create_blend_state(struct pipe_context *pipe,
71 const struct pipe_blend_state *blend)
72 {
73 struct swr_blend_state *state = CALLOC_STRUCT(swr_blend_state);
74 assert(state != nullptr);
75
76 memcpy(&state->pipe, blend, sizeof(*blend));
77
78 struct pipe_blend_state *pipe_blend = &state->pipe;
79
80 for (int target = 0;
81 target < std::min(SWR_NUM_RENDERTARGETS, PIPE_MAX_COLOR_BUFS);
82 target++) {
83
84 struct pipe_rt_blend_state *rt_blend = &pipe_blend->rt[target];
85 SWR_RENDER_TARGET_BLEND_STATE &blendState =
86 state->blendState.renderTarget[target];
87 RENDER_TARGET_BLEND_COMPILE_STATE &compileState =
88 state->compileState[target];
89
90 if (target != 0 && !pipe_blend->independent_blend_enable) {
91 memcpy(&compileState,
92 &state->compileState[0],
93 sizeof(RENDER_TARGET_BLEND_COMPILE_STATE));
94 continue;
95 }
96
97 compileState.blendEnable = rt_blend->blend_enable;
98 if (compileState.blendEnable) {
99 compileState.sourceAlphaBlendFactor =
100 swr_convert_blend_factor(rt_blend->alpha_src_factor);
101 compileState.destAlphaBlendFactor =
102 swr_convert_blend_factor(rt_blend->alpha_dst_factor);
103 compileState.sourceBlendFactor =
104 swr_convert_blend_factor(rt_blend->rgb_src_factor);
105 compileState.destBlendFactor =
106 swr_convert_blend_factor(rt_blend->rgb_dst_factor);
107
108 compileState.colorBlendFunc =
109 swr_convert_blend_func(rt_blend->rgb_func);
110 compileState.alphaBlendFunc =
111 swr_convert_blend_func(rt_blend->alpha_func);
112 }
113 compileState.logicOpEnable = state->pipe.logicop_enable;
114 if (compileState.logicOpEnable) {
115 compileState.logicOpFunc =
116 swr_convert_logic_op(state->pipe.logicop_func);
117 }
118
119 blendState.writeDisableRed =
120 (rt_blend->colormask & PIPE_MASK_R) ? 0 : 1;
121 blendState.writeDisableGreen =
122 (rt_blend->colormask & PIPE_MASK_G) ? 0 : 1;
123 blendState.writeDisableBlue =
124 (rt_blend->colormask & PIPE_MASK_B) ? 0 : 1;
125 blendState.writeDisableAlpha =
126 (rt_blend->colormask & PIPE_MASK_A) ? 0 : 1;
127
128 if (rt_blend->colormask == 0)
129 compileState.blendEnable = false;
130 }
131
132 return state;
133 }
134
135 static void
136 swr_bind_blend_state(struct pipe_context *pipe, void *blend)
137 {
138 struct swr_context *ctx = swr_context(pipe);
139
140 if (ctx->blend == blend)
141 return;
142
143 ctx->blend = (swr_blend_state *)blend;
144
145 ctx->dirty |= SWR_NEW_BLEND;
146 }
147
148 static void
149 swr_delete_blend_state(struct pipe_context *pipe, void *blend)
150 {
151 FREE(blend);
152 }
153
154 static void
155 swr_set_blend_color(struct pipe_context *pipe,
156 const struct pipe_blend_color *color)
157 {
158 struct swr_context *ctx = swr_context(pipe);
159
160 ctx->blend_color = *color;
161
162 ctx->dirty |= SWR_NEW_BLEND;
163 }
164
165 static void
166 swr_set_stencil_ref(struct pipe_context *pipe,
167 const struct pipe_stencil_ref *ref)
168 {
169 struct swr_context *ctx = swr_context(pipe);
170
171 ctx->stencil_ref = *ref;
172
173 ctx->dirty |= SWR_NEW_DEPTH_STENCIL_ALPHA;
174 }
175
176 static void *
177 swr_create_depth_stencil_state(
178 struct pipe_context *pipe,
179 const struct pipe_depth_stencil_alpha_state *depth_stencil)
180 {
181 struct pipe_depth_stencil_alpha_state *state;
182
183 state = (pipe_depth_stencil_alpha_state *)mem_dup(depth_stencil,
184 sizeof *depth_stencil);
185
186 return state;
187 }
188
189 static void
190 swr_bind_depth_stencil_state(struct pipe_context *pipe, void *depth_stencil)
191 {
192 struct swr_context *ctx = swr_context(pipe);
193
194 if (ctx->depth_stencil == (pipe_depth_stencil_alpha_state *)depth_stencil)
195 return;
196
197 ctx->depth_stencil = (pipe_depth_stencil_alpha_state *)depth_stencil;
198
199 ctx->dirty |= SWR_NEW_DEPTH_STENCIL_ALPHA;
200 }
201
202 static void
203 swr_delete_depth_stencil_state(struct pipe_context *pipe, void *depth)
204 {
205 FREE(depth);
206 }
207
208
209 static void *
210 swr_create_rasterizer_state(struct pipe_context *pipe,
211 const struct pipe_rasterizer_state *rast)
212 {
213 struct pipe_rasterizer_state *state;
214 state = (pipe_rasterizer_state *)mem_dup(rast, sizeof *rast);
215
216 return state;
217 }
218
219 static void
220 swr_bind_rasterizer_state(struct pipe_context *pipe, void *handle)
221 {
222 struct swr_context *ctx = swr_context(pipe);
223 const struct pipe_rasterizer_state *rasterizer =
224 (const struct pipe_rasterizer_state *)handle;
225
226 if (ctx->rasterizer == (pipe_rasterizer_state *)rasterizer)
227 return;
228
229 ctx->rasterizer = (pipe_rasterizer_state *)rasterizer;
230
231 ctx->dirty |= SWR_NEW_RASTERIZER;
232 }
233
234 static void
235 swr_delete_rasterizer_state(struct pipe_context *pipe, void *rasterizer)
236 {
237 FREE(rasterizer);
238 }
239
240
241 static void *
242 swr_create_sampler_state(struct pipe_context *pipe,
243 const struct pipe_sampler_state *sampler)
244 {
245 struct pipe_sampler_state *state =
246 (pipe_sampler_state *)mem_dup(sampler, sizeof *sampler);
247
248 return state;
249 }
250
251 static void
252 swr_bind_sampler_states(struct pipe_context *pipe,
253 enum pipe_shader_type shader,
254 unsigned start,
255 unsigned num,
256 void **samplers)
257 {
258 struct swr_context *ctx = swr_context(pipe);
259 unsigned i;
260
261 assert(shader < PIPE_SHADER_TYPES);
262 assert(start + num <= ARRAY_SIZE(ctx->samplers[shader]));
263
264 /* set the new samplers */
265 ctx->num_samplers[shader] = num;
266 for (i = 0; i < num; i++) {
267 ctx->samplers[shader][start + i] = (pipe_sampler_state *)samplers[i];
268 }
269
270 ctx->dirty |= SWR_NEW_SAMPLER;
271 }
272
273 static void
274 swr_delete_sampler_state(struct pipe_context *pipe, void *sampler)
275 {
276 FREE(sampler);
277 }
278
279
280 static struct pipe_sampler_view *
281 swr_create_sampler_view(struct pipe_context *pipe,
282 struct pipe_resource *texture,
283 const struct pipe_sampler_view *templ)
284 {
285 struct pipe_sampler_view *view = CALLOC_STRUCT(pipe_sampler_view);
286
287 if (view) {
288 *view = *templ;
289 view->reference.count = 1;
290 view->texture = NULL;
291 pipe_resource_reference(&view->texture, texture);
292 view->context = pipe;
293 }
294
295 return view;
296 }
297
298 static void
299 swr_set_sampler_views(struct pipe_context *pipe,
300 enum pipe_shader_type shader,
301 unsigned start,
302 unsigned num,
303 struct pipe_sampler_view **views)
304 {
305 struct swr_context *ctx = swr_context(pipe);
306 uint i;
307
308 assert(num <= PIPE_MAX_SHADER_SAMPLER_VIEWS);
309
310 assert(shader < PIPE_SHADER_TYPES);
311 assert(start + num <= ARRAY_SIZE(ctx->sampler_views[shader]));
312
313 /* set the new sampler views */
314 ctx->num_sampler_views[shader] = num;
315 for (i = 0; i < num; i++) {
316 pipe_sampler_view_reference(&ctx->sampler_views[shader][start + i],
317 views[i]);
318 }
319
320 ctx->dirty |= SWR_NEW_SAMPLER_VIEW;
321 }
322
323 static void
324 swr_sampler_view_destroy(struct pipe_context *pipe,
325 struct pipe_sampler_view *view)
326 {
327 pipe_resource_reference(&view->texture, NULL);
328 FREE(view);
329 }
330
331 static void *
332 swr_create_vs_state(struct pipe_context *pipe,
333 const struct pipe_shader_state *vs)
334 {
335 struct swr_vertex_shader *swr_vs = new swr_vertex_shader;
336 if (!swr_vs)
337 return NULL;
338
339 swr_vs->pipe.tokens = tgsi_dup_tokens(vs->tokens);
340 swr_vs->pipe.stream_output = vs->stream_output;
341
342 lp_build_tgsi_info(vs->tokens, &swr_vs->info);
343
344 swr_vs->soState = {0};
345
346 if (swr_vs->pipe.stream_output.num_outputs) {
347 pipe_stream_output_info *stream_output = &swr_vs->pipe.stream_output;
348
349 swr_vs->soState.soEnable = true;
350 // soState.rasterizerDisable set on state dirty
351 // soState.streamToRasterizer not used
352
353 for (uint32_t i = 0; i < stream_output->num_outputs; i++) {
354 unsigned attrib_slot = stream_output->output[i].register_index;
355 attrib_slot = swr_so_adjust_attrib(attrib_slot, swr_vs);
356 swr_vs->soState.streamMasks[stream_output->output[i].stream] |=
357 (1 << attrib_slot);
358 }
359 for (uint32_t i = 0; i < MAX_SO_STREAMS; i++) {
360 swr_vs->soState.streamNumEntries[i] =
361 _mm_popcnt_u32(swr_vs->soState.streamMasks[i]);
362 }
363 }
364
365 return swr_vs;
366 }
367
368 static void
369 swr_bind_vs_state(struct pipe_context *pipe, void *vs)
370 {
371 struct swr_context *ctx = swr_context(pipe);
372
373 if (ctx->vs == vs)
374 return;
375
376 ctx->vs = (swr_vertex_shader *)vs;
377 ctx->dirty |= SWR_NEW_VS;
378 }
379
380 static void
381 swr_delete_vs_state(struct pipe_context *pipe, void *vs)
382 {
383 struct swr_vertex_shader *swr_vs = (swr_vertex_shader *)vs;
384 FREE((void *)swr_vs->pipe.tokens);
385 struct swr_screen *screen = swr_screen(pipe->screen);
386
387 /* Defer deletion of vs state */
388 swr_fence_work_delete_vs(screen->flush_fence, swr_vs);
389 }
390
391 static void *
392 swr_create_fs_state(struct pipe_context *pipe,
393 const struct pipe_shader_state *fs)
394 {
395 struct swr_fragment_shader *swr_fs = new swr_fragment_shader;
396 if (!swr_fs)
397 return NULL;
398
399 swr_fs->pipe.tokens = tgsi_dup_tokens(fs->tokens);
400
401 lp_build_tgsi_info(fs->tokens, &swr_fs->info);
402
403 return swr_fs;
404 }
405
406
407 static void
408 swr_bind_fs_state(struct pipe_context *pipe, void *fs)
409 {
410 struct swr_context *ctx = swr_context(pipe);
411
412 if (ctx->fs == fs)
413 return;
414
415 ctx->fs = (swr_fragment_shader *)fs;
416 ctx->dirty |= SWR_NEW_FS;
417 }
418
419 static void
420 swr_delete_fs_state(struct pipe_context *pipe, void *fs)
421 {
422 struct swr_fragment_shader *swr_fs = (swr_fragment_shader *)fs;
423 FREE((void *)swr_fs->pipe.tokens);
424 struct swr_screen *screen = swr_screen(pipe->screen);
425
426 /* Defer deleton of fs state */
427 swr_fence_work_delete_fs(screen->flush_fence, swr_fs);
428 }
429
430 static void *
431 swr_create_gs_state(struct pipe_context *pipe,
432 const struct pipe_shader_state *gs)
433 {
434 struct swr_geometry_shader *swr_gs = new swr_geometry_shader;
435 if (!swr_gs)
436 return NULL;
437
438 swr_gs->pipe.tokens = tgsi_dup_tokens(gs->tokens);
439 lp_build_tgsi_info(gs->tokens, &swr_gs->info);
440 return swr_gs;
441 }
442
443 static void
444 swr_bind_gs_state(struct pipe_context *pipe, void *gs)
445 {
446 struct swr_context *ctx = swr_context(pipe);
447
448 if (ctx->gs == gs)
449 return;
450
451 ctx->gs = (swr_geometry_shader *)gs;
452 ctx->dirty |= SWR_NEW_GS;
453 }
454
455 static void
456 swr_delete_gs_state(struct pipe_context *pipe, void *gs)
457 {
458 struct swr_geometry_shader *swr_gs = (swr_geometry_shader *)gs;
459 FREE((void *)swr_gs->pipe.tokens);
460 struct swr_screen *screen = swr_screen(pipe->screen);
461
462 /* Defer deleton of fs state */
463 swr_fence_work_delete_gs(screen->flush_fence, swr_gs);
464 }
465
466 static void *
467 swr_create_tcs_state(struct pipe_context *pipe,
468 const struct pipe_shader_state *tcs)
469 {
470 struct swr_tess_control_shader *swr_tcs = new swr_tess_control_shader;
471 if (!swr_tcs)
472 return NULL;
473
474 swr_tcs->pipe.tokens = tgsi_dup_tokens(tcs->tokens);
475 lp_build_tgsi_info(tcs->tokens, &swr_tcs->info);
476 return swr_tcs;
477 }
478
479 static void
480 swr_bind_tcs_state(struct pipe_context *pipe, void *tcs)
481 {
482 struct swr_context *ctx = swr_context(pipe);
483
484 if (ctx->tcs == tcs)
485 return;
486
487 ctx->tcs = (swr_tess_control_shader *)tcs;
488 ctx->dirty |= SWR_NEW_TCS;
489 ctx->dirty |= SWR_NEW_TS;
490 }
491
492 static void
493 swr_delete_tcs_state(struct pipe_context *pipe, void *tcs)
494 {
495 struct swr_tess_control_shader *swr_tcs = (swr_tess_control_shader *)tcs;
496 FREE((void *)swr_tcs->pipe.tokens);
497 struct swr_screen *screen = swr_screen(pipe->screen);
498
499 /* Defer deleton of tcs state */
500 swr_fence_work_delete_tcs(screen->flush_fence, swr_tcs);
501 }
502
503 static void *
504 swr_create_tes_state(struct pipe_context *pipe,
505 const struct pipe_shader_state *tes)
506 {
507 struct swr_tess_evaluation_shader *swr_tes = new swr_tess_evaluation_shader;
508 if (!swr_tes)
509 return NULL;
510
511 swr_tes->pipe.tokens = tgsi_dup_tokens(tes->tokens);
512 lp_build_tgsi_info(tes->tokens, &swr_tes->info);
513 return swr_tes;
514 }
515
516 static void
517 swr_bind_tes_state(struct pipe_context *pipe, void *tes)
518 {
519 struct swr_context *ctx = swr_context(pipe);
520
521 if (ctx->tes == tes)
522 return;
523
524 // Save current tessellator state first
525 if (ctx->tes != nullptr) {
526 ctx->tes->ts_state = ctx->tsState;
527 }
528
529 ctx->tes = (swr_tess_evaluation_shader *)tes;
530
531 ctx->dirty |= SWR_NEW_TES;
532 ctx->dirty |= SWR_NEW_TS;
533 }
534
535 static void
536 swr_delete_tes_state(struct pipe_context *pipe, void *tes)
537 {
538 struct swr_tess_evaluation_shader *swr_tes = (swr_tess_evaluation_shader *)tes;
539 FREE((void *)swr_tes->pipe.tokens);
540 struct swr_screen *screen = swr_screen(pipe->screen);
541
542 /* Defer deleton of tes state */
543 swr_fence_work_delete_tes(screen->flush_fence, swr_tes);
544 }
545
546 static void
547 swr_set_constant_buffer(struct pipe_context *pipe,
548 enum pipe_shader_type shader,
549 uint index,
550 const struct pipe_constant_buffer *cb)
551 {
552 struct swr_context *ctx = swr_context(pipe);
553 struct pipe_resource *constants = cb ? cb->buffer : NULL;
554
555 assert(shader < PIPE_SHADER_TYPES);
556 assert(index < ARRAY_SIZE(ctx->constants[shader]));
557
558 /* note: reference counting */
559 util_copy_constant_buffer(&ctx->constants[shader][index], cb);
560
561 if (shader == PIPE_SHADER_VERTEX) {
562 ctx->dirty |= SWR_NEW_VSCONSTANTS;
563 } else if (shader == PIPE_SHADER_FRAGMENT) {
564 ctx->dirty |= SWR_NEW_FSCONSTANTS;
565 } else if (shader == PIPE_SHADER_GEOMETRY) {
566 ctx->dirty |= SWR_NEW_GSCONSTANTS;
567 } else if (shader == PIPE_SHADER_TESS_CTRL) {
568 ctx->dirty |= SWR_NEW_TCSCONSTANTS;
569 } else if (shader == PIPE_SHADER_TESS_EVAL) {
570 ctx->dirty |= SWR_NEW_TESCONSTANTS;
571 }
572 if (cb && cb->user_buffer) {
573 pipe_resource_reference(&constants, NULL);
574 }
575 }
576
577
578 static void *
579 swr_create_vertex_elements_state(struct pipe_context *pipe,
580 unsigned num_elements,
581 const struct pipe_vertex_element *attribs)
582 {
583 struct swr_vertex_element_state *velems;
584 assert(num_elements <= PIPE_MAX_ATTRIBS);
585 velems = new swr_vertex_element_state;
586 if (velems) {
587 memset(&velems->fsState, 0, sizeof(velems->fsState));
588 velems->fsState.bVertexIDOffsetEnable = true;
589 velems->fsState.numAttribs = num_elements;
590 for (unsigned i = 0; i < num_elements; i++) {
591 // XXX: we should do this keyed on the VS usage info
592
593 const struct util_format_description *desc =
594 util_format_description(attribs[i].src_format);
595
596 velems->fsState.layout[i].AlignedByteOffset = attribs[i].src_offset;
597 velems->fsState.layout[i].Format =
598 mesa_to_swr_format(attribs[i].src_format);
599 velems->fsState.layout[i].StreamIndex =
600 attribs[i].vertex_buffer_index;
601 velems->fsState.layout[i].InstanceEnable =
602 attribs[i].instance_divisor != 0;
603 velems->fsState.layout[i].ComponentControl0 =
604 desc->channel[0].type != UTIL_FORMAT_TYPE_VOID
605 ? ComponentControl::StoreSrc
606 : ComponentControl::Store0;
607 velems->fsState.layout[i].ComponentControl1 =
608 desc->channel[1].type != UTIL_FORMAT_TYPE_VOID
609 ? ComponentControl::StoreSrc
610 : ComponentControl::Store0;
611 velems->fsState.layout[i].ComponentControl2 =
612 desc->channel[2].type != UTIL_FORMAT_TYPE_VOID
613 ? ComponentControl::StoreSrc
614 : ComponentControl::Store0;
615 velems->fsState.layout[i].ComponentControl3 =
616 desc->channel[3].type != UTIL_FORMAT_TYPE_VOID
617 ? ComponentControl::StoreSrc
618 : ComponentControl::Store1Fp;
619 velems->fsState.layout[i].ComponentPacking = ComponentEnable::XYZW;
620 velems->fsState.layout[i].InstanceAdvancementState =
621 attribs[i].instance_divisor;
622
623 /* Calculate the pitch of each stream */
624 const SWR_FORMAT_INFO &swr_desc = GetFormatInfo(
625 mesa_to_swr_format(attribs[i].src_format));
626 velems->stream_pitch[attribs[i].vertex_buffer_index] += swr_desc.Bpp;
627
628 if (attribs[i].instance_divisor != 0) {
629 velems->instanced_bufs |= 1U << attribs[i].vertex_buffer_index;
630 uint32_t *min_instance_div =
631 &velems->min_instance_div[attribs[i].vertex_buffer_index];
632 if (!*min_instance_div ||
633 attribs[i].instance_divisor < *min_instance_div)
634 *min_instance_div = attribs[i].instance_divisor;
635 }
636 }
637 }
638
639 return velems;
640 }
641
642 static void
643 swr_bind_vertex_elements_state(struct pipe_context *pipe, void *velems)
644 {
645 struct swr_context *ctx = swr_context(pipe);
646 struct swr_vertex_element_state *swr_velems =
647 (struct swr_vertex_element_state *)velems;
648
649 ctx->velems = swr_velems;
650 ctx->dirty |= SWR_NEW_VERTEX;
651 }
652
653 static void
654 swr_delete_vertex_elements_state(struct pipe_context *pipe, void *velems)
655 {
656 struct swr_vertex_element_state *swr_velems =
657 (struct swr_vertex_element_state *) velems;
658 /* XXX Need to destroy fetch shader? */
659 delete swr_velems;
660 }
661
662
663 static void
664 swr_set_vertex_buffers(struct pipe_context *pipe,
665 unsigned start_slot,
666 unsigned num_elements,
667 const struct pipe_vertex_buffer *buffers)
668 {
669 struct swr_context *ctx = swr_context(pipe);
670
671 assert(num_elements <= PIPE_MAX_ATTRIBS);
672
673 util_set_vertex_buffers_count(ctx->vertex_buffer,
674 &ctx->num_vertex_buffers,
675 buffers,
676 start_slot,
677 num_elements);
678
679 ctx->dirty |= SWR_NEW_VERTEX;
680 }
681
682
683 static void
684 swr_set_polygon_stipple(struct pipe_context *pipe,
685 const struct pipe_poly_stipple *stipple)
686 {
687 struct swr_context *ctx = swr_context(pipe);
688
689 ctx->poly_stipple.pipe = *stipple; /* struct copy */
690 ctx->dirty |= SWR_NEW_STIPPLE;
691 }
692
693 static void
694 swr_set_clip_state(struct pipe_context *pipe,
695 const struct pipe_clip_state *clip)
696 {
697 struct swr_context *ctx = swr_context(pipe);
698
699 ctx->clip = *clip;
700 /* XXX Unimplemented, but prevents crash */
701
702 ctx->dirty |= SWR_NEW_CLIP;
703 }
704
705
706 static void
707 swr_set_scissor_states(struct pipe_context *pipe,
708 unsigned start_slot,
709 unsigned num_scissors,
710 const struct pipe_scissor_state *scissors)
711 {
712 struct swr_context *ctx = swr_context(pipe);
713
714 memcpy(ctx->scissors + start_slot, scissors,
715 sizeof(struct pipe_scissor_state) * num_scissors);
716
717 for (unsigned i = 0; i < num_scissors; i++) {
718 auto idx = start_slot + i;
719 ctx->swr_scissors[idx].xmin = scissors[idx].minx;
720 ctx->swr_scissors[idx].xmax = scissors[idx].maxx;
721 ctx->swr_scissors[idx].ymin = scissors[idx].miny;
722 ctx->swr_scissors[idx].ymax = scissors[idx].maxy;
723 }
724 ctx->dirty |= SWR_NEW_SCISSOR;
725 }
726
727 static void
728 swr_set_viewport_states(struct pipe_context *pipe,
729 unsigned start_slot,
730 unsigned num_viewports,
731 const struct pipe_viewport_state *vpt)
732 {
733 struct swr_context *ctx = swr_context(pipe);
734
735 memcpy(ctx->viewports + start_slot, vpt, sizeof(struct pipe_viewport_state) * num_viewports);
736 ctx->dirty |= SWR_NEW_VIEWPORT;
737 }
738
739
740 static void
741 swr_set_framebuffer_state(struct pipe_context *pipe,
742 const struct pipe_framebuffer_state *fb)
743 {
744 struct swr_context *ctx = swr_context(pipe);
745
746 bool changed = !util_framebuffer_state_equal(&ctx->framebuffer, fb);
747
748 assert(fb->width <= KNOB_GUARDBAND_WIDTH);
749 assert(fb->height <= KNOB_GUARDBAND_HEIGHT);
750
751 if (changed) {
752 util_copy_framebuffer_state(&ctx->framebuffer, fb);
753
754 /* 0 and 1 both indicate no msaa. Core doesn't understand 0 samples */
755 ctx->framebuffer.samples = std::max((ubyte)1, ctx->framebuffer.samples);
756
757 ctx->dirty |= SWR_NEW_FRAMEBUFFER;
758 }
759 }
760
761
762 static void
763 swr_set_sample_mask(struct pipe_context *pipe, unsigned sample_mask)
764 {
765 struct swr_context *ctx = swr_context(pipe);
766
767 if (sample_mask != ctx->sample_mask) {
768 ctx->sample_mask = sample_mask;
769 ctx->dirty |= SWR_NEW_RASTERIZER;
770 }
771 }
772
773 /*
774 * MSAA fixed sample position table
775 * used by update_derived and get_sample_position
776 * (integer locations on a 16x16 grid)
777 */
778 static const uint8_t swr_sample_positions[][2] =
779 { /* 1x*/ { 8, 8},
780 /* 2x*/ {12,12},{ 4, 4},
781 /* 4x*/ { 6, 2},{14, 6},{ 2,10},{10,14},
782 /* 8x*/ { 9, 5},{ 7,11},{13, 9},{ 5, 3},
783 { 3,13},{ 1, 7},{11,15},{15, 1},
784 /*16x*/ { 9, 9},{ 7, 5},{ 5,10},{12, 7},
785 { 3, 6},{10,13},{13,11},{11, 3},
786 { 6,14},{ 8, 1},{ 4, 2},{ 2,12},
787 { 0, 8},{15, 4},{14,15},{ 1, 0} };
788
789 static void
790 swr_get_sample_position(struct pipe_context *pipe,
791 unsigned sample_count, unsigned sample_index,
792 float *out_value)
793 {
794 /* validate sample_count */
795 sample_count = GetNumSamples(GetSampleCount(sample_count));
796
797 const uint8_t *sample = swr_sample_positions[sample_count-1 + sample_index];
798 out_value[0] = sample[0] / 16.0f;
799 out_value[1] = sample[1] / 16.0f;
800 }
801
802
803 /*
804 * Update resource in-use status
805 * All resources bound to color or depth targets marked as WRITE resources.
806 * VBO Vertex/index buffers and texture views marked as READ resources.
807 */
808 void
809 swr_update_resource_status(struct pipe_context *pipe,
810 const struct pipe_draw_info *p_draw_info)
811 {
812 struct swr_context *ctx = swr_context(pipe);
813 struct pipe_framebuffer_state *fb = &ctx->framebuffer;
814
815 /* colorbuffer targets */
816 if (fb->nr_cbufs)
817 for (uint32_t i = 0; i < fb->nr_cbufs; ++i)
818 if (fb->cbufs[i])
819 swr_resource_write(fb->cbufs[i]->texture);
820
821 /* depth/stencil target */
822 if (fb->zsbuf)
823 swr_resource_write(fb->zsbuf->texture);
824
825 /* VBO vertex buffers */
826 for (uint32_t i = 0; i < ctx->num_vertex_buffers; i++) {
827 struct pipe_vertex_buffer *vb = &ctx->vertex_buffer[i];
828 if (!vb->is_user_buffer && vb->buffer.resource)
829 swr_resource_read(vb->buffer.resource);
830 }
831
832 /* VBO index buffer */
833 if (p_draw_info && p_draw_info->index_size) {
834 if (!p_draw_info->has_user_indices)
835 swr_resource_read(p_draw_info->index.resource);
836 }
837
838 /* transform feedback buffers */
839 for (uint32_t i = 0; i < ctx->num_so_targets; i++) {
840 struct pipe_stream_output_target *target = ctx->so_targets[i];
841 if (target && target->buffer)
842 swr_resource_write(target->buffer);
843 }
844
845 /* texture sampler views */
846 for (uint32_t j : {PIPE_SHADER_VERTEX, PIPE_SHADER_FRAGMENT}) {
847 for (uint32_t i = 0; i < ctx->num_sampler_views[j]; i++) {
848 struct pipe_sampler_view *view = ctx->sampler_views[j][i];
849 if (view)
850 swr_resource_read(view->texture);
851 }
852 }
853
854 /* constant buffers */
855 for (uint32_t j : {PIPE_SHADER_VERTEX, PIPE_SHADER_FRAGMENT}) {
856 for (uint32_t i = 0; i < PIPE_MAX_CONSTANT_BUFFERS; i++) {
857 struct pipe_constant_buffer *cb = &ctx->constants[j][i];
858 if (cb->buffer)
859 swr_resource_read(cb->buffer);
860 }
861 }
862 }
863
864 static void
865 swr_update_texture_state(struct swr_context *ctx,
866 enum pipe_shader_type shader_type,
867 unsigned num_sampler_views,
868 swr_jit_texture *textures)
869 {
870 for (unsigned i = 0; i < num_sampler_views; i++) {
871 struct pipe_sampler_view *view =
872 ctx->sampler_views[shader_type][i];
873 struct swr_jit_texture *jit_tex = &textures[i];
874
875 memset(jit_tex, 0, sizeof(*jit_tex));
876 if (view) {
877 struct pipe_resource *res = view->texture;
878 struct swr_resource *swr_res = swr_resource(res);
879 SWR_SURFACE_STATE *swr = &swr_res->swr;
880 size_t *mip_offsets = swr_res->mip_offsets;
881 if (swr_res->has_depth && swr_res->has_stencil &&
882 !util_format_has_depth(util_format_description(view->format))) {
883 swr = &swr_res->secondary;
884 mip_offsets = swr_res->secondary_mip_offsets;
885 }
886
887 jit_tex->width = res->width0;
888 jit_tex->height = res->height0;
889 jit_tex->base_ptr = (uint8_t*)swr->xpBaseAddress;
890 if (view->target != PIPE_BUFFER) {
891 jit_tex->first_level = view->u.tex.first_level;
892 jit_tex->last_level = view->u.tex.last_level;
893 if (view->target == PIPE_TEXTURE_3D)
894 jit_tex->depth = res->depth0;
895 else
896 jit_tex->depth =
897 view->u.tex.last_layer - view->u.tex.first_layer + 1;
898 jit_tex->base_ptr += view->u.tex.first_layer *
899 swr->qpitch * swr->pitch;
900 } else {
901 unsigned view_blocksize = util_format_get_blocksize(view->format);
902 jit_tex->base_ptr += view->u.buf.offset;
903 jit_tex->width = view->u.buf.size / view_blocksize;
904 jit_tex->depth = 1;
905 }
906
907 for (unsigned level = jit_tex->first_level;
908 level <= jit_tex->last_level;
909 level++) {
910 jit_tex->row_stride[level] = swr->pitch;
911 jit_tex->img_stride[level] = swr->qpitch * swr->pitch;
912 jit_tex->mip_offsets[level] = mip_offsets[level];
913 }
914 }
915 }
916 }
917
918 static void
919 swr_update_sampler_state(struct swr_context *ctx,
920 enum pipe_shader_type shader_type,
921 unsigned num_samplers,
922 swr_jit_sampler *samplers)
923 {
924 for (unsigned i = 0; i < num_samplers; i++) {
925 const struct pipe_sampler_state *sampler =
926 ctx->samplers[shader_type][i];
927
928 if (sampler) {
929 samplers[i].min_lod = sampler->min_lod;
930 samplers[i].max_lod = sampler->max_lod;
931 samplers[i].lod_bias = sampler->lod_bias;
932 COPY_4V(samplers[i].border_color, sampler->border_color.f);
933 }
934 }
935 }
936
937 static void
938 swr_update_constants(struct swr_context *ctx, enum pipe_shader_type shaderType)
939 {
940 swr_draw_context *pDC = &ctx->swrDC;
941
942 const float **constant;
943 uint32_t *num_constants;
944 struct swr_scratch_space *scratch;
945
946 switch (shaderType) {
947 case PIPE_SHADER_VERTEX:
948 constant = pDC->constantVS;
949 num_constants = pDC->num_constantsVS;
950 scratch = &ctx->scratch->vs_constants;
951 break;
952 case PIPE_SHADER_FRAGMENT:
953 constant = pDC->constantFS;
954 num_constants = pDC->num_constantsFS;
955 scratch = &ctx->scratch->fs_constants;
956 break;
957 case PIPE_SHADER_GEOMETRY:
958 constant = pDC->constantGS;
959 num_constants = pDC->num_constantsGS;
960 scratch = &ctx->scratch->gs_constants;
961 break;
962 case PIPE_SHADER_TESS_CTRL:
963 constant = pDC->constantTCS;
964 num_constants = pDC->num_constantsTCS;
965 scratch = &ctx->scratch->tcs_constants;
966 break;
967 case PIPE_SHADER_TESS_EVAL:
968 constant = pDC->constantTES;
969 num_constants = pDC->num_constantsTES;
970 scratch = &ctx->scratch->tes_constants;
971 break;
972 default:
973 assert(0 && "Unsupported shader type constants");
974 return;
975 }
976
977 for (UINT i = 0; i < PIPE_MAX_CONSTANT_BUFFERS; i++) {
978 const pipe_constant_buffer *cb = &ctx->constants[shaderType][i];
979 num_constants[i] = cb->buffer_size;
980 if (cb->buffer) {
981 constant[i] =
982 (const float *)(swr_resource_data(cb->buffer) +
983 cb->buffer_offset);
984 } else {
985 /* Need to copy these constants to scratch space */
986 if (cb->user_buffer && cb->buffer_size) {
987 const void *ptr =
988 ((const uint8_t *)cb->user_buffer + cb->buffer_offset);
989 uint32_t size = AlignUp(cb->buffer_size, 4);
990 ptr = swr_copy_to_scratch_space(ctx, scratch, ptr, size);
991 constant[i] = (const float *)ptr;
992 }
993 }
994 }
995 }
996
997 static bool
998 swr_change_rt(struct swr_context *ctx,
999 unsigned attachment,
1000 const struct pipe_surface *sf)
1001 {
1002 swr_draw_context *pDC = &ctx->swrDC;
1003 struct SWR_SURFACE_STATE *rt = &pDC->renderTargets[attachment];
1004
1005 /* Do nothing if the render target hasn't changed */
1006 if ((!sf || !sf->texture) && (void*)(rt->xpBaseAddress) == nullptr)
1007 return false;
1008
1009 /* Deal with disabling RT up front */
1010 if (!sf || !sf->texture) {
1011 /* If detaching attachment, mark tiles as RESOLVED so core
1012 * won't try to load from non-existent target. */
1013 swr_store_render_target(&ctx->pipe, attachment, SWR_TILE_RESOLVED);
1014 *rt = {0};
1015 return true;
1016 }
1017
1018 const struct swr_resource *swr = swr_resource(sf->texture);
1019 const SWR_SURFACE_STATE *swr_surface = &swr->swr;
1020 SWR_FORMAT fmt = mesa_to_swr_format(sf->format);
1021
1022 if (attachment == SWR_ATTACHMENT_STENCIL && swr->secondary.xpBaseAddress) {
1023 swr_surface = &swr->secondary;
1024 fmt = swr_surface->format;
1025 }
1026
1027 if (rt->xpBaseAddress == swr_surface->xpBaseAddress &&
1028 rt->format == fmt &&
1029 rt->lod == sf->u.tex.level &&
1030 rt->arrayIndex == sf->u.tex.first_layer)
1031 return false;
1032
1033 bool need_fence = false;
1034
1035 /* StoreTile for changed target */
1036 if (rt->xpBaseAddress) {
1037 /* If changing attachment to a new target, mark tiles as
1038 * INVALID so they are reloaded from surface. */
1039 swr_store_render_target(&ctx->pipe, attachment, SWR_TILE_INVALID);
1040 need_fence = true;
1041 } else {
1042 /* if no previous attachment, invalidate tiles that may be marked
1043 * RESOLVED because of an old attachment */
1044 swr_invalidate_render_target(&ctx->pipe, attachment, sf->width, sf->height);
1045 /* no need to set fence here */
1046 }
1047
1048 /* Make new attachment */
1049 *rt = *swr_surface;
1050 rt->format = fmt;
1051 rt->lod = sf->u.tex.level;
1052 rt->arrayIndex = sf->u.tex.first_layer;
1053
1054 return need_fence;
1055 }
1056
1057 /*
1058 * for cases where resources are shared between contexts, invalidate
1059 * this ctx's resource. so it can be fetched fresh. Old ctx's resource
1060 * is already stored during a flush
1061 */
1062 static inline void
1063 swr_invalidate_buffers_after_ctx_change(struct pipe_context *pipe)
1064 {
1065 struct swr_context *ctx = swr_context(pipe);
1066
1067 for (uint32_t i = 0; i < ctx->framebuffer.nr_cbufs; i++) {
1068 struct pipe_surface *cb = ctx->framebuffer.cbufs[i];
1069 if (cb) {
1070 struct swr_resource *res = swr_resource(cb->texture);
1071 if (res->curr_pipe != pipe) {
1072 /* if curr_pipe is NULL (first use), status should not be WRITE */
1073 assert(res->curr_pipe || !(res->status & SWR_RESOURCE_WRITE));
1074 if (res->status & SWR_RESOURCE_WRITE) {
1075 swr_invalidate_render_target(pipe, i, cb->width, cb->height);
1076 }
1077 }
1078 res->curr_pipe = pipe;
1079 }
1080 }
1081 if (ctx->framebuffer.zsbuf) {
1082 struct pipe_surface *zb = ctx->framebuffer.zsbuf;
1083 if (zb) {
1084 struct swr_resource *res = swr_resource(zb->texture);
1085 if (res->curr_pipe != pipe) {
1086 /* if curr_pipe is NULL (first use), status should not be WRITE */
1087 assert(res->curr_pipe || !(res->status & SWR_RESOURCE_WRITE));
1088 if (res->status & SWR_RESOURCE_WRITE) {
1089 swr_invalidate_render_target(pipe, SWR_ATTACHMENT_DEPTH, zb->width, zb->height);
1090 swr_invalidate_render_target(pipe, SWR_ATTACHMENT_STENCIL, zb->width, zb->height);
1091 }
1092 }
1093 res->curr_pipe = pipe;
1094 }
1095 }
1096 }
1097
1098 static inline void
1099 swr_user_vbuf_range(const struct pipe_draw_info *info,
1100 const struct swr_vertex_element_state *velems,
1101 const struct pipe_vertex_buffer *vb,
1102 uint32_t i,
1103 uint32_t *totelems,
1104 uint32_t *base,
1105 uint32_t *size)
1106 {
1107 /* FIXME: The size is too large - we don't access the full extra stride. */
1108 unsigned elems;
1109 unsigned elem_pitch = vb->stride + velems->stream_pitch[i];
1110 if (velems->instanced_bufs & (1U << i)) {
1111 elems = info->instance_count / velems->min_instance_div[i] + 1;
1112 *totelems = info->start_instance + elems;
1113 *base = info->start_instance * vb->stride;
1114 *size = elems * elem_pitch;
1115 } else if (vb->stride) {
1116 elems = info->max_index - info->min_index + 1;
1117 *totelems = (info->max_index + info->index_bias) + 1;
1118 *base = (info->min_index + info->index_bias) * vb->stride;
1119 *size = elems * elem_pitch;
1120 } else {
1121 *totelems = 1;
1122 *base = 0;
1123 *size = velems->stream_pitch[i];
1124 }
1125 }
1126
1127 static void
1128 swr_update_poly_stipple(struct swr_context *ctx)
1129 {
1130 struct swr_draw_context *pDC = &ctx->swrDC;
1131
1132 assert(sizeof(ctx->poly_stipple.pipe.stipple) == sizeof(pDC->polyStipple));
1133 memcpy(pDC->polyStipple,
1134 ctx->poly_stipple.pipe.stipple,
1135 sizeof(ctx->poly_stipple.pipe.stipple));
1136 }
1137
1138
1139 static struct tgsi_shader_info *
1140 swr_get_last_fe(const struct swr_context *ctx)
1141 {
1142 tgsi_shader_info *pLastFE = &ctx->vs->info.base;
1143
1144 if (ctx->gs) {
1145 pLastFE = &ctx->gs->info.base;
1146 }
1147 else if (ctx->tes) {
1148 pLastFE = &ctx->tes->info.base;
1149 }
1150 else if (ctx->tcs) {
1151 pLastFE = &ctx->tcs->info.base;
1152 }
1153 return pLastFE;
1154 }
1155
1156
1157 void
1158 swr_update_derived(struct pipe_context *pipe,
1159 const struct pipe_draw_info *p_draw_info)
1160 {
1161 struct swr_context *ctx = swr_context(pipe);
1162 struct swr_screen *screen = swr_screen(pipe->screen);
1163
1164 /* When called from swr_clear (p_draw_info = null), set any null
1165 * state-objects to the dummy state objects to prevent nullptr dereference
1166 * in validation below.
1167 *
1168 * Important that this remains static for zero initialization. These
1169 * aren't meant to be proper state objects, just empty structs. They will
1170 * not be written to.
1171 *
1172 * Shaders can't be part of the union since they contain std::unordered_map
1173 */
1174 static struct {
1175 union {
1176 struct pipe_rasterizer_state rasterizer;
1177 struct pipe_depth_stencil_alpha_state depth_stencil;
1178 struct swr_blend_state blend;
1179 } state;
1180 struct swr_vertex_shader vs;
1181 struct swr_fragment_shader fs;
1182 } swr_dummy;
1183
1184 if (!p_draw_info) {
1185 if (!ctx->rasterizer)
1186 ctx->rasterizer = &swr_dummy.state.rasterizer;
1187 if (!ctx->depth_stencil)
1188 ctx->depth_stencil = &swr_dummy.state.depth_stencil;
1189 if (!ctx->blend)
1190 ctx->blend = &swr_dummy.state.blend;
1191 if (!ctx->vs)
1192 ctx->vs = &swr_dummy.vs;
1193 if (!ctx->fs)
1194 ctx->fs = &swr_dummy.fs;
1195 }
1196
1197 /* Update screen->pipe to current pipe context. */
1198 screen->pipe = pipe;
1199
1200 /* Any state that requires dirty flags to be re-triggered sets this mask */
1201 /* For example, user_buffer vertex and index buffers. */
1202 unsigned post_update_dirty_flags = 0;
1203
1204 /* bring resources that changed context up-to-date */
1205 swr_invalidate_buffers_after_ctx_change(pipe);
1206
1207 /* Render Targets */
1208 if (ctx->dirty & SWR_NEW_FRAMEBUFFER) {
1209 struct pipe_framebuffer_state *fb = &ctx->framebuffer;
1210 const struct util_format_description *desc = NULL;
1211 bool need_fence = false;
1212
1213 /* colorbuffer targets */
1214 if (fb->nr_cbufs) {
1215 for (unsigned i = 0; i < fb->nr_cbufs; ++i)
1216 need_fence |= swr_change_rt(
1217 ctx, SWR_ATTACHMENT_COLOR0 + i, fb->cbufs[i]);
1218 }
1219 for (unsigned i = fb->nr_cbufs; i < SWR_NUM_RENDERTARGETS; ++i)
1220 need_fence |= swr_change_rt(ctx, SWR_ATTACHMENT_COLOR0 + i, NULL);
1221
1222 /* depth/stencil target */
1223 if (fb->zsbuf)
1224 desc = util_format_description(fb->zsbuf->format);
1225 if (fb->zsbuf && util_format_has_depth(desc))
1226 need_fence |= swr_change_rt(ctx, SWR_ATTACHMENT_DEPTH, fb->zsbuf);
1227 else
1228 need_fence |= swr_change_rt(ctx, SWR_ATTACHMENT_DEPTH, NULL);
1229
1230 if (fb->zsbuf && util_format_has_stencil(desc))
1231 need_fence |= swr_change_rt(ctx, SWR_ATTACHMENT_STENCIL, fb->zsbuf);
1232 else
1233 need_fence |= swr_change_rt(ctx, SWR_ATTACHMENT_STENCIL, NULL);
1234
1235 /* This fence ensures any attachment changes are resolved before the
1236 * next draw */
1237 if (need_fence)
1238 swr_fence_submit(ctx, screen->flush_fence);
1239 }
1240
1241 /* Raster state */
1242 if (ctx->dirty & (SWR_NEW_RASTERIZER |
1243 SWR_NEW_VS | // clipping
1244 SWR_NEW_TES |
1245 SWR_NEW_TCS |
1246 SWR_NEW_FRAMEBUFFER)) {
1247 pipe_rasterizer_state *rasterizer = ctx->rasterizer;
1248 pipe_framebuffer_state *fb = &ctx->framebuffer;
1249
1250 SWR_RASTSTATE *rastState = &ctx->derived.rastState;
1251 rastState->cullMode = swr_convert_cull_mode(rasterizer->cull_face);
1252 rastState->frontWinding = rasterizer->front_ccw
1253 ? SWR_FRONTWINDING_CCW
1254 : SWR_FRONTWINDING_CW;
1255 rastState->scissorEnable = rasterizer->scissor;
1256 rastState->pointSize = rasterizer->point_size > 0.0f
1257 ? rasterizer->point_size
1258 : 1.0f;
1259 rastState->lineWidth = rasterizer->line_width > 0.0f
1260 ? rasterizer->line_width
1261 : 1.0f;
1262
1263 rastState->pointParam = rasterizer->point_size_per_vertex;
1264
1265 rastState->pointSpriteEnable = rasterizer->sprite_coord_enable;
1266 rastState->pointSpriteTopOrigin =
1267 rasterizer->sprite_coord_mode == PIPE_SPRITE_COORD_UPPER_LEFT;
1268
1269 /* If SWR_MSAA_FORCE_ENABLE is set, turn msaa on */
1270 if (screen->msaa_force_enable && !rasterizer->multisample) {
1271 /* Force enable and use the value the surface was created with */
1272 rasterizer->multisample = true;
1273 fb->samples = swr_resource(fb->cbufs[0]->texture)->swr.numSamples;
1274 fprintf(stderr,"msaa force enable: %d samples\n", fb->samples);
1275 }
1276
1277 rastState->sampleCount = GetSampleCount(fb->samples);
1278 rastState->forcedSampleCount = false;
1279 rastState->bIsCenterPattern = !rasterizer->multisample;
1280 rastState->pixelLocation = SWR_PIXEL_LOCATION_CENTER;
1281
1282 /* Only initialize sample positions if msaa is enabled */
1283 if (rasterizer->multisample) {
1284 for (uint32_t i = 0; i < fb->samples; i++) {
1285 const uint8_t *sample = swr_sample_positions[fb->samples-1 + i];
1286 rastState->samplePositions.SetXi(i, sample[0] << 4);
1287 rastState->samplePositions.SetYi(i, sample[1] << 4);
1288 rastState->samplePositions.SetX (i, sample[0] / 16.0f);
1289 rastState->samplePositions.SetY (i, sample[1] / 16.0f);
1290 }
1291 rastState->samplePositions.PrecalcSampleData(fb->samples);
1292 }
1293
1294 bool do_offset = false;
1295 switch (rasterizer->fill_front) {
1296 case PIPE_POLYGON_MODE_FILL:
1297 do_offset = rasterizer->offset_tri;
1298 break;
1299 case PIPE_POLYGON_MODE_LINE:
1300 do_offset = rasterizer->offset_line;
1301 break;
1302 case PIPE_POLYGON_MODE_POINT:
1303 do_offset = rasterizer->offset_point;
1304 break;
1305 }
1306
1307 if (do_offset) {
1308 rastState->depthBias = rasterizer->offset_units;
1309 rastState->slopeScaledDepthBias = rasterizer->offset_scale;
1310 rastState->depthBiasClamp = rasterizer->offset_clamp;
1311 } else {
1312 rastState->depthBias = 0;
1313 rastState->slopeScaledDepthBias = 0;
1314 rastState->depthBiasClamp = 0;
1315 }
1316
1317 /* translate polygon mode, at least for the front==back case */
1318 rastState->fillMode = swr_convert_fill_mode(rasterizer->fill_front);
1319
1320 struct pipe_surface *zb = fb->zsbuf;
1321 if (zb && swr_resource(zb->texture)->has_depth)
1322 rastState->depthFormat = swr_resource(zb->texture)->swr.format;
1323
1324 rastState->depthClipEnable = rasterizer->depth_clip_near;
1325 rastState->clipEnable = rasterizer->depth_clip_near | rasterizer->depth_clip_far;
1326 rastState->clipHalfZ = rasterizer->clip_halfz;
1327
1328 ctx->api.pfnSwrSetRastState(ctx->swrContext, rastState);
1329 }
1330
1331 /* Viewport */
1332 if (ctx->dirty & (SWR_NEW_VIEWPORT | SWR_NEW_FRAMEBUFFER
1333 | SWR_NEW_RASTERIZER)) {
1334 pipe_viewport_state *state = &ctx->viewports[0];
1335 pipe_framebuffer_state *fb = &ctx->framebuffer;
1336 pipe_rasterizer_state *rasterizer = ctx->rasterizer;
1337
1338 SWR_VIEWPORT *vp = &ctx->derived.vp[0];
1339 SWR_VIEWPORT_MATRICES *vpm = &ctx->derived.vpm;
1340
1341 for (unsigned i = 0; i < KNOB_NUM_VIEWPORTS_SCISSORS; i++) {
1342 vp->x = state->translate[0] - state->scale[0];
1343 vp->width = 2 * state->scale[0];
1344 vp->y = state->translate[1] - fabs(state->scale[1]);
1345 vp->height = 2 * fabs(state->scale[1]);
1346 util_viewport_zmin_zmax(state, rasterizer->clip_halfz,
1347 &vp->minZ, &vp->maxZ);
1348
1349 if (rasterizer->depth_clip_near) {
1350 vp->minZ = 0.0f;
1351 }
1352
1353 if (rasterizer->depth_clip_far) {
1354 vp->maxZ = 1.0f;
1355 }
1356
1357 vpm->m00[i] = state->scale[0];
1358 vpm->m11[i] = state->scale[1];
1359 vpm->m22[i] = state->scale[2];
1360 vpm->m30[i] = state->translate[0];
1361 vpm->m31[i] = state->translate[1];
1362 vpm->m32[i] = state->translate[2];
1363
1364 /* Now that the matrix is calculated, clip the view coords to screen
1365 * size. OpenGL allows for -ve x,y in the viewport. */
1366 if (vp->x < 0.0f) {
1367 vp->width += vp->x;
1368 vp->x = 0.0f;
1369 }
1370 if (vp->y < 0.0f) {
1371 vp->height += vp->y;
1372 vp->y = 0.0f;
1373 }
1374 vp->width = std::min(vp->width, (float) fb->width - vp->x);
1375 vp->height = std::min(vp->height, (float) fb->height - vp->y);
1376
1377 vp++;
1378 state++;
1379 }
1380 ctx->api.pfnSwrSetViewports(ctx->swrContext, KNOB_NUM_VIEWPORTS_SCISSORS,
1381 &ctx->derived.vp[0], &ctx->derived.vpm);
1382 }
1383
1384 /* When called from swr_clear (p_draw_info = null), render targets,
1385 * rasterState and viewports (dependent on render targets) are the only
1386 * necessary validation. Defer remaining validation by setting
1387 * post_update_dirty_flags and clear all dirty flags. BackendState is
1388 * still unconditionally validated below */
1389 if (!p_draw_info) {
1390 post_update_dirty_flags = ctx->dirty & ~(SWR_NEW_FRAMEBUFFER |
1391 SWR_NEW_RASTERIZER |
1392 SWR_NEW_VIEWPORT);
1393 ctx->dirty = 0;
1394 }
1395
1396 /* Scissor */
1397 if (ctx->dirty & SWR_NEW_SCISSOR) {
1398 ctx->api.pfnSwrSetScissorRects(ctx->swrContext, KNOB_NUM_VIEWPORTS_SCISSORS, ctx->swr_scissors);
1399 }
1400
1401 /* Set vertex & index buffers */
1402 if (ctx->dirty & SWR_NEW_VERTEX) {
1403 const struct pipe_draw_info &info = *p_draw_info;
1404
1405 /* vertex buffers */
1406 SWR_VERTEX_BUFFER_STATE swrVertexBuffers[PIPE_MAX_ATTRIBS];
1407 for (UINT i = 0; i < ctx->num_vertex_buffers; i++) {
1408 uint32_t size = 0, pitch = 0, elems = 0, partial_inbounds = 0;
1409 uint32_t min_vertex_index = 0;
1410 const uint8_t *p_data;
1411 struct pipe_vertex_buffer *vb = &ctx->vertex_buffer[i];
1412
1413 pitch = vb->stride;
1414 if (vb->is_user_buffer) {
1415 /* Client buffer
1416 * client memory is one-time use, re-trigger SWR_NEW_VERTEX to
1417 * revalidate on each draw */
1418 post_update_dirty_flags |= SWR_NEW_VERTEX;
1419
1420 uint32_t base;
1421 swr_user_vbuf_range(&info, ctx->velems, vb, i, &elems, &base, &size);
1422 partial_inbounds = 0;
1423 min_vertex_index = info.min_index + info.index_bias;
1424
1425 size = AlignUp(size, 4);
1426 /* If size of client memory copy is too large, don't copy. The
1427 * draw will access user-buffer directly and then block. This is
1428 * faster than queuing many large client draws. */
1429 if (size >= screen->client_copy_limit) {
1430 post_update_dirty_flags |= SWR_BLOCK_CLIENT_DRAW;
1431 p_data = (const uint8_t *) vb->buffer.user;
1432 } else {
1433 /* Copy only needed vertices to scratch space */
1434 const void *ptr = (const uint8_t *) vb->buffer.user + base;
1435 ptr = (uint8_t *)swr_copy_to_scratch_space(
1436 ctx, &ctx->scratch->vertex_buffer, ptr, size);
1437 p_data = (const uint8_t *)ptr - base;
1438 }
1439 } else if (vb->buffer.resource) {
1440 /* VBO */
1441 if (!pitch) {
1442 /* If pitch=0 (ie vb->stride), buffer contains a single
1443 * constant attribute. Use the stream_pitch which was
1444 * calculated during creation of vertex_elements_state for the
1445 * size of the attribute. */
1446 size = ctx->velems->stream_pitch[i];
1447 elems = 1;
1448 partial_inbounds = 0;
1449 min_vertex_index = 0;
1450 } else {
1451 /* size is based on buffer->width0 rather than info.max_index
1452 * to prevent having to validate VBO on each draw. */
1453 size = vb->buffer.resource->width0;
1454 elems = size / pitch;
1455 partial_inbounds = size % pitch;
1456 min_vertex_index = 0;
1457 }
1458
1459 p_data = swr_resource_data(vb->buffer.resource) + vb->buffer_offset;
1460 } else
1461 p_data = NULL;
1462
1463 swrVertexBuffers[i] = {0};
1464 swrVertexBuffers[i].index = i;
1465 swrVertexBuffers[i].pitch = pitch;
1466 swrVertexBuffers[i].xpData = (gfxptr_t) p_data;
1467 swrVertexBuffers[i].size = size;
1468 swrVertexBuffers[i].minVertex = min_vertex_index;
1469 swrVertexBuffers[i].maxVertex = elems;
1470 swrVertexBuffers[i].partialInboundsSize = partial_inbounds;
1471 }
1472
1473 ctx->api.pfnSwrSetVertexBuffers(
1474 ctx->swrContext, ctx->num_vertex_buffers, swrVertexBuffers);
1475
1476 /* index buffer, if required (info passed in by swr_draw_vbo) */
1477 SWR_FORMAT index_type = R32_UINT; /* Default for non-indexed draws */
1478 if (info.index_size) {
1479 const uint8_t *p_data;
1480 uint32_t size, pitch;
1481
1482 pitch = info.index_size ? info.index_size : sizeof(uint32_t);
1483 index_type = swr_convert_index_type(pitch);
1484
1485 if (!info.has_user_indices) {
1486 /* VBO
1487 * size is based on buffer->width0 rather than info.count
1488 * to prevent having to validate VBO on each draw */
1489 size = info.index.resource->width0;
1490 p_data = swr_resource_data(info.index.resource);
1491 } else {
1492 /* Client buffer
1493 * client memory is one-time use, re-trigger SWR_NEW_VERTEX to
1494 * revalidate on each draw */
1495 post_update_dirty_flags |= SWR_NEW_VERTEX;
1496
1497 size = info.count * pitch;
1498
1499 size = AlignUp(size, 4);
1500 /* If size of client memory copy is too large, don't copy. The
1501 * draw will access user-buffer directly and then block. This is
1502 * faster than queuing many large client draws. */
1503 if (size >= screen->client_copy_limit) {
1504 post_update_dirty_flags |= SWR_BLOCK_CLIENT_DRAW;
1505 p_data = (const uint8_t *) info.index.user;
1506 } else {
1507 /* Copy indices to scratch space */
1508 const void *ptr = info.index.user;
1509 ptr = swr_copy_to_scratch_space(
1510 ctx, &ctx->scratch->index_buffer, ptr, size);
1511 p_data = (const uint8_t *)ptr;
1512 }
1513 }
1514
1515 SWR_INDEX_BUFFER_STATE swrIndexBuffer;
1516 swrIndexBuffer.format = swr_convert_index_type(info.index_size);
1517 swrIndexBuffer.xpIndices = (gfxptr_t) p_data;
1518 swrIndexBuffer.size = size;
1519
1520 ctx->api.pfnSwrSetIndexBuffer(ctx->swrContext, &swrIndexBuffer);
1521 }
1522
1523 struct swr_vertex_element_state *velems = ctx->velems;
1524 if (velems && velems->fsState.indexType != index_type) {
1525 velems->fsFunc = NULL;
1526 velems->fsState.indexType = index_type;
1527 }
1528 }
1529
1530 /* GeometryShader */
1531 if (ctx->dirty & (SWR_NEW_GS |
1532 SWR_NEW_VS |
1533 SWR_NEW_TCS |
1534 SWR_NEW_TES |
1535 SWR_NEW_SAMPLER |
1536 SWR_NEW_SAMPLER_VIEW)) {
1537 if (ctx->gs) {
1538 swr_jit_gs_key key;
1539 swr_generate_gs_key(key, ctx, ctx->gs);
1540 auto search = ctx->gs->map.find(key);
1541 PFN_GS_FUNC func;
1542 if (search != ctx->gs->map.end()) {
1543 func = search->second->shader;
1544 } else {
1545 func = swr_compile_gs(ctx, key);
1546 }
1547 ctx->api.pfnSwrSetGsFunc(ctx->swrContext, func);
1548
1549 /* JIT sampler state */
1550 if (ctx->dirty & SWR_NEW_SAMPLER) {
1551 swr_update_sampler_state(ctx,
1552 PIPE_SHADER_GEOMETRY,
1553 key.nr_samplers,
1554 ctx->swrDC.samplersGS);
1555 }
1556
1557 /* JIT sampler view state */
1558 if (ctx->dirty & (SWR_NEW_SAMPLER_VIEW | SWR_NEW_FRAMEBUFFER)) {
1559 swr_update_texture_state(ctx,
1560 PIPE_SHADER_GEOMETRY,
1561 key.nr_sampler_views,
1562 ctx->swrDC.texturesGS);
1563 }
1564
1565 ctx->api.pfnSwrSetGsState(ctx->swrContext, &ctx->gs->gsState);
1566 } else {
1567 SWR_GS_STATE state = { 0 };
1568 ctx->api.pfnSwrSetGsState(ctx->swrContext, &state);
1569 ctx->api.pfnSwrSetGsFunc(ctx->swrContext, NULL);
1570 }
1571 }
1572
1573 // We may need to restore tessellation state
1574 // This restored state may be however overwritten
1575 // during shader compilation
1576 if (ctx->dirty & SWR_NEW_TS) {
1577 if (ctx->tes != nullptr) {
1578 ctx->tsState = ctx->tes->ts_state;
1579 ctx->api.pfnSwrSetTsState(ctx->swrContext, &ctx->tsState);
1580 } else {
1581 SWR_TS_STATE state = { 0 };
1582 ctx->api.pfnSwrSetTsState(ctx->swrContext, &state);
1583 }
1584 }
1585
1586 // Tessellation Evaluation Shader
1587 // Compile TES first, because TCS is optional
1588 if (ctx->dirty & (SWR_NEW_GS |
1589 SWR_NEW_VS |
1590 SWR_NEW_TCS |
1591 SWR_NEW_TES |
1592 SWR_NEW_SAMPLER |
1593 SWR_NEW_SAMPLER_VIEW)) {
1594 if (ctx->tes) {
1595 swr_jit_tes_key key;
1596 swr_generate_tes_key(key, ctx, ctx->tes);
1597
1598 auto search = ctx->tes->map.find(key);
1599 PFN_TES_FUNC func;
1600 if (search != ctx->tes->map.end()) {
1601 func = search->second->shader;
1602 } else {
1603 func = swr_compile_tes(ctx, key);
1604 }
1605
1606 ctx->api.pfnSwrSetDsFunc(ctx->swrContext, func);
1607
1608 /* JIT sampler state */
1609 if (ctx->dirty & SWR_NEW_SAMPLER) {
1610 swr_update_sampler_state(ctx,
1611 PIPE_SHADER_TESS_EVAL,
1612 key.nr_samplers,
1613 ctx->swrDC.samplersTES);
1614 }
1615
1616 /* JIT sampler view state */
1617 if (ctx->dirty & (SWR_NEW_SAMPLER_VIEW | SWR_NEW_FRAMEBUFFER)) {
1618 swr_update_texture_state(ctx,
1619 PIPE_SHADER_TESS_EVAL,
1620 key.nr_sampler_views,
1621 ctx->swrDC.texturesTES);
1622 }
1623
1624 // Update tessellation state in case it's been updated
1625 ctx->api.pfnSwrSetTsState(ctx->swrContext, &ctx->tsState);
1626 } else {
1627 ctx->api.pfnSwrSetDsFunc(ctx->swrContext, NULL);
1628 }
1629 }
1630
1631 /* Tessellation Control Shader */
1632 if (ctx->dirty & (SWR_NEW_GS |
1633 SWR_NEW_VS |
1634 SWR_NEW_TCS |
1635 SWR_NEW_TES |
1636 SWR_NEW_SAMPLER |
1637 SWR_NEW_SAMPLER_VIEW)) {
1638 if (ctx->tcs) {
1639 ctx->tcs->vertices_per_patch = p_draw_info->vertices_per_patch;
1640
1641 swr_jit_tcs_key key;
1642 swr_generate_tcs_key(key, ctx, ctx->tcs);
1643
1644 auto search = ctx->tcs->map.find(key);
1645 PFN_TCS_FUNC func;
1646 if (search != ctx->tcs->map.end()) {
1647 func = search->second->shader;
1648 } else {
1649 func = swr_compile_tcs(ctx, key);
1650 }
1651
1652 ctx->api.pfnSwrSetHsFunc(ctx->swrContext, func);
1653
1654 /* JIT sampler state */
1655 if (ctx->dirty & SWR_NEW_SAMPLER) {
1656 swr_update_sampler_state(ctx,
1657 PIPE_SHADER_TESS_CTRL,
1658 key.nr_samplers,
1659 ctx->swrDC.samplersTCS);
1660 }
1661
1662 /* JIT sampler view state */
1663 if (ctx->dirty & (SWR_NEW_SAMPLER_VIEW | SWR_NEW_FRAMEBUFFER)) {
1664 swr_update_texture_state(ctx,
1665 PIPE_SHADER_TESS_CTRL,
1666 key.nr_sampler_views,
1667 ctx->swrDC.texturesTCS);
1668 }
1669
1670 // Update tessellation state in case it's been updated
1671 ctx->api.pfnSwrSetTsState(ctx->swrContext, &ctx->tsState);
1672 } else {
1673 ctx->api.pfnSwrSetHsFunc(ctx->swrContext, NULL);
1674 }
1675 }
1676
1677 /* VertexShader */
1678 if (ctx->dirty
1679 & (SWR_NEW_VS | SWR_NEW_RASTERIZER | // for clip planes
1680 SWR_NEW_SAMPLER | SWR_NEW_SAMPLER_VIEW | SWR_NEW_FRAMEBUFFER)) {
1681 swr_jit_vs_key key;
1682 swr_generate_vs_key(key, ctx, ctx->vs);
1683 auto search = ctx->vs->map.find(key);
1684 PFN_VERTEX_FUNC func;
1685 if (search != ctx->vs->map.end()) {
1686 func = search->second->shader;
1687 } else {
1688 func = swr_compile_vs(ctx, key);
1689 }
1690 ctx->api.pfnSwrSetVertexFunc(ctx->swrContext, func);
1691
1692 /* JIT sampler state */
1693 if (ctx->dirty & SWR_NEW_SAMPLER) {
1694 swr_update_sampler_state(
1695 ctx, PIPE_SHADER_VERTEX, key.nr_samplers, ctx->swrDC.samplersVS);
1696 }
1697
1698 /* JIT sampler view state */
1699 if (ctx->dirty & (SWR_NEW_SAMPLER_VIEW | SWR_NEW_FRAMEBUFFER)) {
1700 swr_update_texture_state(ctx,
1701 PIPE_SHADER_VERTEX,
1702 key.nr_sampler_views,
1703 ctx->swrDC.texturesVS);
1704 }
1705 }
1706
1707 /* work around the fact that poly stipple also affects lines */
1708 /* and points, since we rasterize them as triangles, too */
1709 /* Has to be before fragment shader, since it sets SWR_NEW_FS */
1710 if (p_draw_info) {
1711 bool new_prim_is_poly =
1712 (u_reduced_prim(p_draw_info->mode) == PIPE_PRIM_TRIANGLES) &&
1713 (ctx->derived.rastState.fillMode == SWR_FILLMODE_SOLID);
1714 if (new_prim_is_poly != ctx->poly_stipple.prim_is_poly) {
1715 ctx->dirty |= SWR_NEW_FS;
1716 ctx->poly_stipple.prim_is_poly = new_prim_is_poly;
1717 }
1718 }
1719
1720 /* FragmentShader */
1721 if (ctx->dirty & (SWR_NEW_FS |
1722 SWR_NEW_VS |
1723 SWR_NEW_GS |
1724 SWR_NEW_TES |
1725 SWR_NEW_TCS |
1726 SWR_NEW_RASTERIZER |
1727 SWR_NEW_SAMPLER |
1728 SWR_NEW_SAMPLER_VIEW |
1729 SWR_NEW_FRAMEBUFFER)) {
1730 swr_jit_fs_key key;
1731 swr_generate_fs_key(key, ctx, ctx->fs);
1732 auto search = ctx->fs->map.find(key);
1733 PFN_PIXEL_KERNEL func;
1734 if (search != ctx->fs->map.end()) {
1735 func = search->second->shader;
1736 } else {
1737 func = swr_compile_fs(ctx, key);
1738 }
1739 SWR_PS_STATE psState = {0};
1740 psState.pfnPixelShader = func;
1741 psState.killsPixel = ctx->fs->info.base.uses_kill;
1742 psState.inputCoverage = SWR_INPUT_COVERAGE_NORMAL;
1743 psState.writesODepth = ctx->fs->info.base.writes_z;
1744 psState.usesSourceDepth = ctx->fs->info.base.reads_z;
1745 psState.shadingRate = SWR_SHADING_RATE_PIXEL;
1746 psState.renderTargetMask = (1 << ctx->framebuffer.nr_cbufs) - 1;
1747 psState.posOffset = SWR_PS_POSITION_SAMPLE_NONE;
1748 uint32_t barycentricsMask = 0;
1749 #if 0
1750 // when we switch to mesa-master
1751 if (ctx->fs->info.base.uses_persp_center ||
1752 ctx->fs->info.base.uses_linear_center)
1753 barycentricsMask |= SWR_BARYCENTRIC_PER_PIXEL_MASK;
1754 if (ctx->fs->info.base.uses_persp_centroid ||
1755 ctx->fs->info.base.uses_linear_centroid)
1756 barycentricsMask |= SWR_BARYCENTRIC_CENTROID_MASK;
1757 if (ctx->fs->info.base.uses_persp_sample ||
1758 ctx->fs->info.base.uses_linear_sample)
1759 barycentricsMask |= SWR_BARYCENTRIC_PER_SAMPLE_MASK;
1760 #else
1761 for (unsigned i = 0; i < ctx->fs->info.base.num_inputs; i++) {
1762 switch (ctx->fs->info.base.input_interpolate_loc[i]) {
1763 case TGSI_INTERPOLATE_LOC_CENTER:
1764 barycentricsMask |= SWR_BARYCENTRIC_PER_PIXEL_MASK;
1765 break;
1766 case TGSI_INTERPOLATE_LOC_CENTROID:
1767 barycentricsMask |= SWR_BARYCENTRIC_CENTROID_MASK;
1768 break;
1769 case TGSI_INTERPOLATE_LOC_SAMPLE:
1770 barycentricsMask |= SWR_BARYCENTRIC_PER_SAMPLE_MASK;
1771 break;
1772 }
1773 }
1774 #endif
1775 psState.barycentricsMask = barycentricsMask;
1776 psState.usesUAV = false; // XXX
1777 psState.forceEarlyZ = false;
1778 ctx->api.pfnSwrSetPixelShaderState(ctx->swrContext, &psState);
1779
1780 /* JIT sampler state */
1781 if (ctx->dirty & (SWR_NEW_SAMPLER |
1782 SWR_NEW_FS)) {
1783 swr_update_sampler_state(ctx,
1784 PIPE_SHADER_FRAGMENT,
1785 key.nr_samplers,
1786 ctx->swrDC.samplersFS);
1787 }
1788
1789 /* JIT sampler view state */
1790 if (ctx->dirty & (SWR_NEW_SAMPLER_VIEW |
1791 SWR_NEW_FRAMEBUFFER |
1792 SWR_NEW_FS)) {
1793 swr_update_texture_state(ctx,
1794 PIPE_SHADER_FRAGMENT,
1795 key.nr_sampler_views,
1796 ctx->swrDC.texturesFS);
1797 }
1798 }
1799
1800
1801 /* VertexShader Constants */
1802 if (ctx->dirty & SWR_NEW_VSCONSTANTS) {
1803 swr_update_constants(ctx, PIPE_SHADER_VERTEX);
1804 }
1805
1806 /* FragmentShader Constants */
1807 if (ctx->dirty & SWR_NEW_FSCONSTANTS) {
1808 swr_update_constants(ctx, PIPE_SHADER_FRAGMENT);
1809 }
1810
1811 /* GeometryShader Constants */
1812 if (ctx->dirty & SWR_NEW_GSCONSTANTS) {
1813 swr_update_constants(ctx, PIPE_SHADER_GEOMETRY);
1814 }
1815
1816 /* Tessellation Control Shader Constants */
1817 if (ctx->dirty & SWR_NEW_TCSCONSTANTS) {
1818 swr_update_constants(ctx, PIPE_SHADER_TESS_CTRL);
1819 }
1820
1821 /* Tessellation Evaluation Shader Constants */
1822 if (ctx->dirty & SWR_NEW_TESCONSTANTS) {
1823 swr_update_constants(ctx, PIPE_SHADER_TESS_EVAL);
1824 }
1825
1826 /* Depth/stencil state */
1827 if (ctx->dirty & (SWR_NEW_DEPTH_STENCIL_ALPHA | SWR_NEW_FRAMEBUFFER)) {
1828 struct pipe_depth_state *depth = &(ctx->depth_stencil->depth);
1829 struct pipe_stencil_state *stencil = ctx->depth_stencil->stencil;
1830 SWR_DEPTH_STENCIL_STATE depthStencilState = {{0}};
1831 SWR_DEPTH_BOUNDS_STATE depthBoundsState = {0};
1832
1833 /* XXX, incomplete. Need to flesh out stencil & alpha test state
1834 struct pipe_stencil_state *front_stencil =
1835 ctx->depth_stencil.stencil[0];
1836 struct pipe_stencil_state *back_stencil = ctx->depth_stencil.stencil[1];
1837 struct pipe_alpha_state alpha;
1838 */
1839 if (stencil[0].enabled) {
1840 depthStencilState.stencilWriteEnable = 1;
1841 depthStencilState.stencilTestEnable = 1;
1842 depthStencilState.stencilTestFunc =
1843 swr_convert_depth_func(stencil[0].func);
1844
1845 depthStencilState.stencilPassDepthPassOp =
1846 swr_convert_stencil_op(stencil[0].zpass_op);
1847 depthStencilState.stencilPassDepthFailOp =
1848 swr_convert_stencil_op(stencil[0].zfail_op);
1849 depthStencilState.stencilFailOp =
1850 swr_convert_stencil_op(stencil[0].fail_op);
1851 depthStencilState.stencilWriteMask = stencil[0].writemask;
1852 depthStencilState.stencilTestMask = stencil[0].valuemask;
1853 depthStencilState.stencilRefValue = ctx->stencil_ref.ref_value[0];
1854 }
1855 if (stencil[1].enabled) {
1856 depthStencilState.doubleSidedStencilTestEnable = 1;
1857
1858 depthStencilState.backfaceStencilTestFunc =
1859 swr_convert_depth_func(stencil[1].func);
1860
1861 depthStencilState.backfaceStencilPassDepthPassOp =
1862 swr_convert_stencil_op(stencil[1].zpass_op);
1863 depthStencilState.backfaceStencilPassDepthFailOp =
1864 swr_convert_stencil_op(stencil[1].zfail_op);
1865 depthStencilState.backfaceStencilFailOp =
1866 swr_convert_stencil_op(stencil[1].fail_op);
1867 depthStencilState.backfaceStencilWriteMask = stencil[1].writemask;
1868 depthStencilState.backfaceStencilTestMask = stencil[1].valuemask;
1869
1870 depthStencilState.backfaceStencilRefValue =
1871 ctx->stencil_ref.ref_value[1];
1872 }
1873
1874 depthStencilState.depthTestEnable = depth->enabled;
1875 depthStencilState.depthTestFunc = swr_convert_depth_func(depth->func);
1876 depthStencilState.depthWriteEnable = depth->writemask;
1877 ctx->api.pfnSwrSetDepthStencilState(ctx->swrContext, &depthStencilState);
1878
1879 depthBoundsState.depthBoundsTestEnable = depth->bounds_test;
1880 depthBoundsState.depthBoundsTestMinValue = depth->bounds_min;
1881 depthBoundsState.depthBoundsTestMaxValue = depth->bounds_max;
1882 ctx->api.pfnSwrSetDepthBoundsState(ctx->swrContext, &depthBoundsState);
1883 }
1884
1885 /* Blend State */
1886 if (ctx->dirty & (SWR_NEW_BLEND |
1887 SWR_NEW_RASTERIZER |
1888 SWR_NEW_FRAMEBUFFER |
1889 SWR_NEW_DEPTH_STENCIL_ALPHA)) {
1890 struct pipe_framebuffer_state *fb = &ctx->framebuffer;
1891
1892 SWR_BLEND_STATE blendState;
1893 memcpy(&blendState, &ctx->blend->blendState, sizeof(blendState));
1894 blendState.constantColor[0] = ctx->blend_color.color[0];
1895 blendState.constantColor[1] = ctx->blend_color.color[1];
1896 blendState.constantColor[2] = ctx->blend_color.color[2];
1897 blendState.constantColor[3] = ctx->blend_color.color[3];
1898 blendState.alphaTestReference =
1899 *((uint32_t*)&ctx->depth_stencil->alpha.ref_value);
1900
1901 blendState.sampleMask = ctx->sample_mask;
1902 blendState.sampleCount = GetSampleCount(fb->samples);
1903
1904 /* If there are no color buffers bound, disable writes on RT0
1905 * and skip loop */
1906 if (fb->nr_cbufs == 0) {
1907 blendState.renderTarget[0].writeDisableRed = 1;
1908 blendState.renderTarget[0].writeDisableGreen = 1;
1909 blendState.renderTarget[0].writeDisableBlue = 1;
1910 blendState.renderTarget[0].writeDisableAlpha = 1;
1911 ctx->api.pfnSwrSetBlendFunc(ctx->swrContext, 0, NULL);
1912 }
1913 else
1914 for (int target = 0;
1915 target < std::min(SWR_NUM_RENDERTARGETS,
1916 PIPE_MAX_COLOR_BUFS);
1917 target++) {
1918 if (!fb->cbufs[target])
1919 continue;
1920
1921 struct swr_resource *colorBuffer =
1922 swr_resource(fb->cbufs[target]->texture);
1923
1924 BLEND_COMPILE_STATE compileState;
1925 memset(&compileState, 0, sizeof(compileState));
1926 compileState.format = colorBuffer->swr.format;
1927 memcpy(&compileState.blendState,
1928 &ctx->blend->compileState[target],
1929 sizeof(compileState.blendState));
1930
1931 const SWR_FORMAT_INFO& info = GetFormatInfo(compileState.format);
1932 if (compileState.blendState.logicOpEnable &&
1933 ((info.type[0] == SWR_TYPE_FLOAT) || info.isSRGB)) {
1934 compileState.blendState.logicOpEnable = false;
1935 }
1936
1937 if (info.type[0] == SWR_TYPE_SINT || info.type[0] == SWR_TYPE_UINT)
1938 compileState.blendState.blendEnable = false;
1939
1940 if (compileState.blendState.blendEnable == false &&
1941 compileState.blendState.logicOpEnable == false &&
1942 ctx->depth_stencil->alpha.enabled == 0) {
1943 ctx->api.pfnSwrSetBlendFunc(ctx->swrContext, target, NULL);
1944 continue;
1945 }
1946
1947 compileState.desc.alphaTestEnable =
1948 ctx->depth_stencil->alpha.enabled;
1949 compileState.desc.independentAlphaBlendEnable =
1950 (compileState.blendState.sourceBlendFactor !=
1951 compileState.blendState.sourceAlphaBlendFactor) ||
1952 (compileState.blendState.destBlendFactor !=
1953 compileState.blendState.destAlphaBlendFactor) ||
1954 (compileState.blendState.colorBlendFunc !=
1955 compileState.blendState.alphaBlendFunc);
1956 compileState.desc.alphaToCoverageEnable =
1957 ctx->blend->pipe.alpha_to_coverage;
1958 compileState.desc.sampleMaskEnable = (blendState.sampleMask != 0);
1959 compileState.desc.numSamples = fb->samples;
1960
1961 compileState.alphaTestFunction =
1962 swr_convert_depth_func(ctx->depth_stencil->alpha.func);
1963 compileState.alphaTestFormat = ALPHA_TEST_FLOAT32; // xxx
1964
1965 compileState.Canonicalize();
1966
1967 PFN_BLEND_JIT_FUNC func = NULL;
1968 auto search = ctx->blendJIT->find(compileState);
1969 if (search != ctx->blendJIT->end()) {
1970 func = search->second;
1971 } else {
1972 HANDLE hJitMgr = screen->hJitMgr;
1973 func = JitCompileBlend(hJitMgr, compileState);
1974 debug_printf("BLEND shader %p\n", func);
1975 assert(func && "Error: BlendShader = NULL");
1976
1977 ctx->blendJIT->insert(std::make_pair(compileState, func));
1978 }
1979 ctx->api.pfnSwrSetBlendFunc(ctx->swrContext, target, func);
1980 }
1981
1982 ctx->api.pfnSwrSetBlendState(ctx->swrContext, &blendState);
1983 }
1984
1985 if (ctx->dirty & SWR_NEW_STIPPLE) {
1986 swr_update_poly_stipple(ctx);
1987 }
1988
1989 if (ctx->dirty & (SWR_NEW_VS | SWR_NEW_TCS | SWR_NEW_TES | SWR_NEW_SO | SWR_NEW_RASTERIZER)) {
1990 ctx->vs->soState.rasterizerDisable =
1991 ctx->rasterizer->rasterizer_discard;
1992 ctx->api.pfnSwrSetSoState(ctx->swrContext, &ctx->vs->soState);
1993
1994 pipe_stream_output_info *stream_output = &ctx->vs->pipe.stream_output;
1995
1996 for (uint32_t i = 0; i < MAX_SO_STREAMS; i++) {
1997 SWR_STREAMOUT_BUFFER buffer = {0};
1998 if (ctx->so_targets[i]) {
1999 buffer.enable = true;
2000 buffer.pBuffer =
2001 (gfxptr_t)(swr_resource_data(ctx->so_targets[i]->buffer) +
2002 ctx->so_targets[i]->buffer_offset);
2003 buffer.bufferSize = ctx->so_targets[i]->buffer_size >> 2;
2004 buffer.pitch = stream_output->stride[i];
2005 buffer.streamOffset = 0;
2006 }
2007
2008 ctx->api.pfnSwrSetSoBuffers(ctx->swrContext, &buffer, i);
2009 }
2010 }
2011
2012
2013 if (ctx->dirty & (SWR_NEW_CLIP | SWR_NEW_RASTERIZER | SWR_NEW_VS)) {
2014 // shader exporting clip distances overrides all user clip planes
2015 if (ctx->rasterizer->clip_plane_enable &&
2016 !swr_get_last_fe(ctx)->num_written_clipdistance)
2017 {
2018 swr_draw_context *pDC = &ctx->swrDC;
2019 memcpy(pDC->userClipPlanes,
2020 ctx->clip.ucp,
2021 sizeof(pDC->userClipPlanes));
2022 }
2023 }
2024
2025 // set up backend state
2026 SWR_BACKEND_STATE backendState = {0};
2027 if (ctx->gs) {
2028 backendState.numAttributes = ctx->gs->info.base.num_outputs - 1;
2029 } else
2030 if (ctx->tes) {
2031 backendState.numAttributes = ctx->tes->info.base.num_outputs - 1;
2032 // no case for TCS, because if TCS is active, TES must be active
2033 // as well - pipeline stages after tessellation does not support patches
2034 } else {
2035 backendState.numAttributes = ctx->vs->info.base.num_outputs - 1;
2036 if (ctx->fs->info.base.uses_primid) {
2037 backendState.numAttributes++;
2038 backendState.swizzleEnable = true;
2039 for (unsigned i = 0; i < sizeof(backendState.numComponents); i++) {
2040 backendState.swizzleMap[i].sourceAttrib = i;
2041 }
2042 backendState.swizzleMap[ctx->vs->info.base.num_outputs - 1].constantSource =
2043 SWR_CONSTANT_SOURCE_PRIM_ID;
2044 backendState.swizzleMap[ctx->vs->info.base.num_outputs - 1].componentOverrideMask = 1;
2045 }
2046 }
2047 if (ctx->rasterizer->sprite_coord_enable)
2048 backendState.numAttributes++;
2049
2050 backendState.numAttributes = std::min((size_t)backendState.numAttributes,
2051 sizeof(backendState.numComponents));
2052 for (unsigned i = 0; i < backendState.numAttributes; i++)
2053 backendState.numComponents[i] = 4;
2054 backendState.constantInterpolationMask = ctx->fs->constantMask |
2055 (ctx->rasterizer->flatshade ? ctx->fs->flatConstantMask : 0);
2056 backendState.pointSpriteTexCoordMask = ctx->fs->pointSpriteMask;
2057
2058 struct tgsi_shader_info *pLastFE = swr_get_last_fe(ctx);
2059
2060 backendState.readRenderTargetArrayIndex = pLastFE->writes_layer;
2061 backendState.readViewportArrayIndex = pLastFE->writes_viewport_index;
2062 backendState.vertexAttribOffset = VERTEX_ATTRIB_START_SLOT; // TODO: optimize
2063
2064 backendState.clipDistanceMask =
2065 pLastFE->num_written_clipdistance ?
2066 pLastFE->clipdist_writemask & ctx->rasterizer->clip_plane_enable :
2067 ctx->rasterizer->clip_plane_enable;
2068
2069 backendState.cullDistanceMask =
2070 pLastFE->culldist_writemask << pLastFE->num_written_clipdistance;
2071
2072 // Assume old layout of SGV, POSITION, CLIPCULL, ATTRIB
2073 backendState.vertexClipCullOffset = backendState.vertexAttribOffset - 2;
2074
2075 ctx->api.pfnSwrSetBackendState(ctx->swrContext, &backendState);
2076
2077 /* Ensure that any in-progress attachment change StoreTiles finish */
2078 if (swr_is_fence_pending(screen->flush_fence))
2079 swr_fence_finish(pipe->screen, NULL, screen->flush_fence, 0);
2080
2081 /* Finally, update the in-use status of all resources involved in draw */
2082 swr_update_resource_status(pipe, p_draw_info);
2083
2084 ctx->dirty = post_update_dirty_flags;
2085 }
2086
2087
2088 static struct pipe_stream_output_target *
2089 swr_create_so_target(struct pipe_context *pipe,
2090 struct pipe_resource *buffer,
2091 unsigned buffer_offset,
2092 unsigned buffer_size)
2093 {
2094 struct pipe_stream_output_target *target;
2095
2096 target = CALLOC_STRUCT(pipe_stream_output_target);
2097 if (!target)
2098 return NULL;
2099
2100 target->context = pipe;
2101 target->reference.count = 1;
2102 pipe_resource_reference(&target->buffer, buffer);
2103 target->buffer_offset = buffer_offset;
2104 target->buffer_size = buffer_size;
2105 return target;
2106 }
2107
2108 static void
2109 swr_destroy_so_target(struct pipe_context *pipe,
2110 struct pipe_stream_output_target *target)
2111 {
2112 pipe_resource_reference(&target->buffer, NULL);
2113 FREE(target);
2114 }
2115
2116 static void
2117 swr_set_so_targets(struct pipe_context *pipe,
2118 unsigned num_targets,
2119 struct pipe_stream_output_target **targets,
2120 const unsigned *offsets)
2121 {
2122 struct swr_context *swr = swr_context(pipe);
2123 uint32_t i;
2124
2125 assert(num_targets <= MAX_SO_STREAMS);
2126
2127 for (i = 0; i < num_targets; i++) {
2128 pipe_so_target_reference(
2129 (struct pipe_stream_output_target **)&swr->so_targets[i],
2130 targets[i]);
2131 }
2132
2133 for (/* fall-through */; i < swr->num_so_targets; i++) {
2134 pipe_so_target_reference(
2135 (struct pipe_stream_output_target **)&swr->so_targets[i], NULL);
2136 }
2137
2138 swr->num_so_targets = num_targets;
2139 swr->swrDC.soPrims = &swr->so_primCounter;
2140
2141 swr->dirty |= SWR_NEW_SO;
2142 }
2143
2144
2145 void
2146 swr_state_init(struct pipe_context *pipe)
2147 {
2148 pipe->create_blend_state = swr_create_blend_state;
2149 pipe->bind_blend_state = swr_bind_blend_state;
2150 pipe->delete_blend_state = swr_delete_blend_state;
2151
2152 pipe->create_depth_stencil_alpha_state = swr_create_depth_stencil_state;
2153 pipe->bind_depth_stencil_alpha_state = swr_bind_depth_stencil_state;
2154 pipe->delete_depth_stencil_alpha_state = swr_delete_depth_stencil_state;
2155
2156 pipe->create_rasterizer_state = swr_create_rasterizer_state;
2157 pipe->bind_rasterizer_state = swr_bind_rasterizer_state;
2158 pipe->delete_rasterizer_state = swr_delete_rasterizer_state;
2159
2160 pipe->create_sampler_state = swr_create_sampler_state;
2161 pipe->bind_sampler_states = swr_bind_sampler_states;
2162 pipe->delete_sampler_state = swr_delete_sampler_state;
2163
2164 pipe->create_sampler_view = swr_create_sampler_view;
2165 pipe->set_sampler_views = swr_set_sampler_views;
2166 pipe->sampler_view_destroy = swr_sampler_view_destroy;
2167
2168 pipe->create_vs_state = swr_create_vs_state;
2169 pipe->bind_vs_state = swr_bind_vs_state;
2170 pipe->delete_vs_state = swr_delete_vs_state;
2171
2172 pipe->create_fs_state = swr_create_fs_state;
2173 pipe->bind_fs_state = swr_bind_fs_state;
2174 pipe->delete_fs_state = swr_delete_fs_state;
2175
2176 pipe->create_gs_state = swr_create_gs_state;
2177 pipe->bind_gs_state = swr_bind_gs_state;
2178 pipe->delete_gs_state = swr_delete_gs_state;
2179
2180 pipe->create_tcs_state = swr_create_tcs_state;
2181 pipe->bind_tcs_state = swr_bind_tcs_state;
2182 pipe->delete_tcs_state = swr_delete_tcs_state;
2183
2184 pipe->create_tes_state = swr_create_tes_state;
2185 pipe->bind_tes_state = swr_bind_tes_state;
2186 pipe->delete_tes_state = swr_delete_tes_state;
2187
2188 pipe->set_constant_buffer = swr_set_constant_buffer;
2189
2190 pipe->create_vertex_elements_state = swr_create_vertex_elements_state;
2191 pipe->bind_vertex_elements_state = swr_bind_vertex_elements_state;
2192 pipe->delete_vertex_elements_state = swr_delete_vertex_elements_state;
2193
2194 pipe->set_vertex_buffers = swr_set_vertex_buffers;
2195
2196 pipe->set_polygon_stipple = swr_set_polygon_stipple;
2197 pipe->set_clip_state = swr_set_clip_state;
2198 pipe->set_scissor_states = swr_set_scissor_states;
2199 pipe->set_viewport_states = swr_set_viewport_states;
2200
2201 pipe->set_framebuffer_state = swr_set_framebuffer_state;
2202
2203 pipe->set_blend_color = swr_set_blend_color;
2204 pipe->set_stencil_ref = swr_set_stencil_ref;
2205
2206 pipe->set_sample_mask = swr_set_sample_mask;
2207 pipe->get_sample_position = swr_get_sample_position;
2208
2209 pipe->create_stream_output_target = swr_create_so_target;
2210 pipe->stream_output_target_destroy = swr_destroy_so_target;
2211 pipe->set_stream_output_targets = swr_set_so_targets;
2212 }