OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The Android Open Source Project | 2 * Copyright 2012 The Android Open Source Project |
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 "SkLightingImageFilter.h" | 8 #include "SkLightingImageFilter.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkColorPriv.h" | 10 #include "SkColorPriv.h" |
11 #include "SkPoint3.h" | 11 #include "SkPoint3.h" |
12 #include "SkReadBuffer.h" | 12 #include "SkReadBuffer.h" |
13 #include "SkSpecialImage.h" | 13 #include "SkSpecialImage.h" |
14 #include "SkTypes.h" | 14 #include "SkTypes.h" |
15 #include "SkWriteBuffer.h" | 15 #include "SkWriteBuffer.h" |
16 | 16 |
17 #if SK_SUPPORT_GPU | 17 #if SK_SUPPORT_GPU |
18 #include "GrContext.h" | 18 #include "GrContext.h" |
19 #include "GrDrawContext.h" | 19 #include "GrDrawContext.h" |
| 20 #include "GrFixedClip.h" |
20 #include "GrFragmentProcessor.h" | 21 #include "GrFragmentProcessor.h" |
21 #include "GrInvariantOutput.h" | 22 #include "GrInvariantOutput.h" |
22 #include "GrPaint.h" | 23 #include "GrPaint.h" |
23 #include "SkGr.h" | 24 #include "SkGr.h" |
24 #include "effects/GrSingleTextureEffect.h" | 25 #include "effects/GrSingleTextureEffect.h" |
25 #include "effects/GrTextureDomain.h" | 26 #include "effects/GrTextureDomain.h" |
26 #include "glsl/GrGLSLFragmentProcessor.h" | 27 #include "glsl/GrGLSLFragmentProcessor.h" |
27 #include "glsl/GrGLSLFragmentShaderBuilder.h" | 28 #include "glsl/GrGLSLFragmentShaderBuilder.h" |
28 #include "glsl/GrGLSLProgramDataManager.h" | 29 #include "glsl/GrGLSLProgramDataManager.h" |
29 #include "glsl/GrGLSLUniformHandler.h" | 30 #include "glsl/GrGLSLUniformHandler.h" |
(...skipping 2140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2170 | 2171 |
2171 fragBuilder->codeAppendf("%s(%s)", fLightColorFunc.c_str(), surfaceToLight); | 2172 fragBuilder->codeAppendf("%s(%s)", fLightColorFunc.c_str(), surfaceToLight); |
2172 } | 2173 } |
2173 | 2174 |
2174 #endif | 2175 #endif |
2175 | 2176 |
2176 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkLightingImageFilter) | 2177 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkLightingImageFilter) |
2177 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDiffuseLightingImageFilter) | 2178 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDiffuseLightingImageFilter) |
2178 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkSpecularLightingImageFilter) | 2179 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkSpecularLightingImageFilter) |
2179 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END | 2180 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END |
OLD | NEW |