[Mesa-dev] [PATCH 3/8] radv: clean up radv_htile_enabled()
Samuel Pitoiset
samuel.pitoiset at gmail.com
Fri Apr 6 17:34:06 UTC 2018
Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
---
src/amd/vulkan/radv_private.h | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h
index 4847afc7424..fbdaa7d1601 100644
--- a/src/amd/vulkan/radv_private.h
+++ b/src/amd/vulkan/radv_private.h
@@ -1389,12 +1389,6 @@ radv_vi_dcc_enabled(const struct radv_image *image, unsigned level)
return image->surface.dcc_size && level < image->surface.num_dcc_levels;
}
-static inline bool
-radv_htile_enabled(const struct radv_image *image, unsigned level)
-{
- return image->surface.htile_size && level == 0;
-}
-
/**
* Return whether the image has CMASK metadata for color surfaces.
*/
@@ -1431,6 +1425,15 @@ radv_image_has_htile(const struct radv_image *image)
return image->surface.htile_size;
}
+/**
+ * Return whether HTILE metadata is enabled for a level.
+ */
+static inline bool
+radv_htile_enabled(const struct radv_image *image, unsigned level)
+{
+ return radv_image_has_htile(image) && level == 0;
+}
+
unsigned radv_image_queue_family_mask(const struct radv_image *image, uint32_t family, uint32_t queue_family);
static inline uint32_t
--
2.16.3
More information about the mesa-dev
mailing list