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

Unified Diff: tests/GrContextAbandonTest.cpp

Issue 1852733002: Add GrContext::releaseAndAbandonContext() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix no-gpu build, add null check, add unit test" Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/gl/GrGLPathRendering.cpp ('k') | tools/flags/SkCommonFlags.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/GrContextAbandonTest.cpp
diff --git a/tests/GrContextAbandonTest.cpp b/tests/GrContextAbandonTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..c62973f4da27215ab10da8dc1f309cc1f28ce7db
--- /dev/null
+++ b/tests/GrContextAbandonTest.cpp
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "SkTypes.h"
+
+#if SK_SUPPORT_GPU
+
+#include "GrContextFactory.h"
+#include "Test.h"
+
+using sk_gpu_test::GrContextFactory;
+
+DEF_GPUTEST(GrContext_abandonContext, reporter, /*factory*/) {
+ for (int testType = 0; testType < 6; ++testType) {
+ for (int i = 0; i < GrContextFactory::kGLContextTypeCnt; ++i) {
+ GrContextFactory testFactory;
+ GrContextFactory::GLContextType ctxType = (GrContextFactory::GLContextType) i;
+ GrContextFactory::ContextInfo info = testFactory.getContextInfo(ctxType);
+ if (GrContext* context = info.fGrContext) {
+ switch (testType) {
+ case 0:
+ context->abandonContext();
+ break;
+ case 1:
+ context->releaseResourcesAndAbandonContext();
+ break;
+ case 2:
+ context->abandonContext();
+ context->abandonContext();
+ break;
+ case 3:
+ context->abandonContext();
+ context->releaseResourcesAndAbandonContext();
+ break;
+ case 4:
+ context->releaseResourcesAndAbandonContext();
+ context->abandonContext();
+ break;
+ case 5:
+ context->releaseResourcesAndAbandonContext();
+ context->releaseResourcesAndAbandonContext();
+ break;
+ }
+ }
+ }
+ }
+}
+
+#endif
« no previous file with comments | « src/gpu/gl/GrGLPathRendering.cpp ('k') | tools/flags/SkCommonFlags.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698