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

Side by Side Diff: tests/GpuColorFilterTest.cpp

Issue 1228683002: rename GrShaderDataManager -> GrProcessorDataManager (Closed) Base URL: https://skia.googlesource.com/skia.git@grfixuptests
Patch Set: rebase onto origin/master Created 5 years, 5 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(SkColorFilter::CreateModeFilter(test.filt erColor, test.filterMode)); 103 SkAutoTUnref<SkColorFilter> cf(SkColorFilter::CreateModeFilter(test.filt erColor, test.filterMode));
104 SkTDArray<GrFragmentProcessor*> array; 104 SkTDArray<GrFragmentProcessor*> array;
105 bool hasFrag = cf->asFragmentProcessors(grContext, paint.getShaderDataMa nager(), &array); 105 bool hasFrag = cf->asFragmentProcessors(grContext, paint.getProcessorDat aManager(), &array);
106 REPORTER_ASSERT(reporter, hasFrag); 106 REPORTER_ASSERT(reporter, hasFrag);
107 REPORTER_ASSERT(reporter, 1 == array.count()); 107 REPORTER_ASSERT(reporter, 1 == array.count());
108 GrInvariantOutput inout(test.inputColor, 108 GrInvariantOutput inout(test.inputColor,
109 static_cast<GrColorComponentFlags>(test.inputCom ponents), 109 static_cast<GrColorComponentFlags>(test.inputCom ponents),
110 false); 110 false);
111 array[0]->computeInvariantOutput(&inout); 111 array[0]->computeInvariantOutput(&inout);
112 112
113 REPORTER_ASSERT(reporter, filterColor(inout.color(), inout.validFlags()) == test.outputColor); 113 REPORTER_ASSERT(reporter, filterColor(inout.color(), inout.validFlags()) == test.outputColor);
114 REPORTER_ASSERT(reporter, test.outputComponents == inout.validFlags()); 114 REPORTER_ASSERT(reporter, test.outputComponents == inout.validFlags());
115 array[0]->unref(); 115 array[0]->unref();
116 } 116 }
117 } 117 }
118 118
119 DEF_GPUTEST(GpuColorFilter, reporter, factory) { 119 DEF_GPUTEST(GpuColorFilter, reporter, factory) {
120 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) { 120 for (int type = 0; type < GrContextFactory::kLastGLContextType; ++type) {
121 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type); 121 GrContextFactory::GLContextType glType = static_cast<GrContextFactory::G LContextType>(type);
122 122
123 GrContext* grContext = factory->get(glType); 123 GrContext* grContext = factory->get(glType);
124 if (NULL == grContext) { 124 if (NULL == grContext) {
125 continue; 125 continue;
126 } 126 }
127 127
128 test_getConstantColorComponents(reporter, grContext); 128 test_getConstantColorComponents(reporter, grContext);
129 } 129 }
130 } 130 }
131 131
132 #endif 132 #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