diff options
Diffstat (limited to 'components/gfx/paint_task.rs')
-rw-r--r-- | components/gfx/paint_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/gfx/paint_task.rs b/components/gfx/paint_task.rs index a59be2a54b5..fd7575a14fe 100644 --- a/components/gfx/paint_task.rs +++ b/components/gfx/paint_task.rs @@ -622,7 +622,7 @@ impl WorkerThread { stacking_context.overflow.origin.y.to_f32_px())); // Apply the translation to paint the tile we want. - let matrix: Matrix4 = identity(); + let matrix: Matrix4<AzFloat> = identity(); let matrix = matrix.scale(scale as AzFloat, scale as AzFloat, 1.0); let matrix = matrix.translate(-tile_bounds.origin.x as AzFloat, -tile_bounds.origin.y as AzFloat, |