1. aeab8ea fix linear gradient assert, by explicitly clamping by reed · 9 years ago
  2. 0152cc3 remove 565 effects shaders by caryclark · 9 years ago
  3. 6f37b4a Unify some SkNx code by mtklein · 9 years ago
  4. 7ea439b Create GLSLUniformHandler class for gpu backend by egdaniel · 9 years ago
  5. c2e0ac4 Don't use the Sk4f gradient impl without SIMD by fmalita · 9 years ago
  6. 9db43ac Add Sk4f::ToBytes(uint8_t[16], Sk4f, Sk4f, Sk4f, Sk4f) by mtklein · 9 years ago
  7. 2b46913 Take span len into account when determining whether gradient is vertical by fmalita · 9 years ago
  8. de3aac8 use pinned value during lerp for vertical gradients by reed · 9 years ago
  9. 8d38102 Fix nearly-vertical gradient assert by fmalita · 9 years ago
  10. a2e3e0f Move glsl onto EmitArgs struct for emitCode by egdaniel · 9 years ago
  11. 4ca2e60 Add ShaderBuilders to EmitArgs and remove gettings from ProgBuilder. by egdaniel · 9 years ago
  12. f3182eb Implement multi-color-stops in linear gradients using Sk4f by reed · 9 years ago
  13. 57d3b03 Rename some processor functions from GL to GLSL by egdaniel · 9 years ago
  14. 64c4728 Make all GrFragmentProcessors GL independent. by egdaniel · 9 years ago
  15. 4a33952 Bye bye processor data manager. by bsalomon · 9 years ago
  16. f1b7a1d Make skpaint->grpaint flow work for composing draws (verts and atlas) by bsalomon · 9 years ago
  17. 87ba62e Replace GrExtractAlphaFragmentProcessor with DstIn compose processor by bsalomon · 9 years ago
  18. c21b09e Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* by bsalomon · 9 years ago
  19. a511e6a Revert of Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* (patchset #8 id:140001 of https://codereview.chromium.org/1316513002/ ) by rmistry · 9 years ago
  20. ecfdc25 Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* by bsalomon · 9 years ago
  21. 96fcdcc Style Change: NULL->nullptr DOCS_PREVIEW= https://skia.org/?cl=1316233002 by halcanary · 9 years ago
  22. 385fe4d Style Change: SkNEW->new; SkDELETE->delete by halcanary · 9 years ago
  23. f582282 change asABitmap to isABitmap on shader by reed · 9 years ago
  24. b1daa86 When getGLInstance is called on a frag proc, the resulting GrGLFragmentProcessor will be the root of a tree of GrGLFragmentProcessors that mirrors the GrFragmentProcessor's tree. This allows setData() to be called recursively (removing the responsibility from compose shader) and allows gl instances direct access to their children gl instances so they can emit their code. by wangyix · 9 years ago
  25. 4b3050b Added registerChild; transforms, textures, glKey automatically handled. by wangyix · 9 years ago
  26. 7c157a9 Added GrGLFragmentProcessor::EmitArgs struct for use with emitCode() by wangyix · 9 years ago
  27. 9cc1775 rename GrShaderDataManager -> GrProcessorDataManager by joshualitt · 9 years ago
  28. 0067ff5 fix up test create functions by joshualitt · 9 years ago
  29. b245605 more threading of GrShaderDataManager by joshualitt · 9 years ago
  30. 8ca93e7 Initial CL to create dummy GrShaderDataManager and thread it through by joshualitt · 9 years ago
  31. 4b91f76 rename GrDrawTargetCaps to GrCaps by bsalomon · 9 years ago
  32. 4eaf9ce create GrTestUtils.h, move some common functions into it by joshualitt · 9 years ago
  33. cfc1886 Use GLSLCaps for creating processor keys and GLSL-specific programs by jvanverth · 9 years ago
  34. 36352bf C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} by mtklein · 9 years ago
  35. 9d91eb3 add more checks for computing clamp counts, remove dead code by reed · 10 years ago
  36. 72c9faa Fix up all the easy virtual ... SK_OVERRIDE cases. by mtklein · 10 years ago
  37. caf7e93 improve precision of gradients (disabled for now) by reed · 10 years ago
  38. 5531d51 remove view matrix from context by joshualitt · 10 years ago
  39. 912ed6e Cleanup: Mark some overridden methods with 'SK_OVERRIDE'. by tfarina · 10 years ago
  40. cc695fe Gradient shaders: make fPtsToUnit const, pre-cache getType(). by mtklein · 10 years ago
  41. eb2a676 Remove backend factories by joshualitt · 10 years ago
  42. 3f3b3d0 Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. by mtklein · 10 years ago
  43. 6e78293 Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (patchset #1 id:1 of https://codereview.chromium.org/769953002/) by mtklein · 10 years ago
  44. 52c2935 Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. by mtklein · 10 years ago
  45. 267ce48 remove proc key by joshualitt · 10 years ago
  46. 60030bc remove one place we read from gpu key in effects by joshualitt · 10 years ago
  47. 1598899 FPs now use the correct builder types(just a rename) by joshualitt · 10 years ago
  48. b0a8a37 Patch to create a distinct geometry processor. The vast majority of this patch by joshualitt · 10 years ago
  49. 49586be removing GrDrawEffect by joshualitt · 10 years ago
  50. 08da4f2 Revert of removing GrDrawEffect (patchset #4 id:60001 of https://codereview.chromium.org/571163002/) by joshualitt · 10 years ago
  51. 8ddbe8b removing GrDrawEffect by joshualitt · 10 years ago
  52. 49f085d "NULL !=" = NULL by bsalomon · 10 years ago
  53. 30ba436 Initial refactor of shaderbuilder to prepare for geometry shaders by joshualitt · 10 years ago
  54. 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
  55. addf2ed add localMatrix to gradient Descriptor by reed · 10 years ago
  56. 63e99f7 Allow GrGLEffects to produce variable length keys. by bsalomon · 10 years ago
  57. 848faf0 This moves us towards variable length effect keys. The overall program key now allows for it. After the header it stores an array of offsets to effect keys. This allows us to grab the effect keys to pass to effects when they generate code. It also ensures that we can't get a collision by sets of keys that are different lengths but are the same when appended together. by bsalomon · 10 years ago
  58. 83d081a Goodbye GrEffectRef. by bsalomon · 10 years ago
  59. 55fad7a Remove GrEffect::CreateEffectRef and GrEffect::AutoEffectRef. by bsalomon · 10 years ago
  60. 97b9ab7 Make GrDrawState and GrPaint take GrEffect* instead of GrEffectRef*. by bsalomon · 10 years ago
  61. 969842a Revert of Make GrDrawState and GrPaint take GrEffect* instead of GrEffectRef*. (https://codereview.chromium.org/377503004/) by reed · 10 years ago
  62. 2011fe9 Make GrDrawState and GrPaint take GrEffect* instead of GrEffectRef*. by bsalomon · 10 years ago
  63. 9de5b51 SkShader::asNewEffect Refactoring by dandov · 10 years ago
  64. eaa6749 add localmatrix param to asNewEffect by reed@google.com · 10 years ago
  65. 96fb748 add localmatrix parameter to shader's asNewEffect by commit-bot@chromium.org · 10 years ago
  66. ce56d96 Remove SkShader virtual method validContext by commit-bot@chromium.org · 10 years ago
  67. e901b6d create struct to hold all the params passed around for shader::context by commit-bot@chromium.org · 10 years ago
  68. 9c9005a Move SkShader::fLocalMatrix into SkShader constructor. by commit-bot@chromium.org · 10 years ago
  69. 87fcd95 Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/249643002/) by commit-bot@chromium.org · 10 years ago
  70. 6e5671d Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/) by commit-bot@chromium.org · 10 years ago
  71. bc2f1dc Extract most of the mutable state of SkShader into a separate Context object. by commit-bot@chromium.org · 10 years ago
  72. 53783b0 Revert of Extract most of the mutable state of SkShader into a separate Context object. (https://codereview.chromium.org/207683004/) by commit-bot@chromium.org · 10 years ago
  73. 001f4ed Extract most of the mutable state of SkShader into a separate Context object. by commit-bot@chromium.org · 10 years ago
  74. 0f10f7b Allow toString capability to be toggled independent of developer mode. by commit-bot@chromium.org · 11 years ago
  75. 8b0e8ac Refactor read and write buffers. by commit-bot@chromium.org · 11 years ago
  76. 1915fd0 remove unused SkFixed and SkFract functions by reed@google.com · 11 years ago
  77. 77af680 Make GPU coord transforms automatic by bsalomon@google.com · 11 years ago
  78. e0e7cfe Change old PRG to be SkLCGRandom; change new one to SkRandom by commit-bot@chromium.org · 11 years ago
  79. 82d1223 Two and three color GPU gradients without textures. by bsalomon@google.com · 11 years ago
  80. 7ab7ca4 Fix case where GrGLEffectMatrix gives back a dangling ptr for the coords var name. by commit-bot@chromium.org · 11 years ago
  81. 38bad32 fold SK_CPU_HAS_CONDITION_INSTR through as always defined by commit-bot@chromium.org · 11 years ago
  82. 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
  83. c26d94f Move nested class GrDrawTarget::Caps out as GrDrawTargetCaps. by bsalomon@google.com · 11 years ago
  84. c781888 Attempt to reland 8264-5 with warning-as-error fixes. by bsalomon@google.com · 11 years ago
  85. 67e7cde revert 8265-8264 (broke build) by reed@google.com · 11 years ago
  86. ae81d5c Adds local coords to GrEffect system. by bsalomon@google.com · 11 years ago
  87. fc28bd5 remove obsolete build flag SK_IGNORE_GRADIENT_DITHER_FIX by reed@google.com · 12 years ago
  88. 73a9694 Use SkMWRandom in GLPrograms test. by bsalomon@google.com · 12 years ago
  89. 53009ba only take the vertical special-case for gradients when dx is exactly 0, as a by reed@google.com · 12 years ago
  90. ae97c06 remove vestiges of 32BIT_GRADIENT flag, as we always dither gradients now by reed@google.com · 12 years ago
  91. 6004029 Go from a 1x2 to a 2x2 dither cell, and change/simplify the logic for how we by reed@google.com · 12 years ago
  92. 9dde018 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  93. 55853db Move dither toggle logic into common helper functions, to make it easier to by reed@google.com · 12 years ago
  94. 3c2102c restore cache-count for gradients to p.o.2. so we can perform fancier dithering by reed@google.com · 12 years ago
  95. 6340a41 Let them eat GrEffectRef. by bsalomon@google.com · 12 years ago
  96. a1ebbe4 Change some function/vars from EffectPtr to EffectRef to reflect GrEffectPtr->GrEffectRef renaming. by bsalomon@google.com · 12 years ago
  97. 5d2cd20 Fix GPU-less build. by bsalomon@google.com · 12 years ago
  98. 0ac6af4 Wrap GrEffects in GrEffectPtr. by bsalomon@google.com · 12 years ago
  99. 76f9e93 Added print out of SkShader information to debugger by robertphillips@google.com · 12 years ago
  100. 84831ac fix all the false --> NULL issues in the gradient code by humper@google.com · 12 years ago