| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 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 "SkBitmapProcState.h" | 9 #include "SkBitmapProcState.h" |
| 10 #include "SkColor.h" | 10 #include "SkColor.h" |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 typedef SkShader INHERITED; | 123 typedef SkShader INHERITED; |
| 124 }; | 124 }; |
| 125 | 125 |
| 126 //////////////////////////////////////////////////////////////////////////// | 126 //////////////////////////////////////////////////////////////////////////// |
| 127 | 127 |
| 128 #if SK_SUPPORT_GPU | 128 #if SK_SUPPORT_GPU |
| 129 | 129 |
| 130 #include "GrCoordTransform.h" | 130 #include "GrCoordTransform.h" |
| 131 #include "GrFragmentProcessor.h" | 131 #include "GrFragmentProcessor.h" |
| 132 #include "GrTextureAccess.h" | 132 #include "GrTextureAccess.h" |
| 133 #include "gl/GrGLProcessor.h" | |
| 134 #include "gl/builders/GrGLProgramBuilder.h" | 133 #include "gl/builders/GrGLProgramBuilder.h" |
| 135 #include "glsl/GrGLSLProgramDataManager.h" | 134 #include "glsl/GrGLSLProgramDataManager.h" |
| 136 #include "SkGr.h" | 135 #include "SkGr.h" |
| 137 #include "SkGrPriv.h" | 136 #include "SkGrPriv.h" |
| 138 | 137 |
| 139 class LightingFP : public GrFragmentProcessor { | 138 class LightingFP : public GrFragmentProcessor { |
| 140 public: | 139 public: |
| 141 LightingFP(GrTexture* diffuse, GrTexture* normal, const SkMatrix& diffMatrix
, | 140 LightingFP(GrTexture* diffuse, GrTexture* normal, const SkMatrix& diffMatrix
, |
| 142 const SkMatrix& normMatrix, const GrTextureParams& diffParams, | 141 const SkMatrix& normMatrix, const GrTextureParams& diffParams, |
| 143 const GrTextureParams& normParams, const SkLightingShader::Lights
* lights, | 142 const GrTextureParams& normParams, const SkLightingShader::Lights
* lights, |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 normLocalM); | 712 normLocalM); |
| 714 } | 713 } |
| 715 | 714 |
| 716 /////////////////////////////////////////////////////////////////////////////// | 715 /////////////////////////////////////////////////////////////////////////////// |
| 717 | 716 |
| 718 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkLightingShader) | 717 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkLightingShader) |
| 719 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkLightingShaderImpl) | 718 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkLightingShaderImpl) |
| 720 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END | 719 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END |
| 721 | 720 |
| 722 /////////////////////////////////////////////////////////////////////////////// | 721 /////////////////////////////////////////////////////////////////////////////// |
| OLD | NEW |