util: Fix typo in earlier commit.
authorJosé Fonseca <jfonseca@vmware.com>
Fri, 9 Apr 2010 15:56:18 +0000 (16:56 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 9 Apr 2010 15:56:18 +0000 (16:56 +0100)
src/gallium/auxiliary/util/u_format_pack.py

index a6070934f045249f2115cb248c7d0731ecdd17ec..0c1bbc84c172a5dba89586dd06a74d7931b3eec3 100644 (file)
@@ -303,7 +303,7 @@ def conversion_expr(src_channel,
     # Done before clamping since these functions already take care of that
     if src_type == UNSIGNED and src_norm and src_size == 8 and dst_channel.type == FLOAT and dst_channel.size == 32:
         return 'ubyte_to_float(%s)' % value
-    if src_type == FLOAT and src_type == 32 and dst_channel.type == UNSIGNED and dst_channel.norm and dst_channel.size == 8:
+    if src_type == FLOAT and src_size == 32 and dst_channel.type == UNSIGNED and dst_channel.norm and dst_channel.size == 8:
         return 'float_to_ubyte(%s)' % value
 
     if clamp: