1. 1f2f338 Split SkDevice into SkBaseDevice and SkBitmapDevice by robertphillips@google.com · 11 years ago
  2. fbaea53 In image filters, apply the CTM and offset to the crop rect. This is necessary to compensate for both clipping applied by the compositor (communicated via the CTM) and for cropping applied in upstream image filters (communicated via the offset). This requires a few ugly conversions, since the crop rect is an SkIRect, and the ctm is an SkMatrix. by senorblanco@chromium.org · 11 years ago
  3. 9b051a3 Revert r10830 (Split SkDevice out of SkRasterDevice) until we can get Chromium ready. by robertphillips@google.com · 11 years ago
  4. 3055b70 Split SkDevice out of SkBitmapDevice by robertphillips@google.com · 11 years ago
  5. 97333f2 Remove warning comment from SkImageFilter. by senorblanco@chromium.org · 11 years ago
  6. 1aa54bf Added ctm matrix to GPU path by commit-bot@chromium.org · 11 years ago
  7. 4e16bb2 Implement crop rect for lighting image filters. Changes for the CPU path were fairly straightforward: use the bounds rectangle when traversing the pixels, not the source rectangle. by senorblanco@chromium.org · 11 years ago
  8. 194d775 This patch implements a crop rect for SkImageFilter. It has been implemented for SkColorFilterImageFilter and SkBlurImageFilter as examples. by senorblanco@chromium.org · 11 years ago
  9. 58c856a Reverting r10251 (Implement crop rect for SkImageFilter) due to Chromium-side unit test failures by robertphillips@google.com · 11 years ago
  10. ccf225c This patch implements a crop rect for SkImageFilter. It has been implemented for SkColorFilterImageFilter and SkBlurImageFilter as examples. by senorblanco@chromium.org · 11 years ago
  11. de2e4e8 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  12. 7b32070 Implement offset for GPU filter path. Although we can't yet use this in Blink for FEOffset, due to SVG semantics, we can use it to support crop rect (upcoming patch). by commit-bot@chromium.org · 11 years ago
  13. 6840076 Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  14. f0656c1 Reverting r9245 due to Chrome breakage by robertphillips@google.com · 11 years ago
  15. be1d02e Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  16. 3284017 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 11 years ago
  17. d043cce 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. by senorblanco@chromium.org · 11 years ago
  18. 4b6d432 Small adjustments to SkRectShaderImageFilter to follow up on original cl. by sugoi@google.com · 12 years ago
  19. a1c511b New SkRectShaderImageFilter image filter by sugoi@google.com · 12 years ago
  20. c2594f4 This changes the signature of SkImageFilter::filterImageGPU() to use SkBitmaps for input and output, and removes the rect param. This allows us to return textures which are larger than the actual result, such as when GrAutoScratchTextures are used. The SkBitmap's size represents the active region, while the GrTexture's size is the full texture size. by senorblanco@chromium.org · 12 years ago
  21. 0ac6af4 Wrap GrEffects in GrEffectPtr. by bsalomon@google.com · 12 years ago
  22. 171f5c7 Rename onFilterImageGPU to filterImageGPU(), to match skia convention. No change in functionality. by senorblanco@chromium.org · 12 years ago
  23. 17fc651 Make all remaining effects use GrGLEffectMatrix by bsalomon@google.com · 12 years ago
  24. 021fc73 GrCustomStage Renaming Part 5 by bsalomon@google.com · 12 years ago
  25. 8ea78d8 GrCustomStage Renaming Part 4 by bsalomon@google.com · 12 years ago
  26. a469c28 CustomStage Renaming Part 1 by bsalomon@google.com · 12 years ago
  27. c2e8cef Remove use of varargs in SkImageFilter. This is causing a crash in recent by senorblanco@chromium.org · 12 years ago
  28. 8d21f6c When two or more color matrix image filters are connected together, and the non-leaf matrices do not require clamping, we can concatenate their matrices and apply them together. by senorblanco@chromium.org · 12 years ago
  29. 9f25de7 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). by senorblanco@chromium.org · 12 years ago
  30. 9c39744 Fix recursive GPU processing for SkImageFilter. Plumb through the by senorblanco@chromium.org · 12 years ago
  31. fbfcd56 Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/) by rmistry@google.com · 12 years ago
  32. bf2768b Refactor SkImageFilter into its own .cpp file. by senorblanco@chromium.org · 12 years ago
  33. c73dd5c Update SkFlattenable buffers to be more modular. by djsollen@google.com · 12 years ago
  34. 302cffb Replace the asAFoo() functions in SkImageFilter with canFilterImageGPU() and by senorblanco@chromium.org · 12 years ago
  35. d0c1a06 Introduces new SingleTextureEffect base class for GrCustomStage objects. by tomhudson@google.com · 12 years ago
  36. 894790d This patch implements the diffuse and specular lighting filters in Ganesh. by senorblanco@chromium.org · 12 years ago
  37. 0456e0b Added Inst counting to SkFlattenable-derived classes by robertphillips@google.com · 12 years ago
  38. 8926b16 apply imagefilter to all draw calls by reed@google.com · 12 years ago
  39. 05054f1 Erode and dilate image filter effects, CPU and GPU implementations. by senorblanco@chromium.org · 12 years ago
  40. 60abb07 Merge changes from the android repo upstream to Skia by djsollen@google.com · 13 years ago
  41. 76dd277 add filterImage() entry-point to SkDevice, to allow it to specialize on subclasses by reed@google.com · 13 years ago
  42. 32d25b6 initial impl of SkImageFilters : virtual signature will change! by reed@google.com · 13 years ago
  43. 54e01b2 This change makes SkImageFilter and SkBlurImageFilter flattenable/unflattenable. by senorblanco@chromium.org · 13 years ago
  44. 15356a6 experimental -- add SkImageFilter to paint. Not called yet. by reed@google.com · 13 years ago
  45. 894aa9a experimental by reed@google.com · 13 years ago