<br><br><div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">2. What's the practical difference between QImage::Format_ARGB32_Premultiplied
<br>and QImage::Format_ARGB32? I see both are used to successfully load svgs -<br>first in katomic,kmahjongg,kreversi, second in kpat. What's better to use?<br>Why?</blockquote><div><br>i found a Zack answer ;)<br><pre>&gt; For QImage, I was not sure whether to use ARGB32 or
<br>&gt; ARGB32_PreMultiplied. The compat method setAlphaBuffer sets ARGB32<br>&gt; (the docs don't say so, but the code does), so I used that.<br><br>&quot;It depends what you need. If you need a pure argb32 format then you 
<br>picked correctly. <br>Premultiplied is going to be faster (on X11 even more so because on <br>XRender we use premultiplied colors). So if you can (meaning if the <br>underlying code can deal with premultplied alpha) try to use 
<br>premultiplied argb32, it's going to be quite a bit faster.<br><br>Zack&quot;</pre><br></div></div><br>