diff options
author | Brian Salomon <bsalomon@google.com> | 2017-07-17 11:31:31 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2017-07-17 17:09:08 +0000 |
commit | ce5ee602ed19b8493bf4dd1654d29486088bad63 (patch) | |
tree | 8b658834cd37a7ad0e400f6bb708f056956c024e /tests | |
parent | 1c8f73d9b55746b9139bfe734f7b016f0bdb0259 (diff) |
Add support for GL 565 and 4444 configs to test tools
Change-Id: I395e3387df44cf5370fef6ab73db73228225622f
Reviewed-on: https://skia-review.googlesource.com/23946
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/TestConfigParsing.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/TestConfigParsing.cpp b/tests/TestConfigParsing.cpp index 6a2607ab80..e24c019dc8 100644 --- a/tests/TestConfigParsing.cpp +++ b/tests/TestConfigParsing.cpp @@ -119,7 +119,9 @@ DEF_TEST(ParseConfigs_DefaultConfigs, reporter) { "glnarrow", "glnostencils", "mock", - "mtl" + "mtl", + "gl4444", + "gl565" }); SkCommandLineConfigArray configs; @@ -226,6 +228,14 @@ DEF_TEST(ParseConfigs_DefaultConfigs, reporter) { REPORTER_ASSERT(reporter, configs[19]->asConfigGpu()); REPORTER_ASSERT(reporter, configs[20]->asConfigGpu()); REPORTER_ASSERT(reporter, configs[21]->asConfigGpu()); + REPORTER_ASSERT(reporter, configs[45]->asConfigGpu()->getContextType() == + GrContextFactory::kGL_ContextType); + REPORTER_ASSERT(reporter, configs[45]->asConfigGpu()->getColorType() == kARGB_4444_SkColorType); + REPORTER_ASSERT(reporter, configs[45]->asConfigGpu()->getAlphaType() == kPremul_SkAlphaType); + REPORTER_ASSERT(reporter, configs[46]->asConfigGpu()->getContextType() == + GrContextFactory::kGL_ContextType); + REPORTER_ASSERT(reporter, configs[46]->asConfigGpu()->getColorType() == kRGB_565_SkColorType); + REPORTER_ASSERT(reporter, configs[46]->asConfigGpu()->getAlphaType() == kOpaque_SkAlphaType); #if SK_MESA REPORTER_ASSERT(reporter, configs[23]->asConfigGpu()); #else |