skia2/src/effects
2013-05-09 14:55:46 +00:00
..
gradients Make GrGLShaderBuilder::TextureSampler extract only required info from GrTextureAccess. 2013-03-28 13:46:42 +00:00
Sk1DPathEffect.cpp add optional cull-rect to patheffects, so they can do less work if their results 2013-01-24 21:03:11 +00:00
Sk2DPathEffect.cpp add optional cull-rect to patheffects, so they can do less work if their results 2013-01-24 21:03:11 +00:00
SkArithmeticMode.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkAvoidXfermode.cpp Added toString to SkXfermode-derived classes (for debugger) 2013-01-22 14:32:09 +00:00
SkBicubicImageFilter.cpp Move nested class GrDrawTarget::Caps out as GrDrawTargetCaps. 2013-03-25 18:19:00 +00:00
SkBitmapSource.cpp This patch implements generalized DAG connectivity for SkImageFilter. SkImageFilter maintains a list of inputs, which can be constructed either from a SkImageFilter** or zero or more SkImageFilter* arguments (varargs). 2012-10-10 20:36:13 +00:00
SkBlendImageFilter.cpp Make GrGLShaderBuilder::TextureSampler extract only required info from GrTextureAccess. 2013-03-28 13:46:42 +00:00
SkBlurDrawLooper.cpp Removed unused parameters 2013-03-11 18:50:03 +00:00
SkBlurImageFilter.cpp Nuke SkSingleInputImageFilter. 99% of its functionality was refactored into SkImageFilterUtils in https://code.google.com/p/skia/source/detail?r=7467, so it has outlived its usefulness. 2013-02-04 22:57:21 +00:00
SkBlurMask.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-03-12 07:12:32 +00:00
SkBlurMask.h Sanitizing source files in Skia_Periodic_House_Keeping 2013-03-12 07:12:32 +00:00
SkBlurMaskFilter.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-03-19 07:15:10 +00:00
SkColorFilterImageFilter.cpp New SkRectShaderImageFilter image filter 2013-02-21 15:02:28 +00:00
SkColorFilters.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkColorMatrix.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkColorMatrixFilter.cpp Make GrGLShaderBuilder::TextureSampler extract only required info from GrTextureAccess. 2013-03-28 13:46:42 +00:00
SkCornerPathEffect.cpp add optional cull-rect to patheffects, so they can do less work if their results 2013-01-24 21:03:11 +00:00
SkDashPathEffect.cpp remove obsolete build flags: 2013-02-22 16:36:57 +00:00
SkDiscretePathEffect.cpp add optional cull-rect to patheffects, so they can do less work if their results 2013-01-24 21:03:11 +00:00
SkDisplacementMapEffect.cpp Fix a few clang errors while trying to build tools target. 2013-03-26 21:48:58 +00:00
SkEmbossMask_Table.h Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/) 2012-08-23 18:09:54 +00:00
SkEmbossMask.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkEmbossMask.h Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkEmbossMaskFilter.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-03-19 07:15:10 +00:00
SkKernel33MaskFilter.cpp Added toString to SkMaskFilter-derived classes 2013-03-18 17:53:38 +00:00
SkLayerDrawLooper.cpp Move SkPaint::toString from debugger to SkPaint 2013-02-14 13:53:53 +00:00
SkLayerRasterizer.cpp change all interfaces for SkRasterizer to const, in preparation for marking it 2012-12-18 16:57:03 +00:00
SkLightingImageFilter.cpp Make GrGLShaderBuilder check whether GrEffect advertised that it would require the dst color or fragment position 2013-05-09 14:55:46 +00:00
SkMagnifierImageFilter.cpp Allow single-pass filters (which use asNewEffect()) to participate in the image filter DAG. This was done by introducing the SkSinglePassImageFilter abstract base class, which implements canFilterImageGPU() and filterImageGPU() on behalf of the derived class. The derived class still only needs to asNewEffect(). This allows us to recurse on the filter input in SkSinglePassImageFilter::onFilterImageGPU(). It also allows us to remove any knowledge of single-pass image filters from SkGpuDevice and from the SkImageFilter base class as well. 2013-04-08 19:43:22 +00:00
SkMatrixConvolutionImageFilter.cpp Allow single-pass filters (which use asNewEffect()) to participate in the image filter DAG. This was done by introducing the SkSinglePassImageFilter abstract base class, which implements canFilterImageGPU() and filterImageGPU() on behalf of the derived class. The derived class still only needs to asNewEffect(). This allows us to recurse on the filter input in SkSinglePassImageFilter::onFilterImageGPU(). It also allows us to remove any knowledge of single-pass image filters from SkGpuDevice and from the SkImageFilter base class as well. 2013-04-08 19:43:22 +00:00
SkMergeImageFilter.cpp Pull SkMergeImageFilter out into its own file. 2012-12-04 14:18:50 +00:00
SkMorphologyImageFilter.cpp Move nested class GrDrawTarget::Caps out as GrDrawTargetCaps. 2013-03-25 18:19:00 +00:00
SkOffsetImageFilter.cpp Nuke SkSingleInputImageFilter. 99% of its functionality was refactored into SkImageFilterUtils in https://code.google.com/p/skia/source/detail?r=7467, so it has outlived its usefulness. 2013-02-04 22:57:21 +00:00
SkPaintFlagsDrawFilter.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-26 07:06:02 +00:00
SkPerlinNoiseShader.cpp Disabling GPU noise on Windows since Angle can't do a proper translation of this shader to HLSL. 2013-04-18 14:04:57 +00:00
SkPixelXorXfermode.cpp Added toString to SkXfermode-derived classes (for debugger) 2013-01-22 14:32:09 +00:00
SkPorterDuff.cpp clone of https://codereview.appspot.com/7208043/ 2013-01-30 21:36:11 +00:00
SkRectShaderImageFilter.cpp Fix compile warning 2013-04-18 17:44:57 +00:00
SkStippleMaskFilter.cpp Added toString to SkMaskFilter-derived classes 2013-03-18 17:53:38 +00:00
SkTableColorFilter.cpp Make GrGLShaderBuilder::TextureSampler extract only required info from GrTextureAccess. 2013-03-28 13:46:42 +00:00
SkTableMaskFilter.cpp Added toString to SkMaskFilter-derived classes 2013-03-18 17:53:38 +00:00
SkTestImageFilters.cpp Removed unused parameters 2013-03-11 18:50:03 +00:00
SkTransparentShader.cpp Sanitizing source files in Skia_Periodic_House_Keeping 2013-01-16 07:05:56 +00:00