1. 77cf460 Add non-separable xfer modes to GPU backend. by bsalomon@google.com · 12 years ago
  2. c4c9870 Adding optimization to avoid image copy in SkSurface copy on write when content is discardable by commit-bot@chromium.org · 12 years ago
  3. 73c0abc Catch failures to SkTypeface::Deserialize() and use the default in that case. by reed@google.com · 12 years ago
  4. c9f3b38 Sanitizing source files in Skia_Periodic_House_Keeping (SkipBuildbotRuns) by rmistry@google.com · 12 years ago
  5. cac3ae3 specialize SkDataTable for arrays where all elements are the same size. by mike@reedtribe.org · 12 years ago
  6. 64b682c Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  7. 3cceb9f add SkDataTable::NewEmpty() by reed@google.com · 12 years ago
  8. 8c5c7a9 add SkDataTable, to efficiently store an immutable array. Includes a builder by reed@google.com · 12 years ago
  9. 6856779 Final round of .0s by bsalomon@google.com · 12 years ago
  10. 07fa3ab More .0s by bsalomon@google.com · 12 years ago
  11. 58eb1af Add ".0" to 1 constants in xfermodes GLSL code. by bsalomon@google.com · 12 years ago
  12. 8da9bc7 Add all remaining separable xfer modes to GPU backend. by bsalomon@google.com · 12 years ago
  13. c1ccda3 return empty fontstyleset instead of null by reed@google.com · 12 years ago
  14. f707adc augmenting fix in 8700 and 8701, be careful NOT to "sort" the result of mapRect by reed@google.com · 12 years ago
  15. ee056a8 revert 8731, restoring 8700 and 8701... further investigation concluded that the by reed@google.com · 12 years ago
  16. 717d0cb Revert r8701 and r8700 due to layout test discrepancies by robertphillips@google.com · 12 years ago
  17. 45fb8b6 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  18. 5c082a1 add compute-bounds for conics by mike@reedtribe.org · 12 years ago
  19. 0c5c386 add extrema for conics by mike@reedtribe.org · 12 years ago
  20. 17a2c91 add comments for computing derivatives by reed@google.com · 12 years ago
  21. acea3ef Cleanup: Removing unnecessary args/complexity in SkSurface_Base and friends by junov@chromium.org · 12 years ago
  22. 9bfc438 add () around | cluster, to avoid warning. by reed@google.com · 12 years ago
  23. 19c4e6e use forward matrix to determine if we can ignore scale part of a matrix by reed@google.com · 12 years ago
  24. 7841c63 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  25. aebfa7e fix release warning (unused debug variable) by reed@google.com · 12 years ago
  26. 3df87cb add experimental chop-into-quads for conics by mike@reedtribe.org · 12 years ago
  27. b0091b8 Add coeffecients for kScreen xfermode. by bsalomon@google.com · 12 years ago
  28. 856b984 Remove freetype dependency from core.gyp by djsollen@google.com · 12 years ago
  29. f41ca79 Remove freetype dependency from core.gyp by djsollen@google.com · 12 years ago
  30. ab38e56 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  31. 8d55101 add special-case for chopping at exactly half for rational-quads (2-3x faster) by mike@reedtribe.org · 12 years ago
  32. 4af6280 compute new weight in standard-form by mike@reedtribe.org · 12 years ago
  33. 4bb50b2 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  34. 0d09955 incomplete impl for chopping rational quads (need to "normalize" so I can get by reed@google.com · 12 years ago
  35. c518710 experimental start to arcs by reed@google.com · 12 years ago
  36. dd96eb4 explicitly initialize all entries in array of SkBaseMatrix, since we can't say by reed@google.com · 12 years ago
  37. 31d8191 Compiler warning/error patch for r8658 by robertphillips@google.com · 12 years ago
  38. ad7d481 Add testing of optimizations to GM by robertphillips@google.com · 12 years ago
  39. 07a8ea0 Reverting r8654 by robertphillips@google.com · 12 years ago
  40. c10531b Add testing of optimizations to GM by robertphillips@google.com · 12 years ago
  41. 7a90daf fix bug introduced with SK_IGNORE_CUBIC_STROKE_FIX where we no longer respected by reed@google.com · 12 years ago
  42. 07d3a65 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  43. 2786d15 Make SkTypeFace::Deserialize work for embedded fonts. by bungeman@google.com · 12 years ago
  44. 1eb16b9 Partial fix for skp reading failure on fonts by robertphillips@google.com · 12 years ago
  45. ef5b811 Fixing SkTileGrid to clamp rather than clip content and querries that are outside the bounds of the grid by junov@chromium.org · 12 years ago
  46. df3695e First pass at Rect Effect by robertphillips@google.com · 12 years ago
  47. 3284017 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  48. 75e3ca1 Error checking / reporting API by humper@google.com · 12 years ago
  49. d043cce Allow single-pass filters (which use asNewEffect()) to participate in the image filter DAG. This was done by introducing the SkSinglePassImageFilter abstract base class, which implements canFilterImageGPU() and filterImageGPU() on behalf of the derived class. The derived class still only needs to asNewEffect(). This allows us to recurse on the filter input in SkSinglePassImageFilter::onFilterImageGPU(). It also allows us to remove any knowledge of single-pass image filters from SkGpuDevice and from the SkImageFilter base class as well. by senorblanco@chromium.org · 12 years ago
  50. 1aa5129 Reduce size of second iteration in SkTileGridNextDatum<>(). by tomhudson@google.com · 12 years ago
  51. d7aaf60 Add Xfermode bench. Also clear before rendering in bench (rather than after). by commit-bot@chromium.org · 12 years ago
  52. b79d865 Fix GLPrograms test. Review URL: https://codereview.chromium.org/13327008 by bsalomon@google.com · 12 years ago
  53. 26e18b5 Add support for reading the dst pixel value in an effect. Use in a new effect for the kDarken xfer mode. by bsalomon@google.com · 12 years ago
  54. 964988f add matcher to fontstyleset Review URL: https://codereview.chromium.org/13312002 by reed@google.com · 12 years ago
  55. fc2f0d0 use SkTCast by reed@google.com · 12 years ago
  56. 995beb6 Adding unit test for verifying copy on write in SkSurface + bug fix in SkCanvas::clear by junov@chromium.org · 12 years ago
  57. e9bbc81 move typeface cache limit from 128 to 1024 (128 is a joke, not sure what a by reed@google.com · 12 years ago
  58. db23509 always call SkFontMgr::Factory() (now that everyone has impl'd it) by reed@google.com · 12 years ago
  59. f51c013 Add interface to SkXfermode to return a GrEffect and blend coeffs. by bsalomon@google.com · 12 years ago
  60. b368551 fix mask error for BW text, where I forgot to look at just the low-8 bits by reed@google.com · 12 years ago
  61. 37cbc7f Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  62. 4855231 Fix a few clang errors while trying to build tools target. by tfarina@chromium.org · 12 years ago
  63. 919e9c3 fix infinite recursion calling (non)virtual by reed@google.com · 12 years ago
  64. ca5c841 respect slant param by reed@google.com · 12 years ago
  65. 7244e88 #if 0 reference to SkFontMgr::Factory for now by reed@google.com · 12 years ago
  66. 83787c5 impl part of SKFontMgr for mac by reed@google.com · 12 years ago
  67. 1fa793f remove SkFontHost::NextLogicalFont, and add android-specific function by reed@google.com · 12 years ago
  68. e60ed08 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  69. fe74765 Change fixedWidth to fixedPitch and implement on Windows. by bungeman@google.com · 12 years ago
  70. d257a7e limit SkFontHost::NextLogicalTypeface to only android (the only backend that by reed@google.com · 12 years ago
  71. a45bcc8 make SkFontHost::NextLogicalTypeface private (only called by SkScalerContext) by reed@google.com · 12 years ago
  72. 5526ede land https://codereview.chromium.org/12676024 by reed@google.com · 12 years ago
  73. 292b1d4 remove SkFontHost::OpenStream(), now subsumed by SkTypeface::openStream() by reed@google.com · 12 years ago
  74. 3ddb793 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  75. 66d831d remove SkFontHost::GetFileName by mike@reedtribe.org · 12 years ago
  76. 6c66d2f remove GetTable* APIs from SkFontHost, and rely on SkTypeface::onGetTable* by reed@google.com · 12 years ago
  77. 2cdc671 add virtual SkTypeface::onOpenStream and override that for fontconfig by reed@google.com · 12 years ago
  78. 35300c4 Fix minor valgrind-found memory leaks by robertphillips@google.com · 12 years ago
  79. 38c37dd call onGetUPEM to subclasses can optimize it, and place default behavior by reed@google.com · 12 years ago
  80. 311d4ea This changes fixes issues with the non-separable blend modes. They were not producing the correct results if alpha was involved. by commit-bot@chromium.org · 12 years ago
  81. 2689f61 move impl of AdvancedTypefaceMetrics into typeface (3) by reed@google.com · 12 years ago
  82. 01c34ee Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  83. 0da4861 remove SkFontHost::CreateScalerContext by reed@google.com · 12 years ago
  84. 90808e8 Add SkTypeface* parameter to SkScalerContext (and its callers) by reed@google.com · 12 years ago
  85. 8eaddb0 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  86. 54d5f83 update coding style by mike@reedtribe.org · 12 years ago
  87. e1575aa reland 8200 w/ fix for android (use fullpath instead of path) by reed@google.com · 12 years ago
  88. 070235e revert 8204 -- what is happening??? by reed@google.com · 12 years ago
  89. 4f7e846 reland 8200 w/ fix for android (need fullpath instead of path) by reed@google.com · 12 years ago
  90. 1311f7e revert 8200 to figure out android break by reed@google.com · 12 years ago
  91. d5ea2ae move SK_MMAP_SUPPORT into SkPreConfig, so we can know about its availability by reed@google.com · 12 years ago
  92. 0bd80fa Added toString to SkMaskFilter-derived classes by robertphillips@google.com · 12 years ago
  93. ac2c82c Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  94. 35e1563 Patch to fix NULL ptr dereference in 8171 on Linux by robertphillips@google.com · 12 years ago
  95. 4b32bd5 Fixing SkPicture command pattern optimizations to make them work correctly with bounding box hierarchies by commit-bot@chromium.org · 12 years ago
  96. c49cabf Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  97. fed86bd move most of SkFontHost to private (preceeding making it all private) by reed@google.com · 12 years ago
  98. 91274b9 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  99. c04987f Fixed unitialized memory access bug in r8106 by robertphillips@google.com · 12 years ago
  100. 5ba0d90 Fixed compiler error/warning by robertphillips@google.com · 12 years ago