Skip to content

Commit

Permalink
Snap to screen pixels instead of px
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget committed Oct 8, 2015
1 parent 409fbaf commit 0c4ca2b
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 4 deletions.
10 changes: 6 additions & 4 deletions components/gfx/display_list/mod.rs
Expand Up @@ -279,6 +279,8 @@ impl DisplayList {
layer_kind: paint_context.layer_kind,
};

let pixels_per_px = paint_subcontext.screen_pixels_per_px();

if opts::get().dump_display_list_optimized {
self.print(format!("Optimized display list. Tile bounds: {:?}",
paint_context.page_rect));
Expand Down Expand Up @@ -306,11 +308,11 @@ impl DisplayList {
transform.translate(positioned_kid.bounds
.origin
.x
.to_nearest_px() as AzFloat,
.to_nearest_pixel(pixels_per_px) as AzFloat,
positioned_kid.bounds
.origin
.y
.to_nearest_px() as AzFloat,
.to_nearest_pixel(pixels_per_px) as AzFloat,
0.0);
positioned_kid.optimize_and_draw_into_context(&mut paint_subcontext,
&new_transform,
Expand Down Expand Up @@ -348,11 +350,11 @@ impl DisplayList {
transform.translate(positioned_kid.bounds
.origin
.x
.to_nearest_px() as AzFloat,
.to_nearest_pixel(pixels_per_px) as AzFloat,
positioned_kid.bounds
.origin
.y
.to_nearest_px() as AzFloat,
.to_nearest_pixel(pixels_per_px) as AzFloat,
0.0);
positioned_kid.optimize_and_draw_into_context(&mut paint_subcontext,
&new_transform,
Expand Down
2 changes: 2 additions & 0 deletions tests/ref/basic.list
Expand Up @@ -292,6 +292,8 @@ flaky_cpu == linebreak_simple_a.html linebreak_simple_b.html
== percentage_height_root.html percentage_height_root_ref.html
== percentage_width_inline_block_a.html percentage_width_inline_block_ref.html
device-pixel-ratio=2 != pixel_snapping_border_a.html pixel_snapping_border_ref.html
# resolution=300x300 so it doesn't create a giant window, making the test flaky
resolution=300x300,device-pixel-ratio=2 != pixel_snapping_position_a.html pixel_snapping_position_ref.html
== png_rgba_colorspace_a.html png_rgba_colorspace_b.html
== position_abs_cb_with_non_cb_kid_a.html position_abs_cb_with_non_cb_kid_b.html
== position_abs_height_width_a.html position_abs_height_width_b.html
Expand Down
20 changes: 20 additions & 0 deletions tests/ref/pixel_snapping_position_a.html
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pixel snapping position test</title>
<style>
div {
position: absolute;
height: 100px;
width: 100px;
top: 11.5px;
background: red;
transform: scale(1);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
19 changes: 19 additions & 0 deletions tests/ref/pixel_snapping_position_ref.html
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pixel snapping position reference</title>
<style>
div {
position: absolute;
height: 100px;
width: 100px;
top: 12px;
background: red;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

0 comments on commit 0c4ca2b

Please sign in to comment.