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

Side by Side Diff: tests/DiscardableMemoryPool.cpp

Issue 103033002: Big Cleanup: SkBitmapFactory, SkLazyPixelRef, SkImageCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase one last time Created 7 years 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 | « tests/CachedDecodingPixelRefTest.cpp ('k') | tests/DrawBitmapRectTest.cpp » ('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 /*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7 #include "SkDiscardableMemoryPool.h"
8
9 #include "Test.h"
10 #include "TestClassDef.h"
11
12 DEF_TEST(DiscardableMemoryPool, reporter) {
13 SkAutoTUnref<SkDiscardableMemoryPool> pool(
14 SkNEW_ARGS(SkDiscardableMemoryPool, (1, NULL)));
15 pool->setRAMBudget(3);
16 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
17
18 SkAutoTDelete<SkDiscardableMemory> dm1(pool->create(100));
19 REPORTER_ASSERT(reporter, dm1->data() != NULL);
20 REPORTER_ASSERT(reporter, 100 == pool->getRAMUsed());
21 dm1->unlock();
22 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
23 REPORTER_ASSERT(reporter, !dm1->lock());
24
25
26 SkAutoTDelete<SkDiscardableMemory> dm2(pool->create(200));
27 REPORTER_ASSERT(reporter, 200 == pool->getRAMUsed());
28 pool->setRAMBudget(400);
29 dm2->unlock();
30 REPORTER_ASSERT(reporter, 200 == pool->getRAMUsed());
31 REPORTER_ASSERT(reporter, dm2->lock());
32 dm2->unlock();
33 pool->dumpPool();
34 REPORTER_ASSERT(reporter, !dm2->lock());
35 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
36 }
37
OLDNEW
« no previous file with comments | « tests/CachedDecodingPixelRefTest.cpp ('k') | tests/DrawBitmapRectTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698