diff options
Diffstat (limited to 'src/components/gfx/render_task.rs')
-rw-r--r-- | src/components/gfx/render_task.rs | 2 |
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(); }); } |