summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/util/u_format_access.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/auxiliary/util/u_format_access.py')
-rw-r--r--src/gallium/auxiliary/util/u_format_access.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_format_access.py b/src/gallium/auxiliary/util/u_format_access.py
index 42a37badca..1c76d9a79d 100644
--- a/src/gallium/auxiliary/util/u_format_access.py
+++ b/src/gallium/auxiliary/util/u_format_access.py
@@ -81,9 +81,7 @@ def native_type(format):
else:
# For array pixel formats return the integer type that matches the color channel
channel = format.channels[0]
- if channel.type == VOID:
- channel = format.channels[1]
- if channel.type == UNSIGNED:
+ if channel.type in (UNSIGNED, VOID):
return 'uint%u_t' % channel.size
elif channel.type == SIGNED:
return 'int%u_t' % channel.size
@@ -322,7 +320,7 @@ def main():
print
print '#include "pipe/p_compiler.h"'
print '#include "u_math.h"'
- print '#include "u_format_pack.h"'
+ print '#include "u_format.h"'
print
generate_srgb_tables()