1. 7096dc6 fix SK_RESTRICT warnings related to overrides on windows by reed@google.com · 12 years ago
  2. 75a0972 move SkStrokePathEffect into hiding for now, as its functionality is rethought. by reed@google.com · 12 years ago
  3. 20bf4ca Clean up DashPathEffect modulo math from r3761 by epoger@google.com · 12 years ago
  4. 1df888b check for numerical imprecision on phase by reed@google.com · 12 years ago
  5. 72ae6bd Fix the Android build. by scroggo@google.com · 12 years ago
  6. 5a2e879 Fixes for drawing through an SkGPipe. by scroggo@google.com · 12 years ago
  7. 90bf427 proper handling if SkMatrix::invert failes, addresses hack fix in rev. 3657 by mike@reedtribe.org · 12 years ago
  8. f3edf9f add SK_WARN_UNUSED_RESULT warning to SkPathMeasure methods that might leave by reed@google.com · 12 years ago
  9. fc9a3be always check the result of SkMatrix::invert by reed@google.com · 12 years ago
  10. 2b2ede3 Decouple the SkFlattenable from SkReader32/SkWriter32. by djsollen@google.com · 12 years ago
  11. 5efe0cb Clean up more Visual Studio warnings, including apparent bug in Arithmetic mode. by tomhudson@google.com · 12 years ago
  12. 7558925 Fix miscellaneous compiler warnings from Visual Studio 2010. by tomhudson@google.com · 12 years ago
  13. 56dd630 Clamp dilate and erode radius to image width and height. by senorblanco@chromium.org · 12 years ago
  14. 2ac4ef5 Fixing the drawing of blurred shodows for hairline paths with software rendering by junov@chromium.org · 12 years ago
  15. 257fc5b Remove unused static functions from SampleApp and effects by djsollen@google.com · 12 years ago
  16. 5492424 Cleanup code related to SkFlattenable::flatten() by djsollen@google.com · 12 years ago
  17. 9985476 Move SkColorMatrix to effects. by bungeman@google.com · 12 years ago
  18. a728e35 Fix a bunch of Coverity defects - class members not initialized in the constructor. by vandebo@chromium.org · 12 years ago
  19. ba28d03 Create macro for registering classes for deserialization by djsollen@google.com · 12 years ago
  20. 41b46be Fix android build by djsollen@google.com · 12 years ago
  21. a2ca41e Cleanup Macros arround static initializers for SkFlattenable. by djsollen@google.com · 12 years ago
  22. e63793a Upstream changes from Android repository. by djsollen@google.com · 12 years ago
  23. 5994451 Move SkClampRange into src/effects, where it isn't being advertised as by tomhudson@google.com · 12 years ago
  24. 8ff1e51 Updating SkAvoidXferMode to use new 4byte interp function. by djsollen@google.com · 12 years ago
  25. 05054f1 Erode and dilate image filter effects, CPU and GPU implementations. by senorblanco@chromium.org · 12 years ago
  26. 48b481b fix SkFixed build (I hope) by reed@google.com · 13 years ago
  27. 5468c90 Disable optimization of certain bit-shift operations on Visual Studio 2010 only by epoger@google.com · 13 years ago
  28. c98a0aa rearrange functions to group clamp, repeat, mirror helpers together. by reed@google.com · 13 years ago
  29. 480e21f Add dithering to 32b radial gradients. Behind the same #ifdef as dithered by tomhudson@google.com · 13 years ago
  30. 9efd9a0 extend fastbounds impls to include maskfilters and drawloopers. This allows by reed@google.com · 13 years ago
  31. 1771cbf posix: Avoid static initializers in static/global mutexes by digit@google.com · 13 years ago
  32. 13a847a Temporarily allow linear interpolation of 2-color vertical gradients to be by tomhudson@google.com · 13 years ago
  33. 13e812c Interpolate vertical linear gradients for improved quality. by tomhudson@google.com · 13 years ago
  34. 6a8df70 Create floating-point square root path for 16b mirrored radial gradients by tomhudson@google.com · 13 years ago
  35. 51a283b Convert 32b radial gradient procs to take SkScalar instead of by tomhudson@google.com · 13 years ago
  36. f925ba4 Remove obsolete SK_USE_FLOAT_SQRT by tomhudson@google.com · 13 years ago
  37. 054ff1e Fix the string we're checking for in the #if defined(), so that loops actually do get unrolled on Windows (15% perf win claimed many months ago). by tomhudson@google.com · 13 years ago
  38. e582869 detect (and reject) if radius ia NaN, by using !(radius > 0) instead of (radius <= 0) by reed@google.com · 13 years ago
  39. e8c984d Code cleanup: move gradient inner loops into procs. by tomhudson@google.com · 13 years ago
  40. f23f5f7 override asComponentTable() by mike@reedtribe.org · 13 years ago
  41. cadbcb8 Towards enabling -Werror in skia on Linux by bsalomon@google.com · 13 years ago
  42. 76dd277 add filterImage() entry-point to SkDevice, to allow it to specialize on subclasses by reed@google.com · 13 years ago
  43. a0b0c12 Fix incorrect use of the SK_RESTRICT macro in SkColorMatrixFilter, and re-enable by senorblanco@chromium.org · 13 years ago
  44. 998343a implement dithering for vertical grads (was a todo:) by reed@google.com · 13 years ago
  45. df28f07 Improve the quality of color matrix filters by using SkPremultiplyARGBInline. by senorblanco@chromium.org · 13 years ago
  46. 50bdad8 Implement the color matrix filter in Ganesh. Also, fix and enable the color by senorblanco@chromium.org · 13 years ago
  47. a69b48c Add SkTableColorFilter, as a foundation for several SVG filters by mike@reedtribe.org · 13 years ago
  48. 0c00f21 Add SkDEBUGFAIL to clean up use of SkASSERT(!"text"); by tomhudson@google.com · 13 years ago
  49. 73f3ded Unreviewed. Fixing the Windows build, due to a non definition of M_PI. by schenney@chromium.org · 13 years ago
  50. e5ff3ce Implement SkColorFilter::asColorMatrix() virtual, and override in by senorblanco@chromium.org · 13 years ago
  51. ae814c7 A software implementation of the Gaussian blur filter, using 3 box blurs. Also by senorblanco@chromium.org · 13 years ago
  52. 32d25b6 initial impl of SkImageFilters : virtual signature will change! by reed@google.com · 13 years ago
  53. d26147a add optional manual global initialization by caryclark@google.com · 13 years ago
  54. e51755f add first cut at arithmetic mode by mike@reedtribe.org · 13 years ago
  55. b6e1619 Adding isOpaque method to skia shader classes by junov@chromium.org · 13 years ago
  56. 0e734bd revert 2826, restore option for non-dithered gradients (used by chrome) by reed@google.com · 13 years ago
  57. 88ca1b4 use dithered gradients by default by reed@google.com · 13 years ago
  58. 8e6d914 fix win compile: sure wish SK_OVERRIDE was testable on mac build by reed@google.com · 13 years ago
  59. 7716afb add SK_OVERRIDEs by reed@google.com · 13 years ago
  60. 01224d5 Unroll loops in SkBlurMask for speedup on Windows (benchmarks should see by tomhudson@google.com · 13 years ago
  61. 8caac64 Add fractional-radius blurs to blur benchmark. by tomhudson@google.com · 13 years ago
  62. 8426058 ensure we never change the text_encoding of the master paint, since it is used by reed@google.com · 13 years ago
  63. 54e01b2 This change makes SkImageFilter and SkBlurImageFilter flattenable/unflattenable. by senorblanco@chromium.org · 13 years ago
  64. 60014ca Implement Gaussian blurs for images. The caller creates an an by senorblanco@chromium.org · 13 years ago
  65. 56c6977 Update files to use SK_BUILD_FOR_ANDROID. by djsollen@google.com · 13 years ago
  66. 045e62d enable soft clipping (yikes) by reed@google.com · 13 years ago
  67. 18ac1ba Make asBlur method const. http://codereview.appspot.com/5190041/ by bungeman@google.com · 13 years ago
  68. 5eba98c Now that layout tests are fixed, remove flag to ignore margin fix. by bungeman@google.com · 13 years ago
  69. 3e0f22c Add SK_RESTRICT inside radial gradient shader - we can't currently see a benefit, but it shouldn't hurt, and some compiler somewhere ought to benefit from it. by tomhudson@google.com · 13 years ago
  70. 889bd8b Make SkMath.h less visible in public header files. by tomhudson@google.com · 13 years ago
  71. 5ea050f Optimize software radial gradients (remove branches from the inner loop where by tomhudson@google.com · 13 years ago
  72. 51baf5a speed up radial-mirror 16x, sweep by ~2x by reed@google.com · 13 years ago
  73. dd5bd67 add SK_RESTRICT in shadeSpan methods by reed@google.com · 13 years ago
  74. 1c8e874 Ignore blur margin fix flag for backward bug compatibility. by bungeman@google.com · 13 years ago
  75. 5af16f8 Reduce size of filter mask. http://codereview.appspot.com/4965057/ by bungeman@google.com · 13 years ago
  76. 03016a3 style cleanup by reed@google.com · 13 years ago
  77. 16edff2 style cleanup by reed@google.com · 13 years ago
  78. d7a6fb9 style cleanup by reed@google.com · 13 years ago
  79. 43e9f20 add serialization to SkLayerRasterizer by reed@google.com · 13 years ago
  80. 18dc477 use common subclass SkPath2DPathEffect, which can be serialized by reed@google.com · 13 years ago
  81. e28b917 register 1D and 2D patheffects, so they work when serialized (and piperized) by reed@google.com · 13 years ago
  82. ec3ed6a Automatic update of all copyright notices to reflect new license terms. by epoger@google.com · 13 years ago
  83. 9de4dc9 check for non-finite values that can make us overshoot by reed@google.com · 13 years ago
  84. 895ce13 remove dead code by reed@google.com · 13 years ago
  85. 2b75f42 add asABlur() to maskfilters, so devices like gpu and pdf can query them. by reed@google.com · 13 years ago
  86. 95eed98 ensure that our bitmap is built with opaque cachedalpha by reed@google.com · 13 years ago
  87. 0b8b3bb make inline version of premultiply, to speed up gradient creation. by reed@google.com · 13 years ago
  88. 21031e9 fix div-by-zero (triggers debugging assert when scalar=fixed) and add master by reed@google.com · 13 years ago
  89. 8871a84 detect when our quadratic is really linear for 2-point radial, and don't by reed@google.com · 13 years ago
  90. 3c89818 Fix more coverity defects - Uninitialized class fields. by vandebo@chromium.org · 13 years ago
  91. 6bac947 Add option in flattening to write factory names inline, as we are recording. by reed@google.com · 13 years ago
  92. a87cd2a Increase compatibility with clang, mostly around SK_RESTRICT. by tomhudson@google.com · 13 years ago
  93. baa677b delete all old (non-Gyp) buildfiles by epoger@google.com · 13 years ago
  94. 1a39493 Fix unnitialized memory in Sk2DPathEffect. The SkDescriptor checksum by senorblanco@chromium.org · 13 years ago
  95. e4c98ff Clean up some valgrind errors in SkTransparentShader. Valgrind complains by senorblanco@chromium.org · 13 years ago
  96. f2eb5ab fix bug where we wrote uninitialized data to the flatten stream for shaders. by reed@google.com · 13 years ago
  97. 1447c6f Add missing flattenable registrations and CreateProc() functions; by tomhudson@google.com · 13 years ago
  98. 938d604 Add flattenable registrar for Two_Point_Radial_Gradient. by tomhudson@google.com · 13 years ago
  99. 9ce767c Fix to (two-point radial) gradient playback error in SkPictures that swapped by tomhudson@google.com · 13 years ago
  100. 3334c3a code style by mike@reedtribe.org · 13 years ago