aboutsummaryrefslogtreecommitdiff
path: root/src/render.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/render.rs')
-rw-r--r--src/render.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render.rs b/src/render.rs
index c8a75da..9c9e924 100644
--- a/src/render.rs
+++ b/src/render.rs
@@ -41,8 +41,8 @@ impl RenderTask {
pub fn render(&mut self, ctx: &RenderContext, sampler: &mut dyn Sampler) {
let b = self.tile.bounds.clone();
- for x in b.min.x .. b.max.x {
- for y in b.min.y .. b.max.y {
+ for y in b.min.y .. b.max.y {
+ for x in b.min.x .. b.max.x {
self.render_at(ctx, x, y, sampler);
}
}