1. d312dca Revert of Revert of Revert of Fix SkTileImageFilter clipping/cropRect interaction issue (patchset #1 id:1 of https://codereview.chromium.org/1207353004/) by robertphillips · 9 years ago
  2. 8355100 Revert of Revert of Fix SkTileImageFilter clipping/cropRect interaction issue (patchset #1 id:1 of https://codereview.chromium.org/1219193002/) by jvanverth · 9 years ago
  3. ebaf6a6 Revert of Fix SkTileImageFilter clipping/cropRect interaction issue (patchset #2 id:30001 of https://codereview.chromium.org/1210053003/) by bsalomon · 9 years ago
  4. 157bcd0 Fix SkTileImageFilter clipping/cropRect interaction issue by robertphillips · 9 years ago
  5. 24e06d5 Remove uniqueID from all filter serialization. by senorblanco · 9 years ago
  6. cedc36f Use ComposColorFilter to collaps hierarchy (when possible). by reed · 9 years ago
  7. 5c518a8 Revert of check for inputs before reporting asColorFilter (patchset #7 id:110001 of https://codereview.chromium.org/967833003/) by reed · 9 years ago
  8. dac843b Use ComposeColorFilter in factory to collapse consecutive filters (when possible). by reed · 9 years ago
  9. 8a8d841 add virtuals to optimize composing colorfilters by reed · 9 years ago
  10. c12b74d Collapse consecutive SkTableColorFilters by cwallez · 10 years ago
  11. 33cca88 Update ColorFilterImageFilter & BlurImageFilter debugger strings by robertphillips · 10 years ago
  12. f3f5bad Add toString methods to SkImageFilter-derived classes by robertphillips · 10 years ago
  13. 3f3b3d0 Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. by mtklein · 10 years ago
  14. 6e78293 Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (patchset #1 id:1 of https://codereview.chromium.org/769953002/) by mtklein · 10 years ago
  15. 52c2935 Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. by mtklein · 10 years ago
  16. b969fc0 notice null colorfilter in legacy unflattening by reed · 10 years ago
  17. 9bde31e Trying to be consistent when members are allowed to be NULL by sugoi · 10 years ago
  18. 49f085d "NULL !=" = NULL by bsalomon · 10 years ago
  19. 5e5f948 Reimplement deserialization of SkImageFilter's uniqueID. by senorblanco · 10 years ago
  20. f0f6c40 fix leak in new createproc by reed · 10 years ago
  21. 9fa60da Simplify flattening to just write enough to call the factory/public-constructor for the class. We want to *not* rely on private constructors, and not rely on calling through the inheritance hierarchy for either flattening or unflattening(CreateProc). by reed · 10 years ago
  22. 9ea3d57 Clean up SkImageFilter constructors. by senorblanco · 10 years ago
  23. 3df0501 Fix SkColorFilterImageFilter matrix optimization. by senorblanco · 10 years ago
  24. 1182529 Implement support for expanding crop rects in image filters by senorblanco@chromium.org · 10 years ago
  25. 2908917 Revert "Implement support for expanding crop rects in image filters" by senorblanco@chromium.org · 10 years ago
  26. 0ef0501 Implement support for expanding crop rects in image filters by senorblanco@chromium.org · 10 years ago
  27. 4cb543d Implement support for a Context parameter in image filters by senorblanco@chromium.org · 10 years ago
  28. 727a352 Factory methods for heap-allocated SkColorFilter objects. by commit-bot@chromium.org · 11 years ago
  29. ae761f7 Make SkImageFilter methods const. by commit-bot@chromium.org · 11 years ago
  30. 8b0e8ac Refactor read and write buffers. by commit-bot@chromium.org · 11 years ago
  31. 6776b82 Make SkImageFilter crop rects relative to the primitive origin, instead of relative to their parent's crop rect. This is required by SVG semantics, and is more sane anyway. by senorblanco@chromium.org · 11 years ago
  32. cd3b15c Fixed bad bitmap size crashes by commit-bot@chromium.org · 11 years ago
  33. ce33d60 Adding more validation by commit-bot@chromium.org · 11 years ago
  34. 3534822 force readbuffer clients to use specialized readFoo for flattenables by reed@google.com · 11 years ago
  35. b295fb6 Change SkImageFilter's cropRect from SkIRect to a CropRect struct, containing an SkRect and flags indicating which parameters are set. by senorblanco@chromium.org · 11 years ago
  36. 1f2f338 Split SkDevice into SkBaseDevice and SkBitmapDevice by robertphillips@google.com · 11 years ago
  37. 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
  38. 9b051a3 Revert r10830 (Split SkDevice out of SkRasterDevice) until we can get Chromium ready. by robertphillips@google.com · 11 years ago
  39. 3055b70 Split SkDevice out of SkBitmapDevice by robertphillips@google.com · 11 years ago
  40. 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
  41. 58c856a Reverting r10251 (Implement crop rect for SkImageFilter) due to Chromium-side unit test failures by robertphillips@google.com · 11 years ago
  42. 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
  43. 6840076 Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  44. f0656c1 Reverting r9245 due to Chrome breakage by robertphillips@google.com · 11 years ago
  45. be1d02e Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  46. a1c511b New SkRectShaderImageFilter image filter by sugoi@google.com · 12 years ago
  47. 377c14a 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. by senorblanco@chromium.org · 12 years ago
  48. cd9f559 Add a factory Create function for SkColorFilterImageFilter, and move the matrix optimization there. This will allow the Chrome compositor to extract the optimized matrix, and potentially apply the color matrix itself, saving a buffer allocation & draw. by senorblanco@chromium.org · 12 years ago
  49. f57c01b Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  50. 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
  51. a0c2bc2 Make flattenables no longer depend on global static initializers. by scroggo@google.com · 12 years ago
  52. 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
  53. 44888c6 Move SkColorFilterImageFilter into its own file. by senorblanco@chromium.org · 12 years ago