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

Unified Diff: tests/GrContextFactoryTest.cpp

Issue 1455093003: Remove GrContextFactory::getGLContext (Closed) Base URL: https://skia.googlesource.com/skia.git@commandbuffer-as-api-01-gpu-test-context-support
Patch Set: rebase Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/GLInterfaceValidationTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/GrContextFactoryTest.cpp
diff --git a/tests/GrContextFactoryTest.cpp b/tests/GrContextFactoryTest.cpp
index 787f16c983c02b90c873c8ea70f56155e8f5df37..79209c719fc2704466eeb1a2b5989971498145da 100644
--- a/tests/GrContextFactoryTest.cpp
+++ b/tests/GrContextFactoryTest.cpp
@@ -12,23 +12,6 @@
#include "GrContextFactory.h"
#include "Test.h"
-DEF_GPUTEST(GrContextFactory, reporter, factory) {
- // Reset in case some other test has been using it first.
- factory->destroyContexts();
-
- // Before we ask for a context, we expect the GL context to not be there.
- REPORTER_ASSERT(reporter,
- nullptr == factory->getGLContext(GrContextFactory::kNull_GLContextType));
-
- // After we ask for a context, we expect that the GL context to be there.
- factory->get(GrContextFactory::kNull_GLContextType);
- REPORTER_ASSERT(reporter,
- factory->getGLContext(GrContextFactory::kNull_GLContextType) != nullptr);
-
- // If we did not ask for a context with the particular GL context, we would
- // expect the particular GL context to not be there.
- REPORTER_ASSERT(reporter,
- nullptr == factory->getGLContext(GrContextFactory::kDebug_GLContextType));
-}
+// TODO: test GrContextFactory.
#endif
« no previous file with comments | « tests/GLInterfaceValidationTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698