| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 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 #ifndef GrSimpleTextureEffect_DEFINED | 8 #ifndef GrSimpleTextureEffect_DEFINED |
| 9 #define GrSimpleTextureEffect_DEFINED | 9 #define GrSimpleTextureEffect_DEFINED |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 const SkMatrix& matrix, | 42 const SkMatrix& matrix, |
| 43 const GrTextureParams& p, | 43 const GrTextureParams& p, |
| 44 GrCoordSet coordSet = kLocal_GrCoordSet)
{ | 44 GrCoordSet coordSet = kLocal_GrCoordSet)
{ |
| 45 return SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordSet)); | 45 return SkNEW_ARGS(GrSimpleTextureEffect, (tex, matrix, p, coordSet)); |
| 46 } | 46 } |
| 47 | 47 |
| 48 virtual ~GrSimpleTextureEffect() {} | 48 virtual ~GrSimpleTextureEffect() {} |
| 49 | 49 |
| 50 const char* name() const override { return "SimpleTexture"; } | 50 const char* name() const override { return "SimpleTexture"; } |
| 51 | 51 |
| 52 void getGLProcessorKey(const GrGLCaps&, GrProcessorKeyBuilder*) const overri
de; | 52 void getGLProcessorKey(const GrGLSLCaps&, GrProcessorKeyBuilder*) const over
ride; |
| 53 | 53 |
| 54 GrGLFragmentProcessor* createGLInstance() const override; | 54 GrGLFragmentProcessor* createGLInstance() const override; |
| 55 | 55 |
| 56 private: | 56 private: |
| 57 GrSimpleTextureEffect(GrTexture* texture, | 57 GrSimpleTextureEffect(GrTexture* texture, |
| 58 const SkMatrix& matrix, | 58 const SkMatrix& matrix, |
| 59 GrTextureParams::FilterMode filterMode, | 59 GrTextureParams::FilterMode filterMode, |
| 60 GrCoordSet coordSet) | 60 GrCoordSet coordSet) |
| 61 : GrSingleTextureEffect(texture, matrix, filterMode, coordSet) { | 61 : GrSingleTextureEffect(texture, matrix, filterMode, coordSet) { |
| 62 this->initClassID<GrSimpleTextureEffect>(); | 62 this->initClassID<GrSimpleTextureEffect>(); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 73 bool onIsEqual(const GrFragmentProcessor& other) const override { return tru
e; } | 73 bool onIsEqual(const GrFragmentProcessor& other) const override { return tru
e; } |
| 74 | 74 |
| 75 void onComputeInvariantOutput(GrInvariantOutput* inout) const override; | 75 void onComputeInvariantOutput(GrInvariantOutput* inout) const override; |
| 76 | 76 |
| 77 GR_DECLARE_FRAGMENT_PROCESSOR_TEST; | 77 GR_DECLARE_FRAGMENT_PROCESSOR_TEST; |
| 78 | 78 |
| 79 typedef GrSingleTextureEffect INHERITED; | 79 typedef GrSingleTextureEffect INHERITED; |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 #endif | 82 #endif |
| OLD | NEW |