mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 15:58:05 +02:00
panvk: Fix wrong type for sb_mask in CmdSetEvent2
Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com> Fixes:f8598e599e("panvk: Add VkEvent support to the CSF backend") Reviewed-by: Christoph Pillmayer <christoph.pillmayer@arm.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37396> (cherry picked from commit9dcc7c0d0a)
This commit is contained in:
parent
de0e1a9eb5
commit
a750d14408
2 changed files with 2 additions and 2 deletions
|
|
@ -3334,7 +3334,7 @@
|
|||
"description": "panvk: Fix wrong type for sb_mask in CmdSetEvent2",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "f8598e599e1ff0031988b863fab35c01d7d6dd20",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ panvk_per_arch(CmdSetEvent2)(VkCommandBuffer commandBuffer, VkEvent _event,
|
|||
|
||||
for (uint32_t i = 0; i < PANVK_SUBQUEUE_COUNT; i++) {
|
||||
struct cs_builder *b = panvk_get_cs_builder(cmdbuf, i);
|
||||
uint16_t sb_mask = deps.src[i].wait_sb_mask;
|
||||
uint32_t sb_mask = deps.src[i].wait_sb_mask;
|
||||
struct cs_index sync_addr = cs_scratch_reg64(b, 0);
|
||||
struct cs_index seqno = cs_scratch_reg32(b, 2);
|
||||
struct cs_index cmp_scratch = cs_scratch_reg32(b, 3);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue