isl/formats: Integer formats are not filterable

In ca2a8e5628, we updated the format table to add more formats (most of
which are new on SKL) but accidentally marked some integer formats as
filterable.  You can't filter an integer format.

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Reviewed-by: Nanley Chery <nanley.g.chery@intel.com>
This commit is contained in:
Jason Ekstrand 2016-08-23 14:11:18 -07:00
parent 361678edd7
commit 70bc891c42
1 changed files with 8 additions and 8 deletions

View File

@ -237,10 +237,10 @@ static const struct surface_format_info format_info[] = {
SF(45, 45, x, x, x, x, x, x, x, x, P4A4_UNORM_PALETTE1)
SF(45, 45, x, x, x, x, x, x, x, x, A4P4_UNORM_PALETTE1)
SF( x, x, x, x, x, x, x, x, x, x, Y8_UNORM)
SF(90, 90, x, x, x, x, x, x, x, x, L8_UINT)
SF(90, 90, x, x, x, x, x, x, x, x, L8_SINT)
SF(90, 90, x, x, x, x, x, x, x, x, I8_UINT)
SF(90, 90, x, x, x, x, x, x, x, x, I8_SINT)
SF(90, x, x, x, x, x, x, x, x, x, L8_UINT)
SF(90, x, x, x, x, x, x, x, x, x, L8_SINT)
SF(90, x, x, x, x, x, x, x, x, x, I8_UINT)
SF(90, x, x, x, x, x, x, x, x, x, I8_SINT)
SF(45, 45, x, x, x, x, x, x, x, x, DXT1_RGB_SRGB)
SF( Y, Y, x, x, x, x, x, x, x, x, R1_UNORM)
SF( Y, Y, x, Y, Y, x, x, x, 60, x, YCRCB_NORMAL)
@ -287,8 +287,8 @@ static const struct surface_format_info format_info[] = {
SF(80, 80, x, x, x, x, x, x, x, x, EAC_SIGNED_R11)
SF(80, 80, x, x, x, x, x, x, x, x, EAC_SIGNED_RG11)
SF(80, 80, x, x, x, x, x, x, x, x, ETC2_SRGB8)
SF(90, 90, x, x, x, x, 75, x, x, x, R16G16B16_UINT)
SF(90, 90, x, x, x, x, 75, x, x, x, R16G16B16_SINT)
SF(90, x, x, x, x, x, 75, x, x, x, R16G16B16_UINT)
SF(90, x, x, x, x, x, 75, x, x, x, R16G16B16_SINT)
SF( x, x, x, x, x, x, 75, x, x, x, R32_SFIXED)
SF( x, x, x, x, x, x, 75, x, x, x, R10G10B10A2_SNORM)
SF( x, x, x, x, x, x, 75, x, x, x, R10G10B10A2_USCALED)
@ -305,8 +305,8 @@ static const struct surface_format_info format_info[] = {
SF(80, 80, x, x, x, x, x, x, x, x, ETC2_SRGB8_PTA)
SF(80, 80, x, x, x, x, x, x, x, x, ETC2_EAC_RGBA8)
SF(80, 80, x, x, x, x, x, x, x, x, ETC2_EAC_SRGB8_A8)
SF(90, 90, x, x, x, x, 75, x, x, x, R8G8B8_UINT)
SF(90, 90, x, x, x, x, 75, x, x, x, R8G8B8_SINT)
SF(90, x, x, x, x, x, 75, x, x, x, R8G8B8_UINT)
SF(90, x, x, x, x, x, 75, x, x, x, R8G8B8_SINT)
SF(80, 80, x, x, x, x, x, x, x, x, ASTC_LDR_2D_4X4_FLT16)
SF(80, 80, x, x, x, x, x, x, x, x, ASTC_LDR_2D_5X4_FLT16)
SF(80, 80, x, x, x, x, x, x, x, x, ASTC_LDR_2D_5X5_FLT16)