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

Side by Side Diff: tests/GpuColorFilterTest.cpp

Issue 1388113002: Bye bye processor data manager (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove files Created 5 years, 2 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/GLProgramsTest.cpp ('k') | no next file » | 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 /* 2 /*
3 * Copyright 2013 Google Inc. 3 * Copyright 2013 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #include "SkColorFilter.h" 9 #include "SkColorFilter.h"
10 #include "Test.h" 10 #include "Test.h"
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 95
96 // An unknown color with known alpha and red component filtered with Mul tiply produces an unknown color with known red and alpha. 96 // An unknown color with known alpha and red component filtered with Mul tiply produces an unknown color with known red and alpha.
97 { kR|kA , gr_whiteTrans, SkColorSetARGB(128, 200, 200, 200), SkXfermode: :kModulate_Mode, kR|kA, GrColorPackRGBA(50, 0, 0, 64) } 97 { kR|kA , gr_whiteTrans, SkColorSetARGB(128, 200, 200, 200), SkXfermode: :kModulate_Mode, kR|kA, GrColorPackRGBA(50, 0, 0, 64) }
98 }; 98 };
99 99
100 GrPaint paint; 100 GrPaint paint;
101 for (size_t i = 0; i < SK_ARRAY_COUNT(filterTests); ++i) { 101 for (size_t i = 0; i < SK_ARRAY_COUNT(filterTests); ++i) {
102 const GetConstantComponentTestCase& test = filterTests[i]; 102 const GetConstantComponentTestCase& test = filterTests[i];
103 SkAutoTUnref<SkColorFilter> cf( 103 SkAutoTUnref<SkColorFilter> cf(
104 SkColorFilter::CreateModeFilter(test.filterColor, test.filterMode)); 104 SkColorFilter::CreateModeFilter(test.filterColor, test.filterMode));
105 SkAutoTUnref<const GrFragmentProcessor> fp( 105 SkAutoTUnref<const GrFragmentProcessor> fp( cf->asFragmentProcessor(grCo ntext));
106 cf->asFragmentProcessor(grContext, paint.getProcessorDataManager())) ;
107 REPORTER_ASSERT(reporter, fp); 106 REPORTER_ASSERT(reporter, fp);
108 GrInvariantOutput inout(test.inputColor, 107 GrInvariantOutput inout(test.inputColor,
109 static_cast<GrColorComponentFlags>(test.inputCom ponents), 108 static_cast<GrColorComponentFlags>(test.inputCom ponents),
110 false); 109 false);
111 fp->computeInvariantOutput(&inout); 110 fp->computeInvariantOutput(&inout);
112 REPORTER_ASSERT(reporter, filterColor(inout.color(), inout.validFlags()) == 111 REPORTER_ASSERT(reporter, filterColor(inout.color(), inout.validFlags()) ==
113 test.outputColor); 112 test.outputColor);
114 REPORTER_ASSERT(reporter, test.outputComponents == inout.validFlags()); 113 REPORTER_ASSERT(reporter, test.outputComponents == inout.validFlags());
115 } 114 }
116 } 115 }
117 116
118 DEF_GPUTEST(GpuColorFilter, reporter, factory) { 117 DEF_GPUTEST(GpuColorFilter, reporter, factory) {
119 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) { 118 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
120 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type); 119 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type);
121 120
122 GrContext* grContext = factory->get(glType); 121 GrContext* grContext = factory->get(glType);
123 if (nullptr == grContext) { 122 if (nullptr == grContext) {
124 continue; 123 continue;
125 } 124 }
126 125
127 test_getConstantColorComponents(reporter, grContext); 126 test_getConstantColorComponents(reporter, grContext);
128 } 127 }
129 } 128 }
130 129
131 #endif 130 #endif
OLDNEW
« no previous file with comments | « tests/GLProgramsTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698