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

Side by Side Diff: tests/GpuLayerCacheTest.cpp

Issue 1885623002: Make more unit tests run on Vulkan (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright 2014 Google Inc. 2 * Copyright 2014 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 100
101 cache->addUse(layer); 101 cache->addUse(layer);
102 102
103 REPORTER_ASSERT(reporter, 1 == TestingAccess::Uses(layer)); 103 REPORTER_ASSERT(reporter, 1 == TestingAccess::Uses(layer));
104 } 104 }
105 105
106 // This test case exercises the public API of the GrLayerCache class. 106 // This test case exercises the public API of the GrLayerCache class.
107 // In particular it checks its interaction with the resource cache (w.r.t. 107 // In particular it checks its interaction with the resource cache (w.r.t.
108 // locking & unlocking textures). 108 // locking & unlocking textures).
109 // TODO: need to add checks on VRAM usage! 109 // TODO: need to add checks on VRAM usage!
110 DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS(GpuLayerCache, reporter, ctxInfo) { 110 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GpuLayerCache, reporter, ctxInfo) {
111 // Add one more layer than can fit in the atlas 111 // Add one more layer than can fit in the atlas
112 static const int kInitialNumLayers = TestingAccess::NumPlots() + 1; 112 static const int kInitialNumLayers = TestingAccess::NumPlots() + 1;
113 113
114 #if GR_CACHE_STATS 114 #if GR_CACHE_STATS
115 GrResourceCache::Stats stats; 115 GrResourceCache::Stats stats;
116 #endif 116 #endif
117 117
118 sk_sp<SkPicture> picture; 118 sk_sp<SkPicture> picture;
119 119
120 { 120 {
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 cache.end(); 360 cache.end();
361 361
362 #if GR_CACHE_STATS 362 #if GR_CACHE_STATS
363 resourceCache->getStats(&stats); 363 resourceCache->getStats(&stats);
364 REPORTER_ASSERT(reporter, 2 == stats.fTotal); 364 REPORTER_ASSERT(reporter, 2 == stats.fTotal);
365 REPORTER_ASSERT(reporter, 2 == stats.fNumPurgeable); 365 REPORTER_ASSERT(reporter, 2 == stats.fNumPurgeable);
366 #endif 366 #endif
367 } 367 }
368 368
369 #endif 369 #endif
OLDNEW
« no previous file with comments | « tests/FloatingPointTextureTest.cpp ('k') | tests/ImageFilterCacheTest.cpp » ('j') | tests/Test.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698