gallium/auxiliary: Fix string matching
authorMathieu Bridon <bochecha@daitauha.fr>
Thu, 5 Jul 2018 10:43:04 +0000 (12:43 +0200)
committerEric Engestrom <eric.engestrom@intel.com>
Thu, 5 Jul 2018 10:48:47 +0000 (11:48 +0100)
Commit f69bc797e15fe6beb9e439009fab55f7fae0b7f9 did the following:

-        if format.layout in ('bptc', 'astc'):
+        if format.layout in ('astc'):

The intention was to go from matching either 'bptc' or 'astc' to
matching only 'astc'.

But the new code doesn't respect this intention any more, because in
Python `('astc')` is not a tuple containing a string, it is just the
string. (the parentheses are simply ignored)

That means we now match any substring of 'astc', for example 'a'.

This commit fixes the test to respect the original intention.

Fixes: f69bc797e15fe6beb9e4 "gallium/auxiliary: Add helper support for
                             bptc format compress/decompress"
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
src/gallium/auxiliary/util/u_format_table.py

index 1f8e15fa971f5c1a78d084f8736310bd8d2f584d..a9df984994774a703ef2b1c15ca32ad39fed49aa 100644 (file)
@@ -139,7 +139,7 @@ def write_format_table(formats):
         u_format_pack.print_channels(format, do_swizzle_array)
         print "   %s," % (colorspace_map(format.colorspace),)
         access = True
-        if format.layout in ('astc'):
+        if format.layout == 'astc':
             access = False
         if format.layout == 'etc' and format.short_name() != 'etc1_rgb8':
             access = False