1. 19 Apr, 2012 1 commit
  2. 13 Apr, 2012 1 commit
  3. 12 Apr, 2012 1 commit
  4. 11 Apr, 2012 1 commit
    • Fabrice Di Meglio's avatar
      Add SkPaint.setTextLocale() · 5c7fc8f9
      Fabrice Di Meglio authored
      - will be used for better CJK shaping
      - forced to use a "placement new" operator because of use of sk_bzero / memcpy
      in the Skia contructor and copy operator
      
      Change-Id: If6f62634c9088d2401250c35239a1722102fe80c
      5c7fc8f9
  5. 30 Mar, 2012 1 commit
  6. 20 Mar, 2012 1 commit
  7. 19 Mar, 2012 1 commit
  8. 13 Mar, 2012 1 commit
  9. 12 Mar, 2012 3 commits
  10. 06 Mar, 2012 2 commits
  11. 27 Feb, 2012 1 commit
    • Derek Sollenberger's avatar
      Changes to preserve backwards compatibility for serialization · 341c93bd
      Derek Sollenberger authored
      Skia's serialize methods are not intended for backwards compatibility,
      but the browser used it to implement saved pages. As a result the
      revision of Skia used for ICS (r1562) is not compatible with the
      revision of Skia used in JB (r3000+). This CL attempts to make pages
      saved in ICS render in JB while still allowing JB pages to be saved
      and displayed.
      
      bug: 6025365
      Change-Id: I9983517b46d2dedf31c6d90f48f6cf00ec042bc2
      341c93bd
  12. 24 Feb, 2012 2 commits
  13. 23 Feb, 2012 2 commits
  14. 22 Feb, 2012 1 commit
  15. 21 Feb, 2012 1 commit
  16. 15 Feb, 2012 3 commits
  17. 06 Feb, 2012 3 commits
  18. 01 Feb, 2012 3 commits
  19. 23 Jan, 2012 1 commit
  20. 04 Jan, 2012 1 commit
  21. 13 Dec, 2011 1 commit
  22. 12 Dec, 2011 1 commit
  23. 09 Dec, 2011 2 commits
  24. 08 Dec, 2011 1 commit
  25. 02 Dec, 2011 1 commit
  26. 01 Dec, 2011 2 commits
  27. 30 Nov, 2011 1 commit
    • Derek Sollenberger's avatar
      Fix rendering bug in pages with shadowed text. · 717c0091
      Derek Sollenberger authored
      Shadowed text currently does not get subjected to culling until
      immediately prior to rendering each glyph. This is problematic
      for any page with an axis greater than 32k as we can't covert
      the glyph coordinates to fixed point. Additionally, this is a
      large perf hit as we look at every shadowed glyph on the page
      for every draw call regardless of the canvas' clip.
      
      This fix enables shadowed text to be quickly rejected based on
      the canvas' clip when the draw text command is executed.
      
      Finally, a mirror image of this CL is currently under review for
      inclusion in the open-source Skia project.
      
      bug: 5571685
      Change-Id: I5df94eccecbd7d77a08004b5cbcca02120e390f7
      717c0091