Skip to content

Commit

Permalink
Remove gunk between tiles after zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
eschweic committed Aug 15, 2013
1 parent 034536e commit 5500ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/gfx/render_context.rs
Expand Up @@ -102,8 +102,8 @@ impl<'self> RenderContext<'self> {
let pattern = ColorPattern(Color(1.0, 1.0, 1.0, 1.0));
let rect = Rect(Point2D(self.canvas.rect.origin.x as AzFloat,
self.canvas.rect.origin.y as AzFloat),
Size2D(self.canvas.rect.size.width as AzFloat,
self.canvas.rect.size.height as AzFloat));
Size2D(self.canvas.screen_pos.size.width as AzFloat,
self.canvas.screen_pos.size.height as AzFloat));
self.canvas.draw_target.make_current();
self.canvas.draw_target.fill_rect(&rect, &pattern);
}
Expand Down

5 comments on commit 5500ff3

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from metajack
at eschweic@5500ff3

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging eschweic/servo/tile-grunge = 5500ff3 into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eschweic/servo/tile-grunge = 5500ff3 merged ok, testing candidate = 6a07082

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 6a07082

Please sign in to comment.