aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/gfx/render_task.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-08-22 22:49:32 +0100
committerSimon Sapin <simon.sapin@exyr.org>2014-08-29 17:50:56 +0100
commit80704aeabd1c8882760f8efc49b8bc5abca91a60 (patch)
tree1010303f145632284fac74720a05aeaa7736cacb /src/components/gfx/render_task.rs
parentdb80b76d0a3e21e49630725376aaf3781730f489 (diff)
downloadservo-80704aeabd1c8882760f8efc49b8bc5abca91a60.tar.gz
servo-80704aeabd1c8882760f8efc49b8bc5abca91a60.zip
Implement sideways text.
Diffstat (limited to 'src/components/gfx/render_task.rs')
-rw-r--r--src/components/gfx/render_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/gfx/render_task.rs b/src/components/gfx/render_task.rs
index 710a08bff9e..2d7b8b5e2d7 100644
--- a/src/components/gfx/render_task.rs
+++ b/src/components/gfx/render_task.rs
@@ -352,7 +352,7 @@ impl<C:RenderListener + Send> RenderTask<C> {
// Draw the display list.
profile(time::RenderingDrawingCategory, self.time_profiler_chan.clone(), || {
- display_list.draw_into_context(&mut ctx);
+ display_list.draw_into_context(&mut ctx, &matrix);
ctx.draw_target.flush();
});
}