1. 15393c7 Add missing SK_API define. by tfarina@chromium.org · 13 years ago
  2. 276a295 Add support for SkImageRef_ashmem. by djsollen@google.com · 13 years ago
  3. d163636 Added Reload icon by robertphillips@google.com · 13 years ago
  4. 8e41a16 Add original resources back and update code to match by robertphillips@google.com · 13 years ago
  5. dab9b4f use SkPath::isNestedRects() to apply blurred nine-patch by reed@google.com · 13 years ago
  6. 4f65a77 Fix a memory leak in skdiff that happens when the by scroggo@google.com · 13 years ago
  7. e099bc4 3 minor fixes for debugger by robertphillips@google.com · 13 years ago
  8. 808b70f modify gm to have a non-uniform donut for testing by reed@google.com · 13 years ago
  9. 8e2999f Protect against unref/ref of stencil buffer. by bsalomon@google.com · 13 years ago
  10. 56f233a add two nested rect detector to path by caryclark@google.com · 13 years ago
  11. 1542354 Revert r6469, "Turn on separable blur." by senorblanco@chromium.org · 13 years ago
  12. e7a709a Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  13. ec7bf37 Whitespace change to trigger rebuild after network hiccup by borenet@google.com · 13 years ago
  14. 013c5d9 In SkBitmapHeap, defer adding owners for new bitmaps. by scroggo@google.com · 13 years ago
  15. 6ec1526 shape ops work in progress by caryclark@google.com · 13 years ago
  16. 2c48c5e Turn on separable blur. by senorblanco@chromium.org · 13 years ago
  17. 4ce738b Extract transform_scanline_XXXX functions into transform_scanline.h for code-sharing by epoger@google.com · 13 years ago
  18. 886b25f Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  19. c438130 Separable blur: subpixel blurring. We approximate intermediate values of blur for even kernel sizes by using a kernel of size N offset to the left in the first pass, a kernel of size N offset to the right in the second pass, and a centered kernel of size N + 1 in the third pass. This required adding support for asymmetrical radii to the box blur. by senorblanco@chromium.org · 13 years ago
  20. 59d968f use correct blend proc instead of fourbyteinterp, since the src may not be opaque by reed@google.com · 13 years ago
  21. aef7361 flag the GM if we're in deferred-canvas mode, to work-around bug trying to by reed@google.com · 13 years ago
  22. 13201e7 fold kClear_Mode into kSrc_Mode, and make kSrc_Mode go faster by reed@google.com · 13 years ago
  23. b1c42bb shape op work in progress by caryclark@google.com · 13 years ago
  24. 1588974 use #if SK_SUPPORT_GPU to guard references to gpudevice by mike@reedtribe.org · 13 years ago
  25. 92aa756 use gpu surface to match canvas by mike@reedtribe.org · 13 years ago
  26. 884e60b Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  27. 908276b Reorder the separable blur passes into XXX/YYY, with an image transpose on the last pass of each group. This results in continuguous memory reads in all passes, giving a 22% speedup on theverge.skp over the previous separable implementation, and a 30%-50% improvement over the existing implementation (depending on platform). by senorblanco@chromium.org · 13 years ago
  28. 0561a3c need this for prev. cl by reed@google.com · 13 years ago
  29. 2d078b6 add bench for srcmode by reed@google.com · 13 years ago
  30. 60712f3 use DEF_BENCH() macro to clean up factory registrations -- no other change by reed@google.com · 13 years ago
  31. 86eca47 draw offscreen so we can see the alpha-channel we are writing by reed@google.com · 13 years ago
  32. fe830a4 Fix debugger crash when SK_PICTURE_PROFILING_STUBS isn't defined by robertphillips@google.com · 13 years ago
  33. 82b4f32 whitespace by epoger@google.com · 13 years ago
  34. a4f8137 update srcmode GM to include aa/bw and gradients by reed@google.com · 13 years ago
  35. 2bde91d Add profiling to debugger by robertphillips@google.com · 13 years ago
  36. 5dd85a4 add gm for srcmode (and clearmode) in prep for optimization work by reed@google.com · 13 years ago
  37. 0f5891c remove (unused) debugging global by reed@google.com · 13 years ago
  38. b947625 remove unused (and undefined) SkColorSpace parameter. by mike@reedtribe.org · 13 years ago
  39. 7a722f0 silence excessive printf noise from SkScalerContext_FreeType::generateMetrics for glyph out-of-range. by mike@reedtribe.org · 13 years ago
  40. b3b6a60 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  41. 9b21c25 Add SkMatrix44::setTranspose by vollick@chromium.org · 13 years ago
  42. 57cff8d shape ops work in progress by caryclark@google.com · 13 years ago
  43. 459e662 Remove a warning for comparing signed and unsigned integers. by scroggo@google.com · 13 years ago
  44. 260eae5 move setDevice() to protected: in preparation for its eventual demise by reed@google.com · 13 years ago
  45. cd5f7e2 mark SkCanvas::setDevice as DEPRECATED -- need to remove all callers in chrome by reed@google.com · 13 years ago
  46. cec8de6 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  47. 9bee33a Add a conservativelyContainsRect function to SkPath. by bsalomon@google.com · 13 years ago
  48. fbb0ed9 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  49. 454008a comment-only change to gm/tests/run.sh by epoger@google.com · 13 years ago
  50. 72fac35 Build fix. Unreviewed. by senorblanco@chromium.org · 13 years ago
  51. 9a5b570 Allow SkPicture-derived classes install their own SkPicturePlayback-derived object by robertphillips@google.com · 13 years ago
  52. 71f0f34 A new implementation of mask blurs, using separable X/Y passes. Disabled for now. by senorblanco@chromium.org · 13 years ago
  53. 5596a69 Add support for SK_MSCALAR_IS_FLOAT by vollick@chromium.org · 13 years ago
  54. a09e883 Update filter tool to allow input directory. by djsollen@google.com · 13 years ago
  55. c3c8216 Fix linux compiler error with the debugger app. by djsollen@google.com · 13 years ago
  56. 6f6dfb4 Added profiling stubs to SkPicturePlayback by robertphillips@google.com · 13 years ago
  57. 3959a76 Changing the visibility of SkMatrix44::determinant(). by vollick@chromium.org · 13 years ago
  58. 30c174b Make SkPath cache the result of cheapComputeDirection. by bsalomon@google.com · 13 years ago
  59. 000e2fe Removing files accidently submitted by Skia_Periodic_House_Keeping by rmistry@google.com · 13 years ago
  60. 20fb0c7 add tests for degenerate serifs to computeDirection by reed@google.com · 13 years ago
  61. 57f7abc Maintain failedTests list within GMMain object by epoger@google.com · 13 years ago
  62. c8136d8 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  63. 0d92353 Fix Linux link errors for some targets by adding -lX11 to gpu.gyp's by senorblanco@chromium.org · 13 years ago
  64. dd31131 add const to src parameter for mapMScalars() by reed@google.com · 13 years ago
  65. d26c706 Update debugger GUI to have profile button & list widget to optionally display time by robertphillips@google.com · 13 years ago
  66. 4349c31 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  67. a413a53 Add a self-test for gm, similar to our self-test for skdiff. by epoger@google.com · 13 years ago
  68. 4e4d75b Update filter tool to handle PNG encoded SkBitmaps by robertphillips@google.com · 13 years ago
  69. 426648e Tell CG ImageEncoder that a bitmap is opaque if it is. by scroggo@google.com · 13 years ago
  70. 2e0c79f Revert 6351 due to bugs. by bsalomon@google.com · 13 years ago
  71. 453995e Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  72. 31143cf shape ops work in progress by caryclark@google.com · 13 years ago
  73. 3fb91a1 use SKIRect::centerX,Y by reed@google.com · 13 years ago
  74. 1ea95be add explicit mapScalars and mapMScalars entry-points, instead of just map() by reed@google.com · 13 years ago
  75. 20d4467 simplify macros, since we no longer support scalar == fixed by reed@google.com · 13 years ago
  76. 80b577e add quick-n-dirty test for concat on matrix44 by reed@google.com · 13 years ago
  77. caa3a3b When looking for the head table directory entry, compare against the current entry and not the name table entry. by bungeman@google.com · 13 years ago
  78. ce7ffac report max pixel error on failure, rather than the hex of the first mismatched pixel by reed@google.com · 13 years ago
  79. d729b3e add entry-point to SkMaskFilter to fast-path rectangles. by reed@google.com · 13 years ago
  80. d9f7503 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  81. 6849279 Adds a file for revision annotations on dashboard. by bensong@google.com · 13 years ago
  82. 6898d52 add centerX() and centerY() to SkIRect (because they made me) by reed@google.com · 13 years ago
  83. fc5100a use DEF_BENCH to simplify lots of registrations by reed@google.com · 13 years ago
  84. fe4e491 Fix texture domain clipping assertion. It is OK to have a degenerate domain. by bsalomon@google.com · 13 years ago
  85. 6794a25 Apply intersect rects to earlier clip elements and skip rects when possible. by bsalomon@google.com · 13 years ago
  86. 59bfb12 Update WIC Image decoder to unpremul colors before save by robertphillips@google.com · 13 years ago
  87. 9eb9697 Update SampleApp to handle PNG encoded skps by robertphillips@google.com · 13 years ago
  88. 72b2e6f Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  89. 91c2f07 Fix for Chrome mac_gpu compiler failure by robertphillips@google.com · 13 years ago
  90. 79fc6fc Add Git support to the simple rebaseline tool. Do SVN commands only in an svn checkout. by senorblanco@chromium.org · 13 years ago
  91. 52e91bf check to see if CGImage already knows if we're opaque by reed@google.com · 13 years ago
  92. e8ca6c6 Combine multiple intersecting rects in SkClipStack::Iter. by bsalomon@google.com · 13 years ago
  93. 4f6fba3 Whitespace change to trigger bots after r6337 by borenet@google.com · 13 years ago
  94. 2a7579d CG imagedecoder never sets isOpaque, so add method to SkBitmap to compute that, by reed@google.com · 13 years ago
  95. 4a26d9d Add a new PictureRenderer that draws the picture then breaks up into tiles. by scroggo@google.com · 13 years ago
  96. a9e3a36 Add an option to render_pictures to rerecord the pictures with PNG encoded bitmaps. by scroggo@google.com · 13 years ago
  97. adc58e4 Unit testing for SkTileGrid Review URL: https://codereview.appspot.com/6827053 by junov@chromium.org · 13 years ago
  98. e3e940c Add low blur and AAClip options to picture bench. by caryclark@google.com · 13 years ago
  99. 7b7cdd1 Some improvements to reduce the number of pixels touched in generating alpha clip masks by bsalomon@google.com · 13 years ago
  100. 8f0a7b8 Add temporary interfaces in blur and clip to by caryclark@google.com · 13 years ago