anv: Remove unused anv_image_view_info_for_vk_image_view_type()
authorChad Versace <chad.versace@intel.com>
Tue, 8 Dec 2015 22:25:28 +0000 (14:25 -0800)
committerChad Versace <chad.versace@intel.com>
Tue, 8 Dec 2015 22:25:28 +0000 (14:25 -0800)
src/vulkan/anv_image.c
src/vulkan/anv_private.h

index 68f9b0868553e8d5334f38c449c166e2099decfc..1205babef071a839d72d6f92b2c4ca6e9cba7252 100644 (file)
  */
 #include "gen8_pack.h"
 
+struct anv_image_view_info {
+   uint8_t surface_type; /**< RENDER_SURFACE_STATE.SurfaceType */
+   bool is_array:1; /**< RENDER_SURFACE_STATE.SurfaceArray */
+   bool is_cube:1; /**< RENDER_SURFACE_STATE.CubeFaceEnable* */
+};
+
 static const uint8_t anv_halign[] = {
     [4] = HALIGN4,
     [8] = HALIGN8,
@@ -65,12 +71,6 @@ anv_image_view_info_table[] = {
    #undef INFO
 };
 
-struct anv_image_view_info
-anv_image_view_info_for_vk_image_view_type(VkImageViewType type)
-{
-   return anv_image_view_info_table[type];
-}
-
 /**
  * The \a format argument is required and overrides any format found in struct
  * anv_image_create_info. Exactly one bit must be set in \a aspect.
index 4b672d38f1ce80067a8df461b6e3eb9bec87b90c..77aa385225959eac92f524d16f1771567cdb1a81 100644 (file)
@@ -1398,15 +1398,6 @@ anv_format_is_depth_or_stencil(const struct anv_format *format)
    return format->depth_format || format->has_stencil;
 }
 
-struct anv_image_view_info {
-   uint8_t surface_type; /**< RENDER_SURFACE_STATE.SurfaceType */
-   bool is_array:1; /**< RENDER_SURFACE_STATE.SurfaceArray */
-   bool is_cube:1; /**< RENDER_SURFACE_STATE.CubeFaceEnable* */
-};
-
-struct anv_image_view_info
-anv_image_view_info_for_vk_image_view_type(VkImageViewType type);
-
 /**
  * Subsurface of an anv_image.
  */