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

Side by Side Diff: tests/GrPorterDuffTest.cpp

Issue 1815823002: Move SkGLContext and some GrGLInterface implementations to skgputest module (Closed) Base URL: https://chromium.googlesource.com/skia.git@debugobject
Patch Set: fix windows and android? 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
« no previous file with comments | « tests/GrContextFactoryTest.cpp ('k') | tests/ImageTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 #include "SkXfermode.h" 8 #include "SkXfermode.h"
9 #include "Test.h" 9 #include "Test.h"
10 10
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 xp->getOptimizations(opts, false, &overrideColor, caps); 1140 xp->getOptimizations(opts, false, &overrideColor, caps);
1141 1141
1142 GrXferProcessor::BlendInfo blendInfo; 1142 GrXferProcessor::BlendInfo blendInfo;
1143 xp->getBlendInfo(&blendInfo); 1143 xp->getBlendInfo(&blendInfo);
1144 TEST_ASSERT(blendInfo.fWriteColor); 1144 TEST_ASSERT(blendInfo.fWriteColor);
1145 } 1145 }
1146 1146
1147 DEF_GPUTEST(PorterDuffNoDualSourceBlending, reporter, /*factory*/) { 1147 DEF_GPUTEST(PorterDuffNoDualSourceBlending, reporter, /*factory*/) {
1148 GrContextOptions opts; 1148 GrContextOptions opts;
1149 opts.fSuppressDualSourceBlending = true; 1149 opts.fSuppressDualSourceBlending = true;
1150 GrContextFactory mockFactory(opts); 1150 sk_gpu_test::GrContextFactory mockFactory(opts);
1151 GrContext* ctx = mockFactory.get(GrContextFactory::kNull_GLContextType); 1151 GrContext* ctx = mockFactory.get(sk_gpu_test::GrContextFactory::kNull_GLCont extType);
1152 if (!ctx) { 1152 if (!ctx) {
1153 SkFAIL("Failed to create null context without ARB_blend_func_extended.") ; 1153 SkFAIL("Failed to create null context without ARB_blend_func_extended.") ;
1154 return; 1154 return;
1155 } 1155 }
1156 1156
1157 const GrCaps& caps = *ctx->caps(); 1157 const GrCaps& caps = *ctx->caps();
1158 if (caps.shaderCaps()->dualSourceBlendingSupport()) { 1158 if (caps.shaderCaps()->dualSourceBlendingSupport()) {
1159 SkFAIL("Null context failed to honor request for no ARB_blend_func_exten ded."); 1159 SkFAIL("Null context failed to honor request for no ARB_blend_func_exten ded.");
1160 return; 1160 return;
1161 } 1161 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 TEST_ASSERT(!xp->hasSecondaryOutput()); 1210 TEST_ASSERT(!xp->hasSecondaryOutput());
1211 xp->getOptimizations(optimizations, false, 0, caps); 1211 xp->getOptimizations(optimizations, false, 0, caps);
1212 TEST_ASSERT(!xp->hasSecondaryOutput()); 1212 TEST_ASSERT(!xp->hasSecondaryOutput());
1213 } 1213 }
1214 } 1214 }
1215 } 1215 }
1216 ctx->getGpu()->deleteTestingOnlyBackendTexture(backendTex); 1216 ctx->getGpu()->deleteTestingOnlyBackendTexture(backendTex);
1217 } 1217 }
1218 1218
1219 #endif 1219 #endif
OLDNEW
« no previous file with comments | « tests/GrContextFactoryTest.cpp ('k') | tests/ImageTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698