| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 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 "gl/builders/GrGLProgramBuilder.h" | 8 #include "gl/builders/GrGLProgramBuilder.h" |
| 9 #include "GrBicubicEffect.h" | 9 #include "GrBicubicEffect.h" |
| 10 | 10 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 convert_row_major_scalar_coeffs_to_column_major_floats(fCoefficients, coeffi
cients); | 155 convert_row_major_scalar_coeffs_to_column_major_floats(fCoefficients, coeffi
cients); |
| 156 } | 156 } |
| 157 | 157 |
| 158 GrBicubicEffect::~GrBicubicEffect() { | 158 GrBicubicEffect::~GrBicubicEffect() { |
| 159 } | 159 } |
| 160 | 160 |
| 161 const GrBackendFragmentProcessorFactory& GrBicubicEffect::getFactory() const { | 161 const GrBackendFragmentProcessorFactory& GrBicubicEffect::getFactory() const { |
| 162 return GrTBackendFragmentProcessorFactory<GrBicubicEffect>::getInstance(); | 162 return GrTBackendFragmentProcessorFactory<GrBicubicEffect>::getInstance(); |
| 163 } | 163 } |
| 164 | 164 |
| 165 bool GrBicubicEffect::onIsEqual(const GrProcessor& sBase) const { | 165 bool GrBicubicEffect::onIsEqual(const GrFragmentProcessor& sBase) const { |
| 166 const GrBicubicEffect& s = sBase.cast<GrBicubicEffect>(); | 166 const GrBicubicEffect& s = sBase.cast<GrBicubicEffect>(); |
| 167 return this->textureAccess(0) == s.textureAccess(0) && | 167 return this->textureAccess(0) == s.textureAccess(0) && |
| 168 !memcmp(fCoefficients, s.coefficients(), 16) && | 168 !memcmp(fCoefficients, s.coefficients(), 16) && |
| 169 fDomain == s.fDomain; | 169 fDomain == s.fDomain; |
| 170 } | 170 } |
| 171 | 171 |
| 172 void GrBicubicEffect::onComputeInvariantOutput(InvariantOutput* inout) const { | 172 void GrBicubicEffect::onComputeInvariantOutput(InvariantOutput* inout) const { |
| 173 // FIXME: Perhaps we can do better. | 173 // FIXME: Perhaps we can do better. |
| 174 inout->mulByUnknownAlpha(); | 174 inout->mulByUnknownAlpha(); |
| 175 } | 175 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 // Use bilerp to handle rotation or fractional translation. | 214 // Use bilerp to handle rotation or fractional translation. |
| 215 *filterMode = GrTextureParams::kBilerp_FilterMode; | 215 *filterMode = GrTextureParams::kBilerp_FilterMode; |
| 216 } | 216 } |
| 217 return false; | 217 return false; |
| 218 } | 218 } |
| 219 // When we use the bicubic filtering effect each sample is read from the tex
ture using | 219 // When we use the bicubic filtering effect each sample is read from the tex
ture using |
| 220 // nearest neighbor sampling. | 220 // nearest neighbor sampling. |
| 221 *filterMode = GrTextureParams::kNone_FilterMode; | 221 *filterMode = GrTextureParams::kNone_FilterMode; |
| 222 return true; | 222 return true; |
| 223 } | 223 } |
| OLD | NEW |