diff options
author | Dave Airlie <airlied@redhat.com> | 2016-10-07 12:08:26 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2016-10-07 12:09:13 +1000 |
commit | 85a47f647e140fd2b43bda917795145f047032d1 (patch) | |
tree | bf7a3d5a31d64a4394dd3daa7c6c7861bdaf36d5 /src/amd/vulkan/vk_format.h | |
parent | 20d91e5ce9b2da46c703b6af16c5e7ac0e13150f (diff) | |
download | external_mesa3d-85a47f647e140fd2b43bda917795145f047032d1.zip external_mesa3d-85a47f647e140fd2b43bda917795145f047032d1.tar.gz external_mesa3d-85a47f647e140fd2b43bda917795145f047032d1.tar.bz2 |
radv: drop all uint for unsigned.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/amd/vulkan/vk_format.h')
-rw-r--r-- | src/amd/vulkan/vk_format.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/amd/vulkan/vk_format.h b/src/amd/vulkan/vk_format.h index e0087f1..7b78373 100644 --- a/src/amd/vulkan/vk_format.h +++ b/src/amd/vulkan/vk_format.h @@ -143,7 +143,7 @@ const struct vk_format_description *vk_format_description(VkFormat format); /** * Return total bits needed for the pixel format per block. */ -static inline uint +static inline unsigned vk_format_get_blocksizebits(VkFormat format) { const struct vk_format_description *desc = vk_format_description(format); @@ -159,11 +159,11 @@ vk_format_get_blocksizebits(VkFormat format) /** * Return bytes per block (not pixel) for the given format. */ -static inline uint +static inline unsigned vk_format_get_blocksize(VkFormat format) { - uint bits = vk_format_get_blocksizebits(format); - uint bytes = bits / 8; + unsigned bits = vk_format_get_blocksizebits(format); + unsigned bytes = bits / 8; assert(bits % 8 == 0); assert(bytes > 0); @@ -174,7 +174,7 @@ vk_format_get_blocksize(VkFormat format) return bytes; } -static inline uint +static inline unsigned vk_format_get_blockwidth(VkFormat format) { const struct vk_format_description *desc = vk_format_description(format); @@ -187,7 +187,7 @@ vk_format_get_blockwidth(VkFormat format) return desc->block.width; } -static inline uint +static inline unsigned vk_format_get_blockheight(VkFormat format) { const struct vk_format_description *desc = vk_format_description(format); @@ -402,10 +402,10 @@ vk_format_stencil_only(VkFormat format) return VK_FORMAT_S8_UINT; } -static inline uint +static inline unsigned vk_format_get_component_bits(VkFormat format, enum vk_format_colorspace colorspace, - uint component) + unsigned component) { const struct vk_format_description *desc = vk_format_description(format); enum vk_format_colorspace desc_colorspace; |