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

Unified Diff: tests/GrContextFactoryTest.cpp

Issue 1856703002: Revert of Rename enums in GrContextFactory to remove "GL" (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/GrContextAbandonTest.cpp ('k') | tests/GrPorterDuffTest.cpp » ('j') | 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 6e51b2fda34bdaa1a5022120a4391314f26f90ff..bd1888380a13c96348782796d9c990e3890900bf 100644
--- a/tests/GrContextFactoryTest.cpp
+++ b/tests/GrContextFactoryTest.cpp
@@ -20,10 +20,10 @@
// or the context creation fails.
GrContextFactory testFactory;
// Test that if NVPR is possible, caps are in sync.
- for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) {
- GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::ContextType>(i);
- GrContext* context = testFactory.get(ctxType,
- GrContextFactory::kEnableNVPR_ContextOptions);
+ for (int i = 0; i < GrContextFactory::kGLContextTypeCnt; ++i) {
+ GrContextFactory::GLContextType glCtxType = static_cast<GrContextFactory::GLContextType>(i);
+ GrContext* context = testFactory.get(glCtxType,
+ GrContextFactory::kEnableNVPR_GLContextOptions);
if (!context) {
continue;
}
@@ -37,9 +37,9 @@
// Test that if NVPR is not requested, the context never has path rendering support.
GrContextFactory testFactory;
- for (int i = 0; i <= GrContextFactory::kLastContextType; ++i) {
- GrContextFactory::ContextType ctxType = (GrContextFactory::ContextType)i;
- GrContext* context = testFactory.get(ctxType);
+ for (int i = 0; i <= GrContextFactory::kLastGLContextType; ++i) {
+ GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContextType)i;
+ GrContext* context = testFactory.get(glCtxType);
if (context) {
REPORTER_ASSERT(
reporter,
@@ -54,15 +54,16 @@
// created without that flag would not have had sRGB support.
GrContextFactory testFactory;
// Test that if sRGB is requested, caps are in sync.
- for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) {
- GrContextFactory::ContextType ctxType = static_cast<GrContextFactory::ContextType>(i);
+ for (int i = 0; i < GrContextFactory::kGLContextTypeCnt; ++i) {
+ GrContextFactory::GLContextType glCtxType = static_cast<GrContextFactory::GLContextType>(i);
GrContext* context =
- testFactory.get(ctxType, GrContextFactory::kRequireSRGBSupport_ContextOptions);
+ testFactory.get(glCtxType,
+ GrContextFactory::kRequireSRGBSupport_GLContextOptions);
if (context) {
REPORTER_ASSERT(reporter, context->caps()->srgbSupport());
} else {
- context = testFactory.get(ctxType);
+ context = testFactory.get(glCtxType);
if (context) {
REPORTER_ASSERT(reporter, !context->caps()->srgbSupport());
}
@@ -72,9 +73,10 @@
DEF_GPUTEST(GrContextFactory_abandon, reporter, /*factory*/) {
GrContextFactory testFactory;
- for (int i = 0; i < GrContextFactory::kContextTypeCnt; ++i) {
- GrContextFactory::ContextType ctxType = (GrContextFactory::ContextType) i;
- GrContextFactory::ContextInfo info1 = testFactory.getContextInfo(ctxType);
+ for (int i = 0; i < GrContextFactory::kGLContextTypeCnt; ++i) {
+ GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContextType) i;
+ GrContextFactory::ContextInfo info1 =
+ testFactory.getContextInfo(glCtxType);
if (!info1.fGrContext) {
continue;
}
@@ -85,7 +87,7 @@
// Test that we get different context after abandon.
GrContextFactory::ContextInfo info2 =
- testFactory.getContextInfo(ctxType);
+ testFactory.getContextInfo(glCtxType);
REPORTER_ASSERT(reporter, info2.fGrContext);
REPORTER_ASSERT(reporter, info2.fGLContext);
REPORTER_ASSERT(reporter, info1.fGrContext != info2.fGrContext);
« no previous file with comments | « tests/GrContextAbandonTest.cpp ('k') | tests/GrPorterDuffTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698