1. 4e90e3e Have SkRasterPipelineBlitter take over for F16 when it can. by mtklein · 8 years ago
  2. bd2bd5c lock special-raster while the caller's bitmap is in-scope by reed · 8 years ago
  3. 56586b6 SkPDF: re-work SkPDFUtils::FloatToDecimal by halcanary · 8 years ago
  4. 1ab9e59 Google3 <functional> has a global "using std::plus"... by mtklein · 8 years ago
  5. 8fe485b Just pass the draw context to paint conversion by brianosman · 8 years ago
  6. 20a272d Fix debugger build by specifying nullptr for color space. by chrishtr · 8 years ago
  7. 6466544 stages for most xfermodes by mtklein · 8 years ago
  8. d598f79 SkSL performance improvements (plus a couple of minor warning fixes) by ethannicholas · 8 years ago
  9. d9ddad2 add SK_SUPPORT_LEGACY_BITMAP_GETTEXTURE for out-of-date google3 callers by reed · 8 years ago
  10. c7ec7c9 remove/deprecate SkBitmap::getTexture, as it now always returns false by reed · 8 years ago
  11. 2adecda add gm to test bleed with downscale by reed · 8 years ago
  12. 2c9e200 remove fClipStack and attach/deattach-from-canvas by reed · 8 years ago
  13. d0e95a5 typedef uint16_t SkGlyphID by halcanary · 8 years ago
  14. 1d35231 Remove long-running sk_linear_to_srgb test for ASAN in public.bzl. by benjaminwagner · 8 years ago
  15. b5acf6e Add a clamp stage to SkRasterPipelineBlitter. by mtklein · 8 years ago
  16. 8bc90e2 fix fuzz by caryclark · 8 years ago
  17. 05e3c39 Arithmetic xfermode stage. by mtklein · 8 years ago
  18. 2869847 webpages_playback: Make --upload_to_partner_bucket work without --upload by borenet · 8 years ago
  19. 1638c0d Add destination color space to AsFPArgs. Eliminates last XFORMTODO. by brianosman · 8 years ago
  20. b560b5c lockPixelsAreWritable is deprecated by reed · 8 years ago
  21. 057ae8a Fix misdetection of rectangles in SkPath::IsSimpleClosedRect. by bsalomon · 8 years ago
  22. 5fa38fa Update SKP version by update-skps · 8 years ago
  23. 0e72e9e Remove asserts on scissor size in Vulkan by egdaniel · 8 years ago
  24. 8e4373f Have SkRasterPipelineBlitter take over for 565 when it can. by mtklein · 8 years ago
  25. 5544795 Convert XYZ values from PNGs to D50 by msarett · 8 years ago
  26. 86a6c6d In the current code, tiling and bilerp sampling are strongly tied together. They can be separated by taking advantage of observation that translating a sample point into filter points in the bilerp stage the filter points will be at most 0.5 outside the tile. This allows simplified repositioning for the various tiling modes; clamp and mirror use min and max while repeat has max -> 0 and 0-> max. This allows bilerp to simply treat the filter points that fall off the tile. This allows tiling and bilerp sampling to be totally separate. by herb · 8 years ago
  27. 9c1d45d Always init SkPathRef variables. by senorblanco · 8 years ago
  28. a1ce216 DM: don't redirect stderr to verbose.log by mtklein · 8 years ago
  29. f149169 Correct advances for 'monospace' fonts in PDF. by bungeman · 8 years ago
  30. 9a5c47f Add SkRasterPipeline blitter. by mtklein · 8 years ago
  31. 839345d Bundle SkShader::asFragmentProcessor arguments in a struct by brianosman · 8 years ago
  32. 8a8accb limit number of searched roots by caryclark · 8 years ago
  33. 4c6e47a Recycle small uniform buffers. by jvanverth · 8 years ago
  34. 500bb3e Connect dst color space in a few places (removing TODOs) by brianosman · 8 years ago
  35. aa29b27 Revert of Add SkRasterPipeline blitter. (patchset #18 id:340001 of https://codereview.chromium.org/2146413002/ ) by mtklein · 8 years ago
  36. 5bfee98 Creating framework for drawShadowedPicture by vjiaoblack · 8 years ago
  37. cbecb08 Allow GrReducedClip to take non-integer query bounds by csmartdalton · 8 years ago
  38. 3011e33 Add SkRasterPipeline blitter. by mtklein · 8 years ago
  39. d50e240 Fix SkClipStack bug with inverse-filled difference elements by csmartdalton · 8 years ago
  40. aec570e Don't ask GLX for EGL procs. by mtklein · 8 years ago
  41. 1543487 Change SKPs to new asset management format by borenet · 8 years ago
  42. d01a8f4 Fix SW sRGB dst + LCD coverage bug. by mtklein · 8 years ago
  43. db2cb10 Update SkImage_NewFromTexture test, to just test release by brianosman · 8 years ago
  44. bb24383 Revert of Retract PipelineBuilder some more (patchset #9 id:160001 of https://codereview.chromium.org/2092893003/ ) by bsalomon · 8 years ago
  45. 396fcdb Cleanup of code that converts from GPU-backed resources to SkImageInfo by brianosman · 8 years ago
  46. a5ba329 Add clamp to sk_linear_to_srgb, reorder instructions by msarett · 8 years ago
  47. bddb372 Add SK_SUPPORT_LEGACY_ACCESSBITMAP to public.bzl. by benjaminwagner · 8 years ago
  48. da626aa Revert of Redo Tiling (patchset #14 id:260001 of https://codereview.chromium.org/2134893002/ ) by jcgregorio · 8 years ago
  49. 2259c5f Disable CopySurface test on Nexus 10 for flakiness by bsalomon · 8 years ago
  50. 6af0c95 GN: restore gn.py partly as fetch-gn by mtklein · 8 years ago
  51. cdeff81 conic fuzz fix by caryclark · 8 years ago
  52. 901257a GN: remove hooks again by mtklein · 8 years ago
  53. 43d707c No symlink. The bots are not running hooks anyway. by mtklein · 8 years ago
  54. 5379051 Fix SkScalerContext_FreeType::generateFontMetrics. by bungeman · 8 years ago
  55. dfe4f2e Add SkColorSpace to GrDrawContext by brianosman · 8 years ago
  56. 8602ede In the current code, tiling and bilerp sampling are strongly tied together. They can be separated by taking advantage of observation that translating a sample point into filter points in the bilerp stage the filter points will be at most 0.5 outside the tile. This allows simplified repositioning for the various tiling modes; clamp and mirror use min and max while repeat has max -> 0 and 0-> max. This allows bilerp to simply treat the filter points that fall off the tile. This allows tiling and bilerp sampling to be totally separate. by herb · 8 years ago
  57. 959d45b Miscellaneous color space refactors by msarett · 8 years ago
  58. 4eaa320 GN: add missing .exe by mtklein · 8 years ago
  59. d7bae18 Reenable support for CHROMIUM_set_uniform_location by bsalomon · 8 years ago
  60. a339bb0 let line/cubic intersect at four spots by caryclark · 8 years ago
  61. 7fbfbbe Basic standalone GN configs. by mtklein · 8 years ago
  62. 680e2e9 Fixed GM:lightingshader2 size by dvonbeck · 8 years ago
  63. 2895eeb Retract PipelineBuilder some more by robertphillips · 8 years ago
  64. f25bff9 Drop support for libjpeg-turbo < 1.2 in SkJpegCodec by msarett · 8 years ago
  65. 530c844 Remove unnecessary getColorSpace() API from SkCodec by msarett · 8 years ago
  66. a95220d Setup system in Vulkan to reuse VkDescriptorSet allocations. by egdaniel · 8 years ago
  67. 8168194 allow curves on side of lines to be very small by caryclark · 8 years ago
  68. 85f0e63 Add "skp" asset by borenet · 8 years ago
  69. 95302da Creating framework for drawShadowedPicture by vjiaoblack · 8 years ago
  70. b5dc405 add pathops debugging to fuzz by caryclark · 8 years ago
  71. f41ae2f limit the number of points in SkDashPathEffect::asPoints by lsalzman · 8 years ago
  72. f292a0c Remove SkGrPixelRef by robertphillips · 8 years ago
  73. 725266a Add vulkan compile bot to CQ by egdaniel · 8 years ago
  74. 33d3258 Revert of Creating framework for drawShadowedPicture (patchset #14 id:260001 of https://codereview.chromium.org/2146073003/ ) by vjiaoblack · 8 years ago
  75. 5fa7f30 Remove DrawFace enum from GrPipelineBuilder by robertphillips · 8 years ago
  76. 0ae097d Creating framework for drawShadowedPicture by vjiaoblack · 8 years ago
  77. d2b6d64 Minor change to Ganesh path renderers by robertphillips · 8 years ago
  78. 7b33bf1 fix builder fuzz by caryclark · 8 years ago
  79. 5d1676c Revert of Remove DrawFace enum from GrPipelineBuilder (patchset #2 id:20001 of https://codereview.chromium.org/2165283002/ ) by robertphillips · 8 years ago
  80. 9f071d1 Update build_command_buffer.py to copy libcommand_buffer_gles2.so from the correct dir on linux by bsalomon · 8 years ago
  81. da152eb Remove DrawFace enum from GrPipelineBuilder by robertphillips · 8 years ago
  82. 1f3923e Deprecate SkDevice::accessBitmap method by robertphillips · 8 years ago
  83. afbf71d Adding color space to SkSpecialImage by brianosman · 8 years ago
  84. 1b93bd1 Refactor parsing and storage of SkGammas by msarett · 8 years ago
  85. 9b43094 Roll buildtools for latest GN binary. by mtklein · 8 years ago
  86. 1597628 fix fuzzer bug by caryclark · 8 years ago
  87. ec336de Trigger bots and upload images to Gold by msarett · 8 years ago
  88. 59e3039 docs: Add info on using blamer to the sheriffing docs. by jcgregorio · 8 years ago
  89. 0c90247 Correct sRGB <-> linear everywhere. by mtklein · 8 years ago
  90. 456bf30 Revert of Refactor parsing and storage of SkGammas (patchset #8 id:280001 of https://codereview.chromium.org/2117773002/ ) by msarett · 8 years ago
  91. ad7604b Have MakeFromImage fission the SkImage into a raster or a texture (patchset #1 id:1 of https://codereview.chromium.org/2167813002/ )" by reed · 8 years ago
  92. 3fb8720 Revert of have MakeFromImage fission the SkImage into a raster or a texture (patchset #1 id:1 of https://codereview.chromium.org/2167813002/ ) by reed · 8 years ago
  93. 959ccc1 Refactor parsing and storage of SkGammas by msarett · 8 years ago
  94. a61bfc6 have MakeFromImage fission the SkImage into a raster or a texture by reed · 8 years ago
  95. dddbe38 Adding an SkColorSpace to SkImage_Gpu by brianosman · 8 years ago
  96. 7d46f4a exclude unused functions when mac uses freetype (for pdf) by caryclark · 8 years ago
  97. 2aec3ff Revert of Refactor parsing and storage of SkGammas (patchset #7 id:220001 of https://codereview.chromium.org/2117773002/ ) by msarett · 8 years ago
  98. cf5c846 remove dead methods now that we use specials exclusively for imagefilters by reed · 8 years ago
  99. e499adf Use dFdx in Vulkan to address distance field issues. by jvanverth · 8 years ago
  100. 566ea9b Tune linear->sRGB constants to round-trip all bytes. by mtklein · 8 years ago