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

Side by Side Diff: src/gpu/GrProcessor.cpp

Issue 978713002: Add constant color GrFP. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix mulAlphaByKnownFourComponents Created 5 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 | « include/gpu/effects/GrConstColorProcessor.h ('k') | src/gpu/effects/GrConstColorProcessor.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 2012 Google Inc. 2 * Copyright 2012 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 "GrProcessor.h" 8 #include "GrProcessor.h"
9 #include "GrContext.h" 9 #include "GrContext.h"
10 #include "GrCoordTransform.h" 10 #include "GrCoordTransform.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() { 42 GrProcessorTestFactory<GrGeometryProcessor>::GetFactories() {
43 static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactori es; 43 static SkTArray<GrProcessorTestFactory<GrGeometryProcessor>*, true> gFactori es;
44 return &gFactories; 44 return &gFactories;
45 } 45 }
46 46
47 /* 47 /*
48 * To ensure we always have successful static initialization, before creating fr om the factories 48 * To ensure we always have successful static initialization, before creating fr om the factories
49 * we verify the count is as expected. If a new factory is added, then these nu mbers must be 49 * we verify the count is as expected. If a new factory is added, then these nu mbers must be
50 * manually adjusted. 50 * manually adjusted.
51 */ 51 */
52 static const int kFPFactoryCount = 37; 52 static const int kFPFactoryCount = 38;
53 static const int kGPFactoryCount = 14; 53 static const int kGPFactoryCount = 14;
54 static const int kXPFactoryCount = 5; 54 static const int kXPFactoryCount = 5;
55 55
56 template<> 56 template<>
57 void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() { 57 void GrProcessorTestFactory<GrFragmentProcessor>::VerifyFactoryCount() {
58 if (kFPFactoryCount != GetFactories()->count()) { 58 if (kFPFactoryCount != GetFactories()->count()) {
59 SkFAIL("Wrong number of fragment processor factories!"); 59 SkFAIL("Wrong number of fragment processor factories!");
60 } 60 }
61 } 61 }
62 62
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 170
171 void GrFragmentProcessor::computeInvariantOutput(GrInvariantOutput* inout) const { 171 void GrFragmentProcessor::computeInvariantOutput(GrInvariantOutput* inout) const {
172 this->onComputeInvariantOutput(inout); 172 this->onComputeInvariantOutput(inout);
173 } 173 }
174 174
175 //////////////////////////////////////////////////////////////////////////////// /////////////////// 175 //////////////////////////////////////////////////////////////////////////////// ///////////////////
176 176
177 // Initial static variable from GrXPFactory 177 // Initial static variable from GrXPFactory
178 int32_t GrXPFactory::gCurrXPFClassID = 178 int32_t GrXPFactory::gCurrXPFClassID =
179 GrXPFactory::kIllegalXPFClassID; 179 GrXPFactory::kIllegalXPFClassID;
OLDNEW
« no previous file with comments | « include/gpu/effects/GrConstColorProcessor.h ('k') | src/gpu/effects/GrConstColorProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698