util/format: initialize non-important components to 0
[mesa.git] / src / util / format / u_format_pack.py
index 3307027bbbd3c836ce427b7bd14fc83ffcd72b09..15c6be72e158de910b6e117c565039dfa5388497 100644 (file)
@@ -593,7 +593,7 @@ def generate_pack_kernel(format, src_channel, src_native_type):
     def pack_into_struct(channels, swizzles):
         inv_swizzle = inv_swizzles(swizzles)
 
-        print('         struct util_format_%s pixel;' % format.short_name())
+        print('         struct util_format_%s pixel = {0};' % format.short_name())
     
         for i in range(4):
             dst_channel = channels[i]