1. ec3ed6a Automatic update of all copyright notices to reflect new license terms. by epoger@google.com · 13 years ago
  2. 026dcee include <new> for SkTLazy, since windows seems to need it. by reed@google.com · 13 years ago
  3. 32e5d97 don't modify a const paint by reed@google.com · 13 years ago
  4. 90751c5 use safeunref on typefaces, since Deserialize might return NULL. by reed@google.com · 13 years ago
  5. 6fc321a add test for SkConvertQuadToCubic by reed@google.com · 13 years ago
  6. f131694 Add functionality for isRect() to SkPath. http://codereview.appspot.com/4807052/ by caryclark@google.com · 13 years ago
  7. fd4236e don't modify const SkDraw, since multiple threads may be watching it... by reed@google.com · 13 years ago
  8. 40c2ba2 don/t modify const paint, since it could be used in different threads by reed@google.com · 13 years ago
  9. d4af56c Exit SkBitmap::scrollRect() early if width <= 0 by epoger@google.com · 13 years ago
  10. b14ef73 Fix SkFlate.cpp when SK_ZLIB_INCLUDE is not #defined. by epoger@google.com · 13 years ago
  11. b530ef5 have == always return bool, never int by reed@google.com · 13 years ago
  12. 421d644 [PDF] Make stream compression optional on a per device basis. by vandebo@chromium.org · 13 years ago
  13. 948639b Remove dead edgebuilding code by mike@reedtribe.org · 13 years ago
  14. 5c63865 Use texture cache for writePixels temp by bsalomon@google.com · 13 years ago
  15. 1ddd7c3 Change pdfTransform to asAffine. http://codereview.appspot.com/4704044/ by bungeman@google.com · 13 years ago
  16. b3b8dfa Fix path iter returned pt on close, test path close pt in unit test. by bsalomon@google.com · 13 years ago
  17. 333d6cb Remove a few old uses of SK_RESTRICT on references. by tomhudson@google.com · 13 years ago
  18. e74e28d pass correct value for black by reed@google.com · 13 years ago
  19. 1501803 limit clip to fixed-point range, so our edges don't overflow by reed@google.com · 13 years ago
  20. 47e0a09 Replace vsnprintf with vsnprintf_s; add code to reproduce issue to StringTest; by tomhudson@google.com · 13 years ago
  21. e6ea606 re-enable SSE2 blitmask procs, only excluding if we're black (in which case by reed@google.com · 13 years ago
  22. 2b75f42 add asABlur() to maskfilters, so devices like gpu and pdf can query them. by reed@google.com · 13 years ago
  23. 9c49bc3 Allow texture-backed bitmaps to perform a read-back when lockPixels is called. by reed@google.com · 13 years ago
  24. 2be9e8b ColorShaders report no bitmaps, but only a color_gradient, which we now detect by reed@google.com · 13 years ago
  25. cde9211 remove SkDeviceFactory from the collective consciousness, now that devices know by reed@google.com · 13 years ago
  26. a323787 suppress printfs by reed@google.com · 13 years ago
  27. 37a2012 add SkEmptyShader, and return it from CreateBitmapShader if the bitmap is empty by reed@google.com · 13 years ago
  28. 1d6ee0b defer allocating blitter until we know we need it (i.e. gpu-devices don't need, by reed@google.com · 13 years ago
  29. 0b8b3bb make inline version of premultiply, to speed up gradient creation. by reed@google.com · 13 years ago
  30. 4ee7ae5 Adding the notion of a volatile bitmap to SkBitmap. by junov@google.com · 13 years ago
  31. 3a1f6a0 SkStringPrintf helper fucntion + a new unit test for it. by tomhudson@google.com · 13 years ago
  32. f83ceb9 extract a new factory when we get a new device by reed@google.com · 13 years ago
  33. 13649ce fix sign/unsigned warnings by reed@google.com · 13 years ago
  34. 33114e0 remove unused and untested SkPath::subdivide() by reed@google.com · 13 years ago
  35. 3aaf6a0 fix exceeds_dist: don't double the loop counter (the caller has done that) by reed@google.com · 13 years ago
  36. 314e9b3 add ptr/len and SkData versions of Deflate() by reed@google.com · 13 years ago
  37. effc501 remove obsolete text codepaths by reed@google.com · 13 years ago
  38. 5667afc remove drawShape from canvas api by reed@google.com · 13 years ago
  39. 7453d0e use general SkWStream for parameter by reed@google.com · 13 years ago
  40. 67d0cff move common code into shared helper function by reed@google.com · 13 years ago
  41. 8a85d0c replace detach/getStream apis on dynamicwstream with SkData by reed@google.com · 13 years ago
  42. 900d877 Fixed include statements to correctly link mac/ios libraries by yangsu@google.com · 13 years ago
  43. 3a31ac1 add (replacing SkDataRef) by reed@google.com · 13 years ago
  44. 8d0b577 rename public SkDataRef to SkData by reed@google.com · 13 years ago
  45. 70442a6 add copyToData() to dyanamicwstream by reed@google.com · 13 years ago
  46. 1eeaf0b Add support for 8 bits/component glyphs, to by caryclark@google.com · 13 years ago
  47. 3c89818 Fix more coverity defects - Uninitialized class fields. by vandebo@chromium.org · 13 years ago
  48. e1bc274 Fix a batch of coverity defects, uninitialized class fields. by vandebo@chromium.org · 13 years ago
  49. e03c652 Handle possibly NULL deref in comparison by vandebo@chromium.org · 13 years ago
  50. 6bac947 Add option in flattening to write factory names inline, as we are recording. by reed@google.com · 13 years ago
  51. fd0ffcf change string read/write to store length as full 32-bit value. This simplifies by reed@google.com · 13 years ago
  52. ccb74ea Changed mac specific files to use ApplicationServices rather than Carbon by yangsu@google.com · 13 years ago
  53. e97f085 Add createNewCompatibleDevice. Allow devices to have a NULL factory and saveLayer will fall back on createNewCompatibleDevice. by bsalomon@google.com · 13 years ago
  54. af951c9 make SkDevice constructors explicit between offscreen and on/direct by reed@google.com · 13 years ago
  55. 1fd56dc Implement SkPoint::Normalize() for SK_SCALAR_IS_FIXED and add performance warning to its declaration by epoger@google.com · 13 years ago
  56. a87cd2a Increase compatibility with clang, mostly around SK_RESTRICT. by tomhudson@google.com · 13 years ago
  57. 35ae8ea add SkDataRef (for future use) by reed@google.com · 13 years ago
  58. baa677b delete all old (non-Gyp) buildfiles by epoger@google.com · 13 years ago
  59. 7d26c59 add 2nd parameter to SkFontHost::NextLogicalFont() by reed@google.com · 13 years ago
  60. 2f3567c check-point for unifying results between runs and mask backends for aa by reed@google.com · 13 years ago
  61. 8d43018 Increase use of SkMatrix::hasPerspective(), merge in has_perspective(). by tomhudson@google.com · 13 years ago
  62. 521ed7c Attempt to correct issue with fixed point from SkMatrix changes in r1512. by tomhudson@google.com · 13 years ago
  63. 99683ce move code inside #ifdef to fix warning by reed@google.com · 13 years ago
  64. ac38525 Benchmarking suggests that replacing some of the conversions from float to int by tomhudson@google.com · 13 years ago
  65. ab0ab4a committing http://codereview.appspot.com/4515175/ by caryclark@google.com · 13 years ago
  66. 34e52a0 initialize fCurrY by reed@google.com · 13 years ago
  67. 3fb5187 speed-up SkMatrix::preScale by 3x, by special-casing it instead of just calling by reed@google.com · 13 years ago
  68. fa57ae7 remember previous x-offset when we re-enter the runs array. speeds up paths by reed@google.com · 13 years ago
  69. 5a1e795 remove dead code by reed@google.com · 13 years ago
  70. c0c4d22 Removal of obsolete interface, SkMatrixClipObserver. by twiz@google.com · 13 years ago
  71. eebb4a2 balance the call to matrix::flatten from r1414. Formerly both of these were by reed@google.com · 13 years ago
  72. 8887ede [PDF] Improve the SkClipStack skipping prefix code. by vandebo@chromium.org · 13 years ago
  73. 50108cd Grab-bag of memory fixes. SkFlatMatrix::Flatten had the same issue as by senorblanco@chromium.org · 13 years ago
  74. 69d0555 add copyright notices by reed@google.com · 13 years ago
  75. dde0956 add cross-process option to gpipe add unittests for reader32 and writer32 by reed@google.com · 13 years ago
  76. 9d75767 setHinting modifies fFlags in places, so call it last (after initializing fFlags) by reed@google.com · 13 years ago
  77. 02b5331 encode current LCD orientation and order into font-cache-key by reed@google.com · 13 years ago
  78. 2047f00 get tests closer to passing for SKIA_SCALAR=fixed by epoger@google.com · 13 years ago
  79. b54455e Change getConvexity() to now compute it if the value is set to kUnkown. by reed@google.com · 13 years ago
  80. 0b7b982 clean up sign detection code in computeconvexity by reed@google.com · 13 years ago
  81. 85b6e39 detect more than one loop in computeconvexity by reed@google.com · 13 years ago
  82. 04863fa add Convexity enum to SkPath by reed@google.com · 13 years ago
  83. 34dae87 [PDF] Fix ending condition for font advance construction. by vandebo@chromium.org · 13 years ago
  84. 246bd0f by twiz@google.com · 13 years ago
  85. f2eb5ab fix bug where we wrote uninitialized data to the flatten stream for shaders. by reed@google.com · 13 years ago
  86. cc4dac3 Make GrMatrix an alias of SkMatrix. Add new methods to SkMatrix. by bsalomon@google.com · 13 years ago
  87. 87ec860 remove unneeded asserts (which may fail from imprecise blits into the bitmap, but by reed@google.com · 13 years ago
  88. 9fbdf87 [PDF] Refactor content stream creation in SkPDFDevice to support more xfermodes. by vandebo@chromium.org · 13 years ago
  89. 7744c20 use SkPoint, creating an alias for GrPoint by reed@google.com · 13 years ago
  90. fc29629 Replace GrStringBuilder with SkString. First step in cleaning up the shader generator. Slight performance hit when creating a new shader (<10% of total shader gen time on my Windows box is spent in building our string before handing it to GL). Much of this can be recovered by better usage pattern of SkString in coming revisions. by bsalomon@google.com · 13 years ago
  91. f7398c3 correctly compute coverage when an antialiased rect covers only 1 column of pixels by reed@google.com · 13 years ago
  92. 8d90eeb add find() by reed@google.com · 13 years ago
  93. c925451 fix precendence error (== binds tighter than &) add new samples to solution by reed@google.com · 13 years ago
  94. 17fb387 add debugging test for building SkDescriptor update some samples by reed@google.com · 13 years ago
  95. 2fcdbec Make the unix test app build. by scroggo · 13 years ago
  96. 3048d4f remove deprecated getViewport/setViewport by reed@google.com · 13 years ago
  97. acd471f updated pipe by reed@google.com · 13 years ago
  98. 1e1c36f Add comparison and assignment to SkClipStack (and fix an optimization bug). by vandebo@chromium.org · 13 years ago
  99. 59d2f63 fix signed shift in blend32 use typefacecache in fonthost_win by reed@google.com · 13 years ago
  100. e495905 disable lifecycle dumps by reed@google.com · 13 years ago