diff options
author | Grazvydas Ignotas <[email protected]> | 2016-12-10 21:10:04 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2016-12-10 21:46:56 +0100 |
commit | ec08666a2865423330a61b2a6a10ed7ab12e2a6f (patch) | |
tree | 1b208ed158af9917af07c7b9378351e4f2e247b5 /src/amd/vulkan/radv_meta_bufimage.c | |
parent | 9bff2c98847e6ea3958411c2be70c3f5e1d70032 (diff) |
radv/meta: use VK_NULL_HANDLE for handles
Otherwise we get 32bit warnings because handle is plain uint64_t there
and NULL is not suited to initialize that.
Signed-off-by: Grazvydas Ignotas <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_meta_bufimage.c')
-rw-r--r-- | src/amd/vulkan/radv_meta_bufimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_meta_bufimage.c b/src/amd/vulkan/radv_meta_bufimage.c index 01e48e43b46..310771829bf 100644 --- a/src/amd/vulkan/radv_meta_bufimage.c +++ b/src/amd/vulkan/radv_meta_bufimage.c @@ -327,7 +327,7 @@ itob_bind_descriptors(struct radv_cmd_buffer *cmd_buffer, .descriptorType = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE, .pImageInfo = (VkDescriptorImageInfo[]) { { - .sampler = NULL, + .sampler = VK_NULL_HANDLE, .imageView = radv_image_view_to_handle(&tmp->src_iview), .imageLayout = VK_IMAGE_LAYOUT_GENERAL, }, |