u_threaded_context: fix a memory leak
[mesa.git] / src / gallium / auxiliary / util / u_format_pack.py
index fb42de723c456acc25f15b224ebe6c7436724183..a2327196e6f631fd64bee7c3d0ab2791683a69c1 100644 (file)
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 
 '''
 /**************************************************************************
@@ -686,7 +685,7 @@ def generate_format_fetch(format, dst_channel, dst_native_type, dst_suffix):
 
 
 def is_format_hand_written(format):
-    return format.layout in ('s3tc', 'rgtc', 'etc', 'bptc', 'subsampled', 'other') or format.colorspace == ZS
+    return format.layout in ('s3tc', 'rgtc', 'etc', 'bptc', 'astc', 'subsampled', 'other') or format.colorspace == ZS
 
 
 def generate(formats):