Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: webkit/plugins/ppapi/ppb_graphics_2d_impl_unittest.cc

Issue 10704198: Scale to DIPs in ppb_graphics2d_impl for proper invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix a nit Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/plugins/ppapi/ppb_graphics_2d_impl.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/basictypes.h"
6 #include "testing/gtest/include/gtest/gtest.h"
7 #include "ui/gfx/point.h"
8 #include "ui/gfx/rect.h"
9 #include "webkit/plugins/ppapi/ppb_graphics_2d_impl.h"
10
11 TEST(PpapiGraphics2DImplTest, ConvertToLogicalPixels) {
12 static const struct {
13 int x1;
14 int y1;
15 int w1;
16 int h1;
17 int x2;
18 int y2;
19 int w2;
20 int h2;
21 int dx1;
22 int dy1;
23 int dx2;
24 int dy2;
25 float scale;
26 bool result;
27 } tests[] = {
28 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1.0, true },
29 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2.0, true },
30 { 0, 0, 4, 4, 0, 0, 2, 2, 0, 0, 0, 0, 0.5, true },
31 { 1, 1, 4, 4, 0, 0, 3, 3, 0, 0, 0, 0, 0.5, false },
32 { 53, 75, 100, 100, 53, 75, 100, 100, 0, 0, 0, 0, 1.0, true },
33 { 53, 75, 100, 100, 106, 150, 200, 200, 0, 0, 0, 0, 2.0, true },
34 { 53, 75, 100, 100, 26, 37, 51, 51, 0, 0, 0, 0, 0.5, false },
35 { 53, 74, 100, 100, 26, 37, 51, 50, 0, 0, 0, 0, 0.5, false },
36 { -1, -1, 100, 100, -1, -1, 51, 51, 0, 0, 0, 0, 0.5, false },
37 { -2, -2, 100, 100, -1, -1, 50, 50, 4, -4, 2, -2, 0.5, true },
38 { -101, -100, 50, 50, -51, -50, 26, 25, 0, 0, 0, 0, 0.5, false },
39 { 10, 10, 20, 20, 5, 5, 10, 10, 0, 0, 0, 0, 0.5, true },
40 // Cannot scroll due to partial coverage on sides
41 { 11, 10, 20, 20, 5, 5, 11, 10, 0, 0, 0, 0, 0.5, false },
42 // Can scroll since backing store is actually smaller/scaling up
43 { 11, 20, 100, 100, 22, 40, 200, 200, 7, 3, 14, 6, 2.0, true },
44 // Can scroll due to delta and bounds being aligned
45 { 10, 10, 20, 20, 5, 5, 10, 10, 6, 4, 3, 2, 0.5, true },
46 // Cannot scroll due to dx
47 { 10, 10, 20, 20, 5, 5, 10, 10, 5, 4, 2, 2, 0.5, false },
48 // Cannot scroll due to dy
49 { 10, 10, 20, 20, 5, 5, 10, 10, 6, 3, 3, 1, 0.5, false },
50 // Cannot scroll due to top
51 { 10, 11, 20, 20, 5, 5, 10, 11, 6, 4, 3, 2, 0.5, false },
52 // Cannot scroll due to left
53 { 7, 10, 20, 20, 3, 5, 11, 10, 6, 4, 3, 2, 0.5, false },
54 // Cannot scroll due to width
55 { 10, 10, 21, 20, 5, 5, 11, 10, 6, 4, 3, 2, 0.5, false },
56 // Cannot scroll due to height
57 { 10, 10, 20, 51, 5, 5, 10, 26, 6, 4, 3, 2, 0.5, false },
58 // Check negative scroll deltas
59 { 10, 10, 20, 20, 5, 5, 10, 10, -6, -4, -3, -2, 0.5, true },
60 { 10, 10, 20, 20, 5, 5, 10, 10, -6, -3, -3, -1, 0.5, false },
61 };
62 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(tests); ++i) {
63 gfx::Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
64 gfx::Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
65 gfx::Rect orig = r1;
66 gfx::Point delta(tests[i].dx1, tests[i].dy1);
67 bool res = webkit::ppapi::PPB_Graphics2D_Impl::ConvertToLogicalPixels(
68 tests[i].scale, &r1, &delta);
69 EXPECT_TRUE(r1.Equals(r2));
70 EXPECT_EQ(res, tests[i].result);
71 if (res) {
72 EXPECT_EQ(delta, gfx::Point(tests[i].dx2, tests[i].dy2));
73 }
74 // Reverse the scale and ensure all the original pixels are still inside
75 // the result.
76 webkit::ppapi::PPB_Graphics2D_Impl::ConvertToLogicalPixels(
77 1.0f / tests[i].scale, &r1, NULL);
78 EXPECT_TRUE(r1.Contains(orig));
79 }
80 }
OLDNEW
« no previous file with comments | « webkit/plugins/ppapi/ppb_graphics_2d_impl.cc ('k') | webkit/tools/test_shell/test_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698