anv: Remove unused anv_image_view_info_for_vk_image_view_type()

This commit is contained in:
Chad Versace 2015-12-08 14:25:28 -08:00
parent f4aee5d82f
commit db66424218
2 changed files with 6 additions and 15 deletions

View File

@ -34,6 +34,12 @@
*/
#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.

View 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.
*/