1. 77af680 Make GPU coord transforms automatic by bsalomon@google.com · 11 years ago
  2. 65caeaf Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  3. 1a4fb70 Moving 4 SkImageFilter derived classes from blink to skia by commit-bot@chromium.org · 11 years ago
  4. 962c886 Implement crop rect support for the merge image filter. by senorblanco@chromium.org · 11 years ago
  5. 0694ea7 Fix to allow ovals GM to finish on N7 by commit-bot@chromium.org · 11 years ago
  6. 8fcad98 Implement crop rect for the dilate and erode (morphology) filters. This provoked some cleanup on the GPU side: apply_morphology() now deals with SkBitmaps, rather than GrTextures. There's still a clear opportunity for more refactoring between the two filters. by senorblanco@chromium.org · 11 years ago
  7. ef45a64 [External patch] Source-over support for SkLumaXfermode. by fmalita@google.com · 11 years ago
  8. 24ddde9 Revert 11247, 11250, 11251, 11257, and 11279 to unblock DEPS roll (https://codereview.chromium.org/24159002/) by robertphillips@google.com · 11 years ago
  9. ba6e954 Revert the revert of 11247, 11250, 11251 and 11279 (Chrome already relies on changes in r11247) by robertphillips@google.com · 11 years ago
  10. 478884f Revert 11247, 11250, 11251 and 11279 to unblock DEPS roll (https://codereview.chromium.org/24159002/) by robertphillips@google.com · 11 years ago
  11. 558d5d3 Warnings as errors fix by robertphillips@google.com · 11 years ago
  12. 4b681bc Fixed issues found by fuzzer by commit-bot@chromium.org · 11 years ago
  13. 5792cde Initial error handling code by commit-bot@chromium.org · 11 years ago
  14. 9a070f2 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  15. e0e7cfe Change old PRG to be SkLCGRandom; change new one to SkRandom by commit-bot@chromium.org · 11 years ago
  16. 82d1223 Two and three color GPU gradients without textures. by bsalomon@google.com · 11 years ago
  17. b3ec29d Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  18. 91a798f alpha threshold bitmap shader by commit-bot@chromium.org · 11 years ago
  19. 67db510 Revert "alpha threshold bitmap shader" by bsalomon@google.com · 11 years ago
  20. 4ec4cf9 alpha threshold bitmap shader by commit-bot@chromium.org · 11 years ago
  21. 3dfa4cc Add test to exercise extreme blur sigmas by robertphillips@google.com · 11 years ago
  22. 3aad3b0 add support for high quality image filtering on the GPU by humper@google.com · 11 years ago
  23. 112a23e Hamfisted "fix" for pinterest blur crash by robertphillips@google.com · 11 years ago
  24. 5a02cb4 Isolate VertexBuilder from GrGLShaderBuilder by commit-bot@chromium.org · 11 years ago
  25. 74a3a21 Rename ShaderType enum to ShaderVisibility by commit-bot@chromium.org · 11 years ago
  26. 1f2f338 Split SkDevice into SkBaseDevice and SkBitmapDevice by robertphillips@google.com · 11 years ago
  27. 7ab7ca4 Fix case where GrGLEffectMatrix gives back a dangling ptr for the coords var name. by commit-bot@chromium.org · 11 years ago
  28. 7bd141d Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  29. 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
  30. b75233b Fix compiler warning/error in r10936 by robertphillips@google.com · 11 years ago
  31. 7ce661d Blur refactoring by robertphillips@google.com · 11 years ago
  32. 3b3ce3b Update SkLumaMaskXfermode partial coverage handling. by fmalita@google.com · 11 years ago
  33. eaa7797 Add luminance mask transfer modes. by commit-bot@chromium.org · 11 years ago
  34. 330313a My clang now doesn't complain about !"foo". by mtklein@google.com · 11 years ago
  35. 9b051a3 Revert r10830 (Split SkDevice out of SkRasterDevice) until we can get Chromium ready. by robertphillips@google.com · 11 years ago
  36. 3055b70 Split SkDevice out of SkBitmapDevice by robertphillips@google.com · 11 years ago
  37. 7425c12 Refactor GrGLUniformManager::UniformHandle to initialize itself by default by commit-bot@chromium.org · 11 years ago
  38. 96ae688 effects: Replaces uses of GrAssert with SkASSERT. by commit-bot@chromium.org · 11 years ago
  39. d55e357 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  40. f44fcdc Upstreaming DropShadowImageFilter into skia, from Blink by junov@chromium.org · 11 years ago
  41. 1c4c9ef Move SkComposeImageFilter into its own {.h, .cpp} files by commit-bot@chromium.org · 11 years ago
  42. 9c8b4ea Reverting r10583: Upstreaming DropShadowImageFilter into skia, from Blink by jvanverth@google.com · 11 years ago
  43. d8e4024 Upstreaming DropShadowImageFilter into skia, from Blink by junov@chromium.org · 11 years ago
  44. 1aa54bf Added ctm matrix to GPU path by commit-bot@chromium.org · 11 years ago
  45. 350b4d5 Remove SkBlendImageFilter, and all tests. Its functionality has been subsumed by SkXfermodeImageFilter. by senorblanco@chromium.org · 11 years ago
  46. 76015b0 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  47. d71732a Optimize the blur convolution by only applying domain clamping where necessary. Split the blur convolution into left and right margins which have clamping applied and a center portion which doesn't. Also reorder the convolve_gaussian() parameters to match GrConvolutionEffect params. Correctness is covered by existing tests; performance is covered by BlurImageFilter bench. by senorblanco@chromium.org · 11 years ago
  48. 38bad32 fold SK_CPU_HAS_CONDITION_INSTR through as always defined by commit-bot@chromium.org · 11 years ago
  49. 17ad2bd Fix quickReject computation for blurs by robertphillips@google.com · 11 years ago
  50. e8232bc Small optimization for convolution shader: only apply the bounds check in direction of convolution, not both. This requires generating different versions of the shader depending on direction. by senorblanco@chromium.org · 11 years ago
  51. 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
  52. b86add1 make the filter mode for GrTextureAccess an enum so we can plumb down by humper@google.com · 11 years ago
  53. 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
  54. 58c856a Reverting r10251 (Implement crop rect for SkImageFilter) due to Chromium-side unit test failures by robertphillips@google.com · 11 years ago
  55. 6ae6383 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  56. 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
  57. 9cfc83c stop using bitmap-filter flags outside of paint itself, as a step towards really changing them into an enum by reed@google.com · 11 years ago
  58. fd03d4a Replace all instances of GrRect with SkRect. by commit-bot@chromium.org · 11 years ago
  59. 977409a Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  60. cce4102 Added newlines at the end of SkGpuBlurUtils.* by robertphillips@google.com · 11 years ago
  61. 736dd03 Move gaussianBlur functionality to src\effects by robertphillips@google.com · 11 years ago
  62. 42dacab Make GrPaint have a variable sized array of color and coverage stages rather than a fixed size. by commit-bot@chromium.org · 11 years ago
  63. c1a8684 use SkIntToScalar by reed@google.com · 11 years ago
  64. 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
  65. cb6d97c Revert of r9902 (Consider conical shader opaque if it covers by robertphillips@google.com · 11 years ago
  66. 9839320 Removing highp variables from perlin noise shader by commit-bot@chromium.org · 11 years ago
  67. 5e6c355 Consider conical shader opaque if it covers entire plane. by commit-bot@chromium.org · 11 years ago
  68. 1842adf Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  69. 3cc820c Fix for r9888 bug by robertphillips@google.com · 11 years ago
  70. 4914931 Add canFilterMaskGPU & filterMaskGPU to SkMaskFilter by robertphillips@google.com · 11 years ago
  71. b8d00db Change undefined SkGpuRenderTarget and SkGpuTexture forward declares to GrRenderTarget and GrTexture. by commit-bot@chromium.org · 11 years ago
  72. 6ba4572 remove dst/rendertarget support for kARGB_4444_Config by reed@google.com · 11 years ago
  73. 344cf45 *** Perlin noise GM needs to be rebaselined *** by commit-bot@chromium.org · 11 years ago
  74. b1b3d51 Disable the unpremultiply/remultiply in SkArithmeticMode, both raster and GPU, since the SVG spec actually defines arithmetic compositing to operate on premul colours directly. by senorblanco@chromium.org · 11 years ago
  75. 0a1c387 Remove the non-separable blur because it is no longer used. by commit-bot@chromium.org · 11 years ago
  76. d537af5 Fixed gpu perlin noise on Windows by sugoi@google.com · 11 years ago
  77. e904b45 Fix leak of effect in SkXfermodeImageFilter::filterImageGPU() by commit-bot@chromium.org · 11 years ago
  78. 86fc266 Implement SkXfermode image filter. This required changing the signature of SkXfermode::asNewEffectOrCoeffs(), to add an optional background texture. by senorblanco@chromium.org · 11 years ago
  79. 277c3f8 bump picture version since SkPath has changed (conics) by reed@google.com · 11 years ago
  80. fa2f2a4 Revert "add asserts to point<-->verb helpers" by reed@google.com · 11 years ago
  81. 7950a9e add asserts to point<-->verb helpers by reed@google.com · 11 years ago
  82. 1afa3ff Speculative fix for Tegra-based Androids: don't try to unpremultiply dstColor in-place; put it in a temporary. by senorblanco@chromium.org · 11 years ago
  83. 9a6eb0e Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff(). by senorblanco@chromium.org · 11 years ago
  84. 06e7424 Revert "Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff()." by senorblanco@chromium.org · 11 years ago
  85. 6b6c1dc Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff(). by senorblanco@chromium.org · 11 years ago
  86. 35c733c Fix alpha computation in SkArithmeticMode. by senorblanco@chromium.org · 11 years ago
  87. c7d624e check texture is not NULL to aovid segmentation fault. If the texture created by GrLockAndRefCachedBitmapTexture() is NULL, ColorTableEffect::Create will cause segmentation fault by GrAssert in src/gpu/GrTextureAccess.cpp. The simple patch checked texture to avoid segment fault, and returned a NULL effect to the caller. The caller will handle NULL effect, for example, it will set default effect. by commit-bot@chromium.org · 11 years ago
  88. 6840076 Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  89. 3d3a860 Add flag to gradients to interpolate colors in premul space. Experimental API to encapsulate the shared parameters for all gradients into a struct. by reed@google.com · 11 years ago
  90. 3e2345a Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  91. 437d6eb use Descriptor struct to encapsulate all the common paramaeters between our various gradient types. If we like it, might promote it to the public API. by reed@google.com · 11 years ago
  92. 0fb775c Fix compiler error/warning in r9255 by robertphillips@google.com · 11 years ago
  93. 1202c2a Add printing of SkColorFilter-derived classes to debugger by robertphillips@google.com · 11 years ago
  94. f0656c1 Reverting r9245 due to Chrome breakage by robertphillips@google.com · 11 years ago
  95. be1d02e Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  96. 8f83825 Add methods to SkLayerDrawLooper to allow adding layers on top by commit-bot@chromium.org · 11 years ago
  97. b83cb9b add SkLerpXfermode by reed@google.com · 11 years ago
  98. 83d1a68 Add special handling of rectori case for gpu by robertphillips@google.com · 11 years ago
  99. 5da3f22 Fix includes in SkLayerDrawLooper.h. It was previously not possible to by commit-bot@chromium.org · 11 years ago
  100. 8d47ddc Make GrGLShaderBuilder check whether GrEffect advertised that it would require the dst color or fragment position by commit-bot@chromium.org · 11 years ago