From 652727b0295d40d181c6a6420e19bdf0db005784 Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Fri, 13 Nov 2015 09:29:31 -0800 Subject: [PATCH] isl: Add structs isl_extent2d, isl_extent3d They are nowhere used yet. --- src/vulkan/isl.h | 11 +++++++++++ 1 file changed, 11 insertions(+) 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 */ -- 2.30.2