1. 03 Apr, 2014 1 commit
  2. 01 Apr, 2014 1 commit
  3. 19 Mar, 2014 1 commit
    • commit-bot@chromium.org's avatar
      Fixed cross compilation with mingw. · 8e13a159
      commit-bot@chromium.org authored
      Tested in Mozilla source tree. I tried to use skia build system, but it's up to the task for cross compilation.
      
      SkHRESULT.cpp - Use proper file name (that matters on case sensitive OSes)
      
      SkAtomics_win.h - Don't use pragma intrinsic on GCC (this causes massive warnings)
      
      SkOSFile_win.cpp - This one is tricky. GCC doesn't allow (void*) casts in template argument constants and INVALID_HANDLE_VALUE looks like this:
      ((HANDLE)(LONG_PTR)-1)
      where HANDLE is typedefed to void*. Changed the code to use LONG_PTR as template argument and cast it when needed.
      
      BUG=skia:
      R=bungeman@google.com, reed@google.com
      
      Author: cjacek@gmail.com
      
      Review URL: https://codereview.chromium.org/198643004
      
      git-svn-id: http://skia.googlecode.com/svn/trunk@13862 2bbb7eff-a529-9590-31e7-b0007b416f81
      8e13a159
  4. 01 Mar, 2014 1 commit
  5. 14 Feb, 2014 1 commit
  6. 07 Feb, 2014 1 commit
    • commit-bot@chromium.org's avatar
      Drawing fake bold text, line and normal text made normal text bolder on PDF. · b000d76a
      commit-bot@chromium.org authored
      When PDF uses fake bold text, it uses stroke and fill for the
      text. After that, line is drawn. It creates new ContextEntry which
      GraphicStateEntry has 0 fTextScaleX. Since fTextScaleX is 0,
      GraphicStackState::updateDrawingState() doesn't update text fill mode or
      the PDF page. When the normal text is drawn, it reuse the line's
      ContextEntry because GraphicStateEntry::compareInitialState() returns
      true. However, since the reused GraphicsStateEntry's fTextScaleX is 0,
      the text fill mode is not updated to fill, and the text is drawn in
      stroke and fill mode.
      
      When the fTextScaleX is changed, we should not reuse GraphicStateEntry
      even if ether of fTextScaleX is 0.
      
      BUG=skia:2132
      R=reed@google.com, vandebo@chromium.org, bungeman@google.com
      
      Author: yuki.sekiguchi@access-company.com
      
      Review URL: https://codereview.chromium.org/137923005
      
      git-svn-id: http://skia.googlecode.com/svn/trunk@13369 2bbb7eff-a529-9590-31e7-b0007b416f81
      b000d76a
  7. 31 Jan, 2014 1 commit
  8. 24 Jan, 2014 1 commit
  9. 17 Jan, 2014 1 commit