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

Side by Side Diff: tests/ResourceCacheTest.cpp

Issue 705413002: Remove GrResourceKey from GrResourceCache (Closed) Base URL: https://skia.googlesource.com/skia.git@content
Patch Set: update Created 6 years, 1 month 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
« src/gpu/GrResourceCache.cpp ('K') | « src/gpu/GrResourceCache2.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 2013 Google Inc. 2 * Copyright 2013 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 #if SK_SUPPORT_GPU 8 #if SK_SUPPORT_GPU
9 9
10 #include "GrContext.h" 10 #include "GrContext.h"
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 REPORTER_ASSERT(reporter, cache2->hasContentKey(key2)); 264 REPORTER_ASSERT(reporter, cache2->hasContentKey(key2));
265 REPORTER_ASSERT(reporter, cache2->hasContentKey(key3)); 265 REPORTER_ASSERT(reporter, cache2->hasContentKey(key3));
266 266
267 // Invalidate two of the three, they should be purged and destroyed. 267 // Invalidate two of the three, they should be purged and destroyed.
268 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive()); 268 REPORTER_ASSERT(reporter, 3 == TestResource::NumAlive());
269 const GrResourceInvalidatedMessage msg1 = { key1 }; 269 const GrResourceInvalidatedMessage msg1 = { key1 };
270 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg1); 270 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg1);
271 const GrResourceInvalidatedMessage msg2 = { key2 }; 271 const GrResourceInvalidatedMessage msg2 = { key2 };
272 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg2); 272 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg2);
273 cache->purgeAsNeeded(); 273 cache->purgeAsNeeded();
274 #if 0 // Disabled until reimplemented in GrResourceCache2.
274 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive()); 275 REPORTER_ASSERT(reporter, 1 == TestResource::NumAlive());
275 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key1)); 276 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key1));
276 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key2)); 277 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key2));
277 REPORTER_ASSERT(reporter, cache2->hasContentKey(key3)); 278 REPORTER_ASSERT(reporter, cache2->hasContentKey(key3));
279 #endif
278 280
279 // Invalidate the third. 281 // Invalidate the third.
280 const GrResourceInvalidatedMessage msg3 = { key3 }; 282 const GrResourceInvalidatedMessage msg3 = { key3 };
281 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg3); 283 SkMessageBus<GrResourceInvalidatedMessage>::Post(msg3);
282 cache->purgeAsNeeded(); 284 cache->purgeAsNeeded();
285 #if 0 // Disabled until reimplemented in GrResourceCache2.
283 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive()); 286 REPORTER_ASSERT(reporter, 0 == TestResource::NumAlive());
284 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key3)); 287 REPORTER_ASSERT(reporter, !cache2->hasContentKey(key3));
288 #endif
285 } 289 }
286 290
287 static void test_cache_delete_on_destruction(skiatest::Reporter* reporter) { 291 static void test_cache_delete_on_destruction(skiatest::Reporter* reporter) {
288 SkAutoTUnref<GrContext> context(GrContext::CreateMockContext()); 292 SkAutoTUnref<GrContext> context(GrContext::CreateMockContext());
289 REPORTER_ASSERT(reporter, SkToBool(context)); 293 REPORTER_ASSERT(reporter, SkToBool(context));
290 if (NULL == context) { 294 if (NULL == context) {
291 return; 295 return;
292 } 296 }
293 297
294 GrCacheID::Domain domain = GrCacheID::GenerateDomain(); 298 GrCacheID::Domain domain = GrCacheID::GenerateDomain();
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 456
453 // The below tests create their own mock contexts. 457 // The below tests create their own mock contexts.
454 test_duplicate_content_key(reporter); 458 test_duplicate_content_key(reporter);
455 test_duplicate_scratch_key(reporter); 459 test_duplicate_scratch_key(reporter);
456 test_purge_invalidated(reporter); 460 test_purge_invalidated(reporter);
457 test_cache_delete_on_destruction(reporter); 461 test_cache_delete_on_destruction(reporter);
458 test_resource_size_changed(reporter); 462 test_resource_size_changed(reporter);
459 } 463 }
460 464
461 #endif 465 #endif
OLDNEW
« src/gpu/GrResourceCache.cpp ('K') | « src/gpu/GrResourceCache2.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698