<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body><span class="vcard"><a class="email" href="mailto:sixtysix@inwind.it" title="Massimo <sixtysix@inwind.it>"> <span class="fn">Massimo</span></a>
</span> changed
<a class="bz_bug_link
bz_status_REOPENED "
title="REOPENED - _cairo_pattern_get_extents : allow for a floating one pixel rounded difference"
href="https://bugs.freedesktop.org/show_bug.cgi?id=88663">bug 88663</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">Status</td>
<td>RESOLVED
</td>
<td>REOPENED
</td>
</tr>
<tr>
<td style="text-align:right;">Resolution</td>
<td>FIXED
</td>
<td>---
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_REOPENED "
title="REOPENED - _cairo_pattern_get_extents : allow for a floating one pixel rounded difference"
href="https://bugs.freedesktop.org/show_bug.cgi?id=88663#c6">Comment # 6</a>
on <a class="bz_bug_link
bz_status_REOPENED "
title="REOPENED - _cairo_pattern_get_extents : allow for a floating one pixel rounded difference"
href="https://bugs.freedesktop.org/show_bug.cgi?id=88663">bug 88663</a>
from <span class="vcard"><a class="email" href="mailto:sixtysix@inwind.it" title="Massimo <sixtysix@inwind.it>"> <span class="fn">Massimo</span></a>
</span></b>
<pre>- ix1 = _cairo_lround (x1);
+ ix1 = x1;
if (x2 > CAIRO_RECT_INT_MAX)
ix2 = CAIRO_RECT_INT_MAX;
else
- ix2 = _cairo_lround (x2);
- extents->x = ix1; extents->width = ix2 - ix1;
+ ix2 = x2;
+ extents->x = ix1; extents->width = _cairo_lround(ix2 - ix1);
I think that at least extents->x (and y) should still be rounded</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the QA Contact for the bug.</li>
</ul>
</body>
</html>