From 3f626646793bf6d8d20aa277ad1bc760a4c271f5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Thu, 8 Apr 2010 16:24:43 +0100 Subject: [PATCH] util: Reorder the code generated function so that they are grouped by format. Makes it easier to copy and paste. --- src/gallium/auxiliary/util/u_format_pack.py | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/src/gallium/auxiliary/util/u_format_pack.py b/src/gallium/auxiliary/util/u_format_pack.py index 075f8caa30e..95d76910368 100644 --- a/src/gallium/auxiliary/util/u_format_pack.py +++ b/src/gallium/auxiliary/util/u_format_pack.py @@ -657,22 +657,18 @@ def generate(formats): if is_format_supported(format): generate_format_type(format) - channel = Channel(FLOAT, False, 32) - native_type = 'float' - suffix = 'float' - - for format in formats: if not is_format_hand_written(format): + channel = Channel(FLOAT, False, 32) + native_type = 'float' + suffix = 'float' + generate_format_unpack(format, channel, native_type, suffix) generate_format_pack(format, channel, native_type, suffix) generate_format_fetch(format, channel, native_type, suffix) - channel = Channel(UNSIGNED, True, 8) - native_type = 'uint8_t' - suffix = '8unorm' + channel = Channel(UNSIGNED, True, 8) + native_type = 'uint8_t' + suffix = '8unorm' - for format in formats: - if not is_format_hand_written(format): generate_format_unpack(format, channel, native_type, suffix) generate_format_pack(format, channel, native_type, suffix) - -- 2.30.2