diff options
author | Jonathan Marek <[email protected]> | 2020-04-28 19:54:06 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-29 20:09:54 +0000 |
commit | 3e1b93ec4fa31014c322b970f7d8a057fdec04fe (patch) | |
tree | b88f29c38ceaac427ec4f372abfa67ed4b0c0dfd | |
parent | 05e6f763e7683c13a59e14f12ce3231d892921c2 (diff) |
turnip: fix wrong substream size in parse_multisample_and_color_blend20.1-branchpoint
Missed updating this when adding tu6_emit_sample_locations
Fixes: a92d2e11095 ("turnip: implement VK_EXT_sample_locations")
Signed-off-by: Jonathan Marek <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4795>
-rw-r--r-- | src/freedreno/vulkan/tu_pipeline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/freedreno/vulkan/tu_pipeline.c b/src/freedreno/vulkan/tu_pipeline.c index ff1fb9a16b8..965cb5af264 100644 --- a/src/freedreno/vulkan/tu_pipeline.c +++ b/src/freedreno/vulkan/tu_pipeline.c @@ -2457,7 +2457,7 @@ tu_pipeline_builder_parse_multisample_and_color_blend( : &dummy_blend_info; struct tu_cs blend_cs; - tu_cs_begin_sub_stream(&pipeline->cs, MAX_RTS * 3 + 9, &blend_cs); + tu_cs_begin_sub_stream(&pipeline->cs, MAX_RTS * 3 + 18, &blend_cs); uint32_t blend_enable_mask; tu6_emit_rb_mrt_controls(&blend_cs, blend_info, |