From: Chad Versace Date: Fri, 13 Nov 2015 17:29:31 +0000 (-0800) Subject: isl: Add structs isl_extent2d, isl_extent3d X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=652727b0295d40d181c6a6420e19bdf0db005784;p=mesa.git isl: Add structs isl_extent2d, isl_extent3d They are nowhere used yet. --- diff --git a/src/vulkan/isl.h b/src/vulkan/isl.h index 7680fa9ef9a..fde16d3bbf0 100644 --- a/src/vulkan/isl.h +++ b/src/vulkan/isl.h @@ -316,6 +316,17 @@ struct isl_device { uint8_t gen; }; +struct isl_extent2d { + uint32_t width; + uint32_t height; +}; + +struct isl_extent3d { + uint32_t width; + uint32_t height; + uint32_t depth; +}; + struct isl_channel_layout { enum isl_base_type type; uint8_t bits; /**< Size in bits */