panvk: Fix blend descriptor emission

Got the round_to_fb_precision wrong when rebasing the the per-gen XML
changes. Fix it now.

Fixes: 792a0ab0b1 ("panvk: Prepare per-gen split")
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12762>
This commit is contained in:
Boris Brezillon 2021-08-30 10:37:47 +02:00
parent 3c73ac53c7
commit 393615510d

View file

@ -620,7 +620,7 @@ panvk_per_arch(emit_blend)(const struct panvk_device *dev,
cfg.srgb = util_format_is_srgb(rts->format);
cfg.load_destination = pan_blend_reads_dest(blend->rts[rt].equation);
cfg.round_to_fb_precision = dithered;
cfg.round_to_fb_precision = !dithered;
#if PAN_ARCH <= 5
cfg.midgard.blend_shader = false;