mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 17:58:26 +02:00
anv: Fix typo in transition_color_buffer
Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27330>
(cherry picked from commit 29d18f3ca9)
This commit is contained in:
parent
e5ef4678dd
commit
d2064c52fb
2 changed files with 2 additions and 2 deletions
|
|
@ -1074,7 +1074,7 @@
|
|||
"description": "anv: Fix typo in transition_color_buffer",
|
||||
"nominated": true,
|
||||
"nomination_type": 0,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": null,
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -893,7 +893,7 @@ transition_color_buffer(struct anv_cmd_buffer *cmd_buffer,
|
|||
0 : src_queue_family].queueFlags;
|
||||
const VkQueueFlagBits dst_queue_flags =
|
||||
device->physical->queue.families[
|
||||
(dst_queue_external || src_queue_family == VK_QUEUE_FAMILY_IGNORED) ?
|
||||
(dst_queue_external || dst_queue_family == VK_QUEUE_FAMILY_IGNORED) ?
|
||||
0 : dst_queue_family].queueFlags;
|
||||
|
||||
/* Simultaneous acquire and release on external queues is illegal. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue