mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-24 10:20:22 +01:00
anv,hasvk: Use uint32_t for queue family indices
Vulkan API uses uint32_t for the queue family indices. Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26387>
This commit is contained in:
parent
748b7f80ef
commit
4ebad93c9c
2 changed files with 4 additions and 4 deletions
|
|
@ -820,8 +820,8 @@ transition_color_buffer(struct anv_cmd_buffer *cmd_buffer,
|
|||
uint32_t base_layer, uint32_t layer_count,
|
||||
VkImageLayout initial_layout,
|
||||
VkImageLayout final_layout,
|
||||
uint64_t src_queue_family,
|
||||
uint64_t dst_queue_family,
|
||||
uint32_t src_queue_family,
|
||||
uint32_t dst_queue_family,
|
||||
bool will_full_fast_clear)
|
||||
{
|
||||
struct anv_device *device = cmd_buffer->device;
|
||||
|
|
|
|||
|
|
@ -870,8 +870,8 @@ transition_color_buffer(struct anv_cmd_buffer *cmd_buffer,
|
|||
uint32_t base_layer, uint32_t layer_count,
|
||||
VkImageLayout initial_layout,
|
||||
VkImageLayout final_layout,
|
||||
uint64_t src_queue_family,
|
||||
uint64_t dst_queue_family,
|
||||
uint32_t src_queue_family,
|
||||
uint32_t dst_queue_family,
|
||||
bool will_full_fast_clear)
|
||||
{
|
||||
struct anv_device *device = cmd_buffer->device;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue