Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
Properly minimize the rasterized layers #5815
Conversation
mdboom
added this to the
Critical bugfix release (1.5.1)
milestone
Jan 8, 2016
mdboom
added the
needs_review
label
Jan 8, 2016
|
@tacaswell: Your discretion whether to put this on 1.5.1rc or 1.5.2... |
WeatherGod
and 1 other
commented on an outdated diff
Jan 8, 2016
| @@ -212,8 +212,8 @@ agg::rect_i RendererAgg::get_content_extents() | ||
| r.x1 = std::max(0, r.x1 - 1); | ||
| r.y1 = std::max(0, r.y1 - 1); | ||
| - r.x2 = std::max(r.x2 + 1, (int)width); | ||
| - r.y2 = std::max(r.y2 + 1, (int)height); | ||
| + r.x2 = std::min(r.x2 + 1, (int)width); | ||
| + r.y2 = std::min(r.y2 + 1, (int)height); |
WeatherGod
Member
|
|
hmm, the failure on 2.7 looks spurious, but it isn't one of the usual suspects (one of the stix tests). Restarted anyway. |
|
And Travis failed again, but on a completely different test this time. Restarted. |
|
Hmm, no failures in the Travis tests. Weird, but ok... waiting for appveyor. |
|
I think this should go into 1.5.1 since it fixes a pretty bad error, but I'll let @tacaswell decide if it is worth putting out a rc2 for. |
|
|
|
On 2016/01/08 9:45 AM, Thomas A Caswell wrote:
Agreed! |
|
appveyor failed with weird errors. I don't think I have the ability to restart them. |
tacaswell
added a commit
that referenced
this pull request
Jan 9, 2016
|
|
tacaswell |
90455d8
|
tacaswell
merged commit 90455d8
into matplotlib:master
Jan 9, 2016
tacaswell
removed the
needs_review
label
Jan 9, 2016
tacaswell
added a commit
to tacaswell/matplotlib
that referenced
this pull request
Jan 9, 2016
|
|
tacaswell |
b249ff0
|
tacaswell
referenced
this pull request
Jan 9, 2016
Merged
Merge pull request #5815 from mdboom/fix-minimizing-raster-layer #5817
tacaswell
added a commit
to tacaswell/matplotlib
that referenced
this pull request
Jan 9, 2016
|
|
tacaswell |
1acc296
|
tacaswell
added a commit
that referenced
this pull request
Jan 10, 2016
|
|
tacaswell |
ac8cfb3
|
|
Is this before or after #5834 went in? Which formats are failing? If it is all svg, part of the issue may be the rasterization via inkscape. |
|
The latest commit from #5834 (and the whole v1.5.x branch) seems to work just fine. |
|
Oh, we need to merge 1.5.x back into master. On Tue, Jan 12, 2016 at 5:42 PM Thomas Spura notifications@github.com
|

mdboom commentedJan 8, 2016
Fixes #5814.