| OLD | NEW | 
|---|
| 1 | 1 | 
| 2 /* | 2 /* | 
| 3  * Copyright 2006 The Android Open Source Project | 3  * Copyright 2006 The Android Open Source Project | 
| 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 "SkBlurMaskFilter.h" | 9 #include "SkBlurMaskFilter.h" | 
| 10 #include "SkBlurMask.h" | 10 #include "SkBlurMask.h" | 
| 11 #include "SkGpuBlurUtils.h" | 11 #include "SkGpuBlurUtils.h" | 
| 12 #include "SkReadBuffer.h" | 12 #include "SkReadBuffer.h" | 
| 13 #include "SkWriteBuffer.h" | 13 #include "SkWriteBuffer.h" | 
| 14 #include "SkMaskFilter.h" | 14 #include "SkMaskFilter.h" | 
| 15 #include "SkRRect.h" | 15 #include "SkRRect.h" | 
| 16 #include "SkRTConf.h" | 16 #include "SkRTConf.h" | 
| 17 #include "SkStringUtils.h" | 17 #include "SkStringUtils.h" | 
| 18 #include "SkStrokeRec.h" | 18 #include "SkStrokeRec.h" | 
| 19 | 19 | 
| 20 #if SK_SUPPORT_GPU | 20 #if SK_SUPPORT_GPU | 
| 21 #include "GrContext.h" | 21 #include "GrContext.h" | 
| 22 #include "GrTexture.h" | 22 #include "GrTexture.h" | 
| 23 #include "GrProcessor.h" | 23 #include "GrFragmentProcessor.h" | 
| 24 #include "gl/GrGLProcessor.h" | 24 #include "gl/GrGLProcessor.h" | 
| 25 #include "gl/builders/GrGLProgramBuilder.h" | 25 #include "gl/builders/GrGLProgramBuilder.h" | 
| 26 #include "effects/GrSimpleTextureEffect.h" | 26 #include "effects/GrSimpleTextureEffect.h" | 
| 27 #include "GrTBackendProcessorFactory.h" | 27 #include "GrTBackendProcessorFactory.h" | 
| 28 #include "SkGrPixelRef.h" | 28 #include "SkGrPixelRef.h" | 
| 29 #include "SkDraw.h" | 29 #include "SkDraw.h" | 
| 30 #endif | 30 #endif | 
| 31 | 31 | 
| 32 SkScalar SkBlurMaskFilter::ConvertRadiusToSigma(SkScalar radius) { | 32 SkScalar SkBlurMaskFilter::ConvertRadiusToSigma(SkScalar radius) { | 
| 33     return SkBlurMask::ConvertRadiusToSigma(radius); | 33     return SkBlurMask::ConvertRadiusToSigma(radius); | 
| (...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1218     } else { | 1218     } else { | 
| 1219         str->append("None"); | 1219         str->append("None"); | 
| 1220     } | 1220     } | 
| 1221     str->append("))"); | 1221     str->append("))"); | 
| 1222 } | 1222 } | 
| 1223 #endif | 1223 #endif | 
| 1224 | 1224 | 
| 1225 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkBlurMaskFilter) | 1225 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkBlurMaskFilter) | 
| 1226     SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkBlurMaskFilterImpl) | 1226     SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkBlurMaskFilterImpl) | 
| 1227 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END | 1227 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END | 
| OLD | NEW | 
|---|