1. 50dfa01 add pixelref->readPixels() by reed@google.com · 13 years ago
  2. 4b83c63 Move where compression enable/disable is done to make recompilation faster. by vandebo@chromium.org · 13 years ago
  3. a7d9485 replace SkRefDict with SkMetaData (much more general) by reed@google.com · 13 years ago
  4. 325cb9a Improve the SkAdvancedTypefaceMetrics interface w.r.t. vertical advances. by vandebo@chromium.org · 13 years ago
  5. e733071 add refcnt helper to metadata add unittests for metadata by reed@google.com · 13 years ago
  6. 5e3496e move SkMetaData into core by reed@google.com · 13 years ago
  7. 9266fed add getTopLayer(), so clients don't have to use a LayerIter just to get by reed@google.com · 13 years ago
  8. 0a0a236 Initialize fClip in SkBounder, in case doIRect() is called before it is used by reed@google.com · 13 years ago
  9. 160f2c0 increase intermediate precision when chopping lines. This avoids returning a by reed@google.com · 13 years ago
  10. 97fa34c change operator== to return bool instead of int update dox formating by reed@google.com · 13 years ago
  11. 2ade086 abort drawing if srcRect is outside of the bitmap bounds by reed@google.com · 13 years ago
  12. 7ffb1b2 Add code needed to build skia as a windows dll within the chromium project. by ctguil@chromium.org · 13 years ago
  13. f67e4cf add filterTextFlags() to SkDevice (virtual) to allow device subclasses to by reed@google.com · 13 years ago
  14. 98539c6 support lcd16 in text atlas (sans shader support) by reed@google.com · 13 years ago
  15. cd9d69b Upstreaming changes from android. by djsollen@google.com · 13 years ago
  16. 65dd8f8 Don't use LCD16 if SK_SUPPORT_LCDTEXT is defined (for compatibility) by reed@google.com · 13 years ago
  17. f88d676 check-point for kLCD16_Format mask support by reed@google.com · 13 years ago
  18. ee467ee Correct blitmask procs to recognize that we pass them an SkColor, and if they by reed@google.com · 13 years ago
  19. 981d479 http://codereview.appspot.com/3980041/ by reed@google.com · 13 years ago
  20. 8cad586 add const to SkColorShader's asABitmap by reed@google.com · 13 years ago
  21. 7c2f27d make asABitmap() const change private cache fields in gradient to be mutable by reed@google.com · 13 years ago
  22. 6f8f292 add origin to device by reed@google.com · 13 years ago
  23. f7c2c45 Update windows port of of SkFontHost::GetAdvancedTypefaceMetrics to use calculateGlyphCount. by ctguil@chromium.org · 13 years ago
  24. 0bc7bf5 Implement SkScalerContext_Windows::generateGlyphCount() and provide access via SkGlyphCache interface. by ctguil@chromium.org · 13 years ago
  25. 677cbed Expose explicit functions to stringify float's and fixed's. by vandebo@chromium.org · 13 years ago
  26. 759876a Our region blitter (invoked by region::setPath()) must have its scanlines by reed@google.com · 13 years ago
  27. d302f14 Add support for clipstack to Gr. GrClip is now a list of rects and paths with set operations to combine them. The stencil buffer is used to perform the set operations to put the clip into the stencil buffer. Building Gr's clip from Skia's clipStack is currently disabled due to the fact that Skia's clipStack is relative to the root layer not the current layer. This will be fixed in a subsequent CL. by bsalomon@google.com · 13 years ago
  28. 55b6b58 Fix inverse scanconversion -- be sure to keep our calls to SkBlitter in scanline by reed@google.com · 13 years ago
  29. 22a0221 check that alloc() succeeded before calling the scaler's getImage() by reed@google.com · 13 years ago
  30. 8072e4f bump SkStrAppendScalar_MaxSize to 14 to accomodate the largest string now that by reed@google.com · 14 years ago
  31. fa06e52 use sprintf to generate float->string for SkString routines, removing the by reed@google.com · 14 years ago
  32. a67573e http://codereview.appspot.com/4233041/ by reed@google.com · 14 years ago
  33. 112706d Add SkBitmap::getColor(int x, int y) - return the color of a pixel in a bitmap. by vandebo@chromium.org · 14 years ago
  34. 93c5f9e Guard globalRef() virtual with #ifdef ANDROID, as these are not implemented by reed@google.com · 14 years ago
  35. 02878b8 disable assert on validateClip in default build for now by reed@google.com · 14 years ago
  36. d3ae779 Add asAGradient shader extraction API. by vandebo@chromium.org · 14 years ago
  37. 7d7ca79 add fClipStack optional field to SkDraw (it is always set by canvas) by reed@google.com · 14 years ago
  38. dca7acb set the rgn to empty if the clipstack says empty (in our validate routine) by reed@google.com · 14 years ago
  39. 57f4969 merge from android tree: by djsollen@google.com · 14 years ago
  40. 819c921 refactor to use a shared function (clipPathHelper) between by reed@google.com · 14 years ago
  41. 3f0260d Cleanup issues related to SkBitmap getSize()/extractSubset(). by wjmaclean@chromium.org · 14 years ago
  42. 46799cd change virtual setMatrixClip() to take a SkClipStack parameter. by reed@google.com · 14 years ago
  43. 5c3d147 add clipstack to canvas. not used yet, but will be for devices (e.g. gpu) that by reed@google.com · 14 years ago
  44. 4c09d5c rename SkDeque::Iter to SkDeque::F2BIter, since it runs front-to-back (in preparation by reed@google.com · 14 years ago
  45. ce2b1af call glyph::init() on tmpGlyph, so we have a properly initialized fMaskFormat by reed@google.com · 14 years ago
  46. 369ca40 fix compile error for linux by reed@google.com · 14 years ago
  47. 564e46f Fix file modes. by vandebo@chromium.org · 14 years ago
  48. 6f72d1e Provide windows font host implementation needed to support TrueType text in pdf backend. by vandebo@chromium.org · 14 years ago
  49. 6fb7e2e reformatting to match coding style -- no logic changes by reed@google.com · 14 years ago
  50. 91a2ae9 reformat for coding style, no logic changes by reed@google.com · 14 years ago
  51. 077910e add SkScalarIsFinite(), and use it for a more portable impl of SkRect::isValidCoords() by reed@google.com · 14 years ago
  52. 4854327 [PDF] Add support for xfermodes / blend modes. by vandebo@chromium.org · 14 years ago
  53. 62047cf clear the convex-hint in reset() and rewind(), to match its state in a newly by reed@google.com · 14 years ago
  54. 116b2bc Proposed fix for crash in Cr70244. by wjmaclean@chromium.org · 14 years ago
  55. 82065d6 remove SkRefCnt safeRef() and safeUnref(), and replace the call-sites with by reed@google.com · 14 years ago
  56. c48b2b3 Cleanup SkPDFTypfaceInfo and make it more generic. by vandebo@chromium.org · 14 years ago
  57. 851927d remove debugging code around gUseExt by reed@google.com · 14 years ago
  58. 3636ed5 embed a refdict inside SkDevice udate unittests to test refdict's destructor by reed@google.com · 14 years ago
  59. 0e190d0 add refdict class, for holding a dictionary of reference-counted objects by reed@google.com · 14 years ago
  60. 2a22e10 Add Truetype and Type 1 font embedding support by vandebo@chromium.org · 14 years ago
  61. 44b2c73 detect empty/inverted rect before using autobounds helper (as with prev. rev.) by reed@google.com · 14 years ago
  62. abf15c1 don't use SkAutoPathBoundsUpdate until after we've checked for degenerate by reed@google.com · 14 years ago
  63. a76de3d If you #define SK_ALLOW_OVER_32K_BITMAPS, then skia will try to draw bitmaps by reed@google.com · 14 years ago
  64. 9b2135a by reed@google.com · 14 years ago
  65. 4b22602 add getter/setter for device-factory on canvas by reed@google.com · 14 years ago
  66. e72766f fix issue 99 -- unneeded assignment inside find_y by reed@google.com · 14 years ago
  67. 72cf492 fix build for scalar==fixed by reed@google.com · 14 years ago
  68. 51df9e3 add gpu to gm tool add pass-through read/write pixels API to canvas by reed@google.com · 14 years ago
  69. 0bde180 Security fixes re getSize(). by wjmaclean@chromium.org · 14 years ago
  70. d642329 remove ZLIB include from SkUserConfig for how (doesn't work on mac sampleapp) but, by reed@google.com · 14 years ago
  71. 9c08dd0 add by reed@android.com · 14 years ago
  72. f2b98d6 merge with changes for GPU backend by reed@android.com · 14 years ago
  73. 29e5054 Fix perf regression in Color32. by senorblanco@chromium.org · 14 years ago
  74. c385638 SSE2 optimizations for 32bit Color operation. by senorblanco@chromium.org · 14 years ago
  75. 8cfdf01 Correctly handle SkPath::kInverseWinding_FillType by agl@chromium.org · 14 years ago
  76. ee34e35 Add flate compression test and fix bugs. by vandebo@chromium.org · 14 years ago
  77. a09ef97 Add deflate support to SkPDFStream. by vandebo@chromium.org · 14 years ago
  78. ca735ff Allow zero text size to be specified for an SkPaint. by vandebo@chromium.org · 14 years ago
  79. 86bff1f Add safe size/copy functions to Skia. by wjmaclean@chromium.org · 14 years ago
  80. 28be72b PDF: Add text support with a font framework (font embedding to come). by vandebo@chromium.org · 14 years ago
  81. 8c1d88d Remove include of SkGLDevice.h from SkGLCanvas.h by vandebo@chromium.org · 14 years ago
  82. 35fc62b Move the device capability method to SkDevice. by vandebo@chromium.org · 14 years ago
  83. ddbbd80 Cleanup/unify matrix transform for PDF backend. by vandebo@chromium.org · 14 years ago
  84. 99a45d3 Fix SkDraw::validate to work with vector Devices. by vandebo@chromium.org · 14 years ago
  85. 17f694b Clamp the maximum size of glyph width we will attempt to render. by scarybeasts@gmail.com · 14 years ago
  86. 6b9de8c Fix a signedness issue with massive allocations, and also a truncation issue on by scarybeasts@gmail.com · 14 years ago
  87. b70ae31 Fix a memory leak in the new Canvas/Device workflow. by vandebo@chromium.org · 14 years ago
  88. 8d84fac Refactor SkCanvas so that backends don't need to override it. by vandebo@chromium.org · 14 years ago
  89. 60eaa39 SkPath::arcTo() will cause uninitialized memory reads in the following cases: by senorblanco@chromium.org · 14 years ago
  90. d877fdb High level pdf classes and pdf specific interface. by vandebo@chromium.org · 14 years ago
  91. 3ce77e4 call readyToDraw() instead of just checking for null pixels, since we could by reed@android.com · 14 years ago
  92. 49099b2 move SkMallocPixelRef into its own .cpp file, rather than embedding it by reed@android.com · 14 years ago
  93. ce4e53a add abstract wrapper for platform-specific bitmap backends by reed@android.com · 14 years ago
  94. cb34235 fix matrix use in coretext fonthost update gm images to new baseline by reed@android.com · 14 years ago
  95. 0e21ec0 Fix for SkMatrix::invert() for large coordinate values. by senorblanco@chromium.org · 14 years ago
  96. 097a351 add SkRegion::setRects(), and its unit tests by reed@android.com · 14 years ago
  97. 2e08619 Added optional "ambiguous" outgoing argument to XRay queries so that by kbr@chromium.org · 14 years ago
  98. 1960ff6 Revert "We extract a sub-function from MAKENAME(_nofilter_DX), only dealing with reading" by agl@chromium.org · 14 years ago
  99. a2c71cb Add support for forcing autohinting. by agl@chromium.org · 14 years ago
  100. 46e2ec5 We extract a sub-function from MAKENAME(_nofilter_DX), only dealing with reading by agl@chromium.org · 14 years ago