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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user