Module: Mesa Branch: master Commit: 85a47f647e140fd2b43bda917795145f047032d1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=85a47f647e140fd2b43bda917795145f047032d1
Author: Dave Airlie <[email protected]> Date: Fri Oct 7 12:08:26 2016 +1000 radv: drop all uint for unsigned. Signed-off-by: Dave Airlie <[email protected]> --- src/amd/vulkan/vk_format.h | 16 ++++++++-------- 1 file 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; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
