1. 11c9a55 Add SkData::NewFromFD. by bungeman@google.com · 11 years ago
  2. 135ece1 Added comment to SkDrawLooper fix by robertphillips@google.com · 11 years ago
  3. c117cba add bench for sk_memset16/32 by reed@google.com · 11 years ago
  4. 0274f93 update android_gdb_exe to work with skia shared lib by djsollen@google.com · 11 years ago
  5. f553d27 fix gm on android by djsollen@google.com · 11 years ago
  6. ecde97e yet another build fix for skia_launcher by djsollen@google.com · 11 years ago
  7. 2897931 Fix broken include path for directwrite backend by djsollen@google.com · 11 years ago
  8. e69a54b fix broken skia_launcher app by djsollen@google.com · 11 years ago
  9. cf89b6f Whitespace change to trigger rebuilds by borenet@google.com · 11 years ago
  10. 52f0297 Prepare skia for shared library build on android by djsollen@google.com · 11 years ago
  11. 2dd76d7 Hamfisted fix to drawLooper w/ 0 stages bug by robertphillips@google.com · 11 years ago
  12. ef7d98e Disable colortype GM due to crash by robertphillips@google.com · 11 years ago
  13. 76e1538 N7 performance trigger rebaselines after skp update by robertphillips@google.com · 11 years ago
  14. 26da7f0 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  15. e1613d8 fix another int -- float warning by reed@google.com · 11 years ago
  16. 42e2cf7 skip_picture in colortype gm for now by reed@google.com · 11 years ago
  17. 1b6a04f use SkIntToScalar to fix warning by reed@google.com · 11 years ago
  18. 7edec14 start a wrapper for color fonts by reed@google.com · 11 years ago
  19. a96627f prepare skia for shared library build on android by djsollen@google.com · 11 years ago
  20. cf5348f prepare skia for shared library build on android by djsollen@google.com · 11 years ago
  21. e2aad27 sort the glyphID arrays by reed@google.com · 11 years ago
  22. a20e42c Remove SK_API, from SkTSet. the template is not public. by edisonn@google.com · 11 years ago
  23. 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
  24. 70fdc12 All SKP files in Google Storage have been updated. (AddDashboardAnnotation) by rmistry@google.com · 11 years ago
  25. 277c3f8 bump picture version since SkPath has changed (conics) by reed@google.com · 11 years ago
  26. 2d76d93 Read and write pixel offset when serializing bitmaps. by scroggo@google.com · 11 years ago
  27. d593692 Fix iOS build. by scroggo@google.com · 11 years ago
  28. 8532236 Fix build. by scroggo@google.com · 11 years ago
  29. 7def5e1 Separate core and images project. by scroggo@google.com · 11 years ago
  30. f865be3 Add atlasing option to GameBench bench by robertphillips@google.com · 11 years ago
  31. 6dce113 fix warnings on MacOS 10.6 by humper@google.com · 11 years ago
  32. 04db316 More general GM for testing bitmap filtering, including checkerboards, images, and text. by humper@google.com · 11 years ago
  33. 1922c2e specialize bicubic filtering for scale-only by humper@google.com · 11 years ago
  34. 9e67935 Mark picture record benches as non-rendering. by bsalomon@google.com · 11 years ago
  35. e3823fd add script to scrape glyph usage in drawText calls by reed@google.com · 11 years ago
  36. 9166bf5 rebaseline.py: use argparse command-line flags for more flexibility by epoger@google.com · 11 years ago
  37. fa2f2a4 Revert "add asserts to point<-->verb helpers" by reed@google.com · 11 years ago
  38. 7950a9e add asserts to point<-->verb helpers by reed@google.com · 11 years ago
  39. a5d3e77 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  40. 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
  41. 137f134 Replace GrDrawState::AutoDeviceCoordDraw with GrDrawState::AutoViewMatrixRestore::setIdentity(). s by bsalomon@google.com · 11 years ago
  42. 9a6eb0e Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff(). by senorblanco@chromium.org · 11 years ago
  43. 1198e74 Use macros for new and delete in SkTemplates.h by scroggo@google.com · 11 years ago
  44. 84cfce1 use SkStream factory for files, and check for null (file-not-found) speedup sampleapp's animation by reed@google.com · 11 years ago
  45. ed8d6bb Moving updateClipConservativelyUsingBounds into SkCanvas by junov@chromium.org · 11 years ago
  46. 06e7424 Revert "Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff()." by senorblanco@chromium.org · 11 years ago
  47. 6b6c1dc Provide a GPU implementation of SkArithmeticMode, using a custom GrEffect exposed via asNewEffectOrCoeff(). by senorblanco@chromium.org · 11 years ago
  48. 3467ee0 add != operator for SkTDArray by reed@google.com · 11 years ago
  49. 7ed0447 Use updated signature for decode in empty decoder. by scroggo@google.com · 11 years ago
  50. ec3397b Refactor rebaseline.py into functions ; no behavioral changes. by epoger@google.com · 11 years ago
  51. b74706f use integer math instead of float per-pixel. about a 2x speedup. not tested well, so this is just experimental. by reed@google.com · 11 years ago
  52. a2be2cc cast enum to float to fix (really bad) warning by reed@google.com · 11 years ago
  53. ef77ec2 extend SkBenchmark to allow a bench to return a durationScale, which allows it to perform fewer actual interations, but report a scale factor to account for that. Thus a very slow bench can be compared head-to-head with a faster one, w/o actually forcing the tool to run for the full duration of the slower test. by reed@google.com · 11 years ago
  54. dc8e6e8 Fix cmykjpeg test to check if file was found. by bungeman@google.com · 11 years ago
  55. 6cab1a4 Change SkStream. https://codereview.chromium.org/15298009/ by bungeman@google.com · 11 years ago
  56. 6320e8f Remove dependency of gsutil to download ndk by commit-bot@chromium.org · 11 years ago
  57. 0a4805e First pass at Comment API by robertphillips@google.com · 11 years ago
  58. 960d114 Get correct GLVersion for Mesa to avoid GrContext creation failure by bsalomon@google.com · 11 years ago
  59. 9e59a0e Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  60. 2ece287 use DEF_BENCH by reed@google.com · 11 years ago
  61. 35c733c Fix alpha computation in SkArithmeticMode. by senorblanco@chromium.org · 11 years ago
  62. 435401d Build fix by junov@chromium.org · 11 years ago
  63. 66070a5 Changing SkDeferredCanvas to use factories for creation by junov@chromium.org · 11 years ago
  64. bb6a317 Make GrContext track the current matrix, render target, and clip directly rather than using GrDrawState. by commit-bot@chromium.org · 11 years ago
  65. ccd7afb Reland 'Add path utils, plus a test for it.' by scroggo@google.com · 11 years ago
  66. 7b06ba4 don't unref() null (from typeface::create) you gunky by reed@google.com · 11 years ago
  67. 98447b0 use inttoscalar to fix warning by reed@google.com · 11 years ago
  68. 2f51ae0 use explicit conversion for int->scalar by reed@google.com · 11 years ago
  69. f2de1e2 add new gm for bicubic filtering by reed@google.com · 11 years ago
  70. 9d33154 Split GM json schema out of display_json_results.py, for sharing with other tools by epoger@google.com · 11 years ago
  71. 908aed8 Decrease GPU drawn brightness for < 1 pixel wide/high rects by robertphillips@google.com · 11 years ago
  72. 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
  73. 454ae46 Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  74. 40078cb Android specific changes that are upstreamed from the android framework. by djsollen@google.com · 11 years ago
  75. 5d1d79a fix slowness of getImageData() for CanvasRenderingContext2D in linux due to un-optimized format for glReadPixels by commit-bot@chromium.org · 11 years ago
  76. 912e68e Fix degenerate and near-degenerate hairlines on the gpu by commit-bot@chromium.org · 11 years ago
  77. dbbcaa8 Revert "Add path utils, plus a test for it." by scroggo@google.com · 11 years ago
  78. 1bee037 Add path utils, plus a test for it. by scroggo@google.com · 11 years ago
  79. 7070f76 Adding setSurface public API method to SkDeferredCanvas by junov@chromium.org · 11 years ago
  80. 24287c1 Revert "Patch to prevent chromium breakage until the DEPS." by scroggo@google.com · 11 years ago
  81. 6840076 Remove SkImageFilter::getInputResult(), since its return value is not by senorblanco@chromium.org · 11 years ago
  82. 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
  83. 8b79028 Move SkDrawLooper implementation to its own file. by commit-bot@chromium.org · 11 years ago
  84. d4993ff GM: create GmResultDigest that encapsulates digest type ("bitmap-64bitMD5") and value (12345) by epoger@google.com · 11 years ago
  85. 3e2345a Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  86. 932105a don't reference missing header by reed@google.com · 11 years ago
  87. 4c69a06 clone of https://codereview.chromium.org/15316014/ with teaks by reed@google.com · 11 years ago
  88. 0f8990c use SkScalar instead of int for loops, to avoid warning in canvas->translate() calls by reed@google.com · 11 years ago
  89. 03ca64b don't overclamp cubics (see skbug.com/1316) by reed@google.com · 11 years ago
  90. 22999c6 add comment by reed@google.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. ff26b7e use SK_OVERRIDE and DEF_GM by reed@google.com · 11 years ago
  93. abcec6d remove outdated debugging code now that we no longer support fixed point by commit-bot@chromium.org · 11 years ago
  94. 0f2b195 Fix bug in SkAutoSMalloc::reset by robertphillips@google.com · 11 years ago
  95. 0fb775c Fix compiler error/warning in r9255 by robertphillips@google.com · 11 years ago
  96. 1202c2a Add printing of SkColorFilter-derived classes to debugger by robertphillips@google.com · 11 years ago
  97. 37add6b Rebaseline performance triggers by robertphillips@google.com · 11 years ago
  98. 6d9c92b Remove offsetcanvas from debugger by robertphillips@google.com · 11 years ago
  99. 2d816ad Sanitizing source files in Housekeeper-Nightly by skia.committer@gmail.com · 11 years ago
  100. f0656c1 Reverting r9245 due to Chrome breakage by robertphillips@google.com · 11 years ago