| OLD | NEW |
| 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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 } | 234 } |
| 235 int count = this->numTransforms(); | 235 int count = this->numTransforms(); |
| 236 for (int i = 0; i < count; ++i) { | 236 for (int i = 0; i < count; ++i) { |
| 237 if (this->coordTransform(i) != that.coordTransform(i)) { | 237 if (this->coordTransform(i) != that.coordTransform(i)) { |
| 238 return false; | 238 return false; |
| 239 } | 239 } |
| 240 } | 240 } |
| 241 return true; | 241 return true; |
| 242 } | 242 } |
| 243 | 243 |
| 244 #include "effects/GrXfermodeFragmentProcessor.h" |
| 245 |
| 246 const GrFragmentProcessor* GrFragmentProcessor::MulOuputByInputAlpha( |
| 247 const GrFragmentProcessor* fp) { |
| 248 return GrXfermodeFragmentProcessor::CreateFromDstProcessor(fp, SkXfermode::k
DstIn_Mode); |
| 249 } |
| 250 |
| 244 ////////////////////////////////////////////////////////////////////////////////
/////////////////// | 251 ////////////////////////////////////////////////////////////////////////////////
/////////////////// |
| 245 | 252 |
| 246 // Initial static variable from GrXPFactory | 253 // Initial static variable from GrXPFactory |
| 247 int32_t GrXPFactory::gCurrXPFClassID = | 254 int32_t GrXPFactory::gCurrXPFClassID = |
| 248 GrXPFactory::kIllegalXPFClassID; | 255 GrXPFactory::kIllegalXPFClassID; |
| OLD | NEW |