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

Side by Side Diff: tests/SkLiteDLTest.cpp

Issue 2248693004: SkLiteDL: remove freelisting, add reset() and SKLITEDL_PAGE knob. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « src/core/SkLiteDL.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "Test.h" 8 #include "Test.h"
9 #include "SkLiteDL.h" 9 #include "SkLiteDL.h"
10 #include "SkLiteRecorder.h" 10 #include "SkLiteRecorder.h"
11 11
12 #if 0 // This test doesn't make sense when run in a threaded environment. It tests global state.
13 DEF_TEST(SkLiteDL_freelisting, r) {
14 // TODO: byte and count limit tests
15 sk_sp<SkLiteDL> sp1 = SkLiteDL::New({1,1,10,10}),
16 sp2 = SkLiteDL::New({2,2,20,20});
17
18 SkLiteDL* p1 = sp1.get();
19 SkLiteDL* p2 = sp2.get();
20 REPORTER_ASSERT(r, p1 != p2);
21 REPORTER_ASSERT(r, p1->getBounds().left() == 1);
22 REPORTER_ASSERT(r, p2->getBounds().left() == 2);
23
24 sp2.reset();
25
26 sk_sp<SkLiteDL> sp3 = SkLiteDL::New({3,3,30,30});
27 SkLiteDL* p3 = sp3.get();
28 REPORTER_ASSERT(r, p1 != p3);
29 REPORTER_ASSERT(r, p2 == p3);
30 REPORTER_ASSERT(r, p1->getBounds().left() == 1);
31 REPORTER_ASSERT(r, p3->getBounds().left() == 3);
32
33 sp3.reset();
34 sp1.reset();
35
36 sk_sp<SkLiteDL> sp4 = SkLiteDL::New({4,4,40,40});
37 SkLiteDL* p4 = sp4.get();
38 REPORTER_ASSERT(r, p4 == p1); // Checks that we operate in stack order. Ni ce, not essential.
39 REPORTER_ASSERT(r, p4->getBounds().left() == 4);
40 }
41 #endif
42
43 DEF_TEST(SkLiteDL_basics, r) { 12 DEF_TEST(SkLiteDL_basics, r) {
44 sk_sp<SkLiteDL> p { SkLiteDL::New({2,2,3,3}) }; 13 sk_sp<SkLiteDL> p { SkLiteDL::New({2,2,3,3}) };
45 14
46 p->save(); 15 p->save();
47 p->clipRect(SkRect{2,3,4,5}, SkRegion::kIntersect_Op, true); 16 p->clipRect(SkRect{2,3,4,5}, SkRegion::kIntersect_Op, true);
48 p->drawRect(SkRect{0,0,9,9}, SkPaint{}); 17 p->drawRect(SkRect{0,0,9,9}, SkPaint{});
49 p->restore(); 18 p->restore();
50 } 19 }
51 20
52 DEF_TEST(SkLiteRecorder, r) { 21 DEF_TEST(SkLiteRecorder, r) {
53 sk_sp<SkLiteDL> p { SkLiteDL::New({2,2,3,3}) }; 22 sk_sp<SkLiteDL> p { SkLiteDL::New({2,2,3,3}) };
54 23
55 SkLiteRecorder rec; 24 SkLiteRecorder rec;
56 SkCanvas* c = &rec; 25 SkCanvas* c = &rec;
57 26
58 rec.reset(p.get()); 27 rec.reset(p.get());
59 28
60 c->save(); 29 c->save();
61 c->clipRect(SkRect{2,3,4,5}, SkRegion::kIntersect_Op, true); 30 c->clipRect(SkRect{2,3,4,5}, SkRegion::kIntersect_Op, true);
62 c->drawRect(SkRect{0,0,9,9}, SkPaint{}); 31 c->drawRect(SkRect{0,0,9,9}, SkPaint{});
63 c->restore(); 32 c->restore();
64 } 33 }
OLDNEW
« no previous file with comments | « src/core/SkLiteDL.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698