- 21 Aug, 2014 1 commit
-
-
Derek Sollenberger authored
bug: 17175893 Change-Id: I4c5595b8b1c43ed50d57ac24e9b33220715441be
-
- 16 Aug, 2014 1 commit
-
-
Behdad Esfahbod authored
-
- 20 Aug, 2014 1 commit
-
-
Behdad Esfahbod authored
This allows us to drop the 64px strike from Noto Color Emoji, which saves a lot of space. Bug: 15348046 Change-Id: Ifd1c9a4fbc67a4eb2596c5830644f745a1e47d8c
-
- 19 Aug, 2014 1 commit
-
-
Derek Sollenberger authored
This CL reverts to the NO_AUTOHINT behavior when autohinting is not explicitly requested. This should be removed when Skia supports a better API for selecting the correct variation. bug: 15591234 Change-Id: I7af3973b8aa3a8ad7619c368f64e39dcddb71b6b
-
- 14 Aug, 2014 1 commit
-
-
Derek Sollenberger authored
This merge includes the following CLs... 0d78ac2 Set maximum output size for scaled-image-cache images 0c1c911 Adding 64 bit checks f2d87ba Get additional DW font metrics when available. Bug: 17024392 Change-Id: I7956f50e5b95b1e012cf56614b12f1d834b423c1
-
- 30 Jul, 2014 1 commit
-
-
Derek Sollenberger authored
Change-Id: I1b50d090fce7ca18abef2afaf361e6bc6bca526f
-
- 29 Jul, 2014 1 commit
-
-
Dehao Chen authored
Change-Id: Ic6442cb1d9ee12e98e0722e95f99be5dca824eba
-
- 24 Jul, 2014 1 commit
-
-
Leon Scroggins III authored
-
- 25 Jul, 2014 2 commits
-
-
Derek Sollenberger authored
This merge includes the following CLs... 20ee1ba Change SkCanvasState to use inheritance. b572f07 DirectWrite to detect GDI only fonts 282aa1e Fix SkColorFilterImageFilter matrix optimization e849224 Re-land "Fix external SkImageFilter caching with clips." 9b1eeeb Better rendering detection with DirectWrite.
-
Leon Scroggins III authored
In SkPNGImageDecoder::onDecodeSubset, use png_read_rows to write to the scratch memory provided. This is what we should have been doing anyway. Further, writing directly to the bitmap can cause writing to the wrong memory since the bitmap may not be as big as the scratch memory in the case of sampling with a short bitmap. Cherry-pick of https://codereview.chromium.org/423473003/ BUG:13921093 Change-Id: Id113453f192257fc674b94c4b76e109fb2599d77
-
- 15 Jul, 2014 1 commit
-
-
scroggo authored
Cherry-pick of https://skia.googlesource.com/skia/+/352c2181d15ed053c3b759f08ff1f51d50e2d3bb The base class, SkCanvasState, now holds the version, width, and height. These fields will always be a necessary part of the class. (Also add in some padding.) The other fields, which may change, have been moved into the subclass, SkCanvasState_v1. If/when the version changes, it will correspond to a new subclass. In SkCanvasStateUtils::CreateFromCanvasState, check the version on the base class, then do a static_cast to the version corresponding to SkCanvasState::version. Remove CANVAS_STATE_VERSION, which is redundant with the version specified by the subclass. Use unambiguous type for rowBytes. Build Android with SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG. This allows us to run the full suite of CanvasState tests. It is also representative of what will be used on Android by WebView. Fix CanvasStateTest where it was broken inside ifdef'ed out code. Use SkCanvas::getBaseLayerSize() instead of the deprecated SkCanvas::getDeviceSize(). Update the comments in the header to be more clear. In particular, an SkCanvasState can only be used to pass an SkCanvas' state to a future version of Skia (or the same); not an older version. NOTREECHECKS=true BUG=b/15693384 R=reed@google.com, mtklein@google.com, djsollen@google.com Author: scroggo@google.com Review URL: https://codereview.chromium.org/372003002 Change-Id: I2ff9ed7dc4d34f02aa753e9add8be4445102c0b9
-
- 14 Jul, 2014 3 commits
-
-
Leon Scroggins III authored
-
Leon Scroggins III authored
Originally, we pruned Android's fork to remove files which are not needed by Android, and may be a distraction from the files which matter. We decided to include all of the files (to simplify merging), so add a README.android to tell users to ignore the extraneous files. BUG:http://skbug.com/2416 Change-Id: Ib34f355962f5e8b9a2eca6e9b9952baa277ca166
-
henrik.smiding authored
Allows running skia_tests without crashing. Cherry-pick of a9309f5e in Skia. Enables the possibility to set thread model in the configuration files (like Android does). Also adds a warning check to make sure that we have an implementation for the thread safety class. Author: joakim.landberg@intel.com Signed-off-by:
Henrik Smiding <henrik.smiding@intel.com> R=reed@google.com, mtklein@google.com, tomhudson@google.com, djsollen@google.com, joakim.landberg@intel.com, torne@chromium.org, scroggo@google.com Author: henrik.smiding@intel.com Review URL: https://codereview.chromium.org/361423003 Change-Id: Ib1127edc79fc96e0d09983e564bd41f46221fb73 (cherry picked from commit f3e866f8)
-
- 10 Jul, 2014 5 commits
-
-
Leon Scroggins III authored
-
Leon Scroggins III authored
Cherry-pick of https://codereview.chromium.org/386693003/ Instead of setting SkShader::fLocalMatrix to Identity and storing a separate SkMatrix inside SkLocalMatrixShader, reuse SkShader::fLocalMatrix. Conflicts: src/core/SkLocalMatrixShader.h BUG:14315916 Change-Id: I673801444f0a8fd4f192b5b7effdde1aa83e702b
-
Leon Scroggins authored
-
reed authored
Allows skia_test to run without crashing. Cherry-pick of 7a7c3163 in Skia. BUG=skia: R=krajcevski@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/362833004 Change-Id: I4782424482d5ffad4544501bf297e6ff2e4a1b62
-
scroggo authored
Cherry-pick from 57ad4937 in Skia: Interpret size and offset as size_t, as they should be. When read as int, they could be negative values. If they are negative (rather than positive and very large), they will not allow us to fail the length test, resulting in trying to read uninitialized memory. BUG=b/16010240 R=halcanary@google.com Author: scroggo@google.com Review URL: https://codereview.chromium.org/374413005 BUG:16010240 Change-Id: I70ff31c1d06ea2705700bb9f5c767a100b946d09
-
- 07 Jul, 2014 3 commits
- 02 Jul, 2014 1 commit
-
-
Mike Reed authored
-
- 07 Jul, 2014 2 commits
- 02 Jul, 2014 1 commit
-
-
Leon Scroggins III authored
-
- 07 Jul, 2014 1 commit
-
-
Leon Scroggins III authored
Merge commit 'f7ffe320' into merge37
-
- 20 Jun, 2014 13 commits
-
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/bccac6c Change-Id: I3f2afcec642cd6f4ed744321001343517070937f
-
senorblanco authored
This reverts commit 9efd66b8. R=reed@google.com TBR=reed@google.com BUG=skia: Author: senorblanco@chromium.org Review URL: https://codereview.chromium.org/348903004
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/b8f0798 Change-Id: Id52032b965e487637b59321e6110e1f7e6547740
-
reed authored
on mac/clang, using circularclips gm/bench - before: 400ms - after: 250ms BUG=skia: R=tomhudson@chromium.org, mtklein@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/348143002
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/6184310 Change-Id: Id1d0e7447a13b5cd59db8d15bda250c09ef6ceca
-
krajcevski authored
BUG=skia: R=bsalomon@google.com TBR=bsalomon@google.com Author: krajcevski@google.com Review URL: https://codereview.chromium.org/342403002
-
Skia_Android Canary Bot authored
Merge "Fix SkBlitRow_opts_arm so that it works on ARM v4t. Original Mozilla bug: https://bugzilla.mozilla.org/show_bug.cgi?id=901208" into master-skia https://skia.googlesource.com/skia/+/bf1850e Change-Id: Ie11b28c42a8ced15f9b838c86a6f036b0b6efdf2
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/9eb182a Change-Id: Ic00b68404f6c3a0c63c9e4745624ff296de09cc3
-
george authored
Original Mozilla bug: https://bugzilla.mozilla.org/show_bug.cgi?id=901208 R=reed@google.com, mtklein@google.com, reed1 BUG=skia: Author: george@mozilla.com Review URL: https://codereview.chromium.org/337853003
-
george authored
BUG=skia: R=reed@google.com, bsalomon@google.com, tfarina@chromium.org Author: george@mozilla.com Review URL: https://codereview.chromium.org/325843002
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/eecc35f Change-Id: I5bf285af0d1d157eec8471e1aa0740b7d03230f2
-
Skia_Android Canary Bot authored
https://skia.googlesource.com/skia/+/909f91d Change-Id: I028cdba62fb74ea56bf20865fde3c29d66e35b52
-
krajcevski authored
R=bsalomon@google.com Author: krajcevski@google.com Review URL: https://codereview.chromium.org/347673002
-