summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-14Merge from Chromium at DEPS revision 269336HEADmastermainTorne (Richard Coles)
This commit was generated by merge_to_master.py. Change-Id: I9d3335dcb08fc53d18bec993b89047b409bd7eb1
2014-05-07Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at 1ffcf188ba353bf82876a8d55a127ea6e1dcb27a This commit was generated by merge_from_chromium.py. Change-Id: I1bb3256d62017f06f9b6266f5c21e715f807d337
2014-05-06Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at e012e81d71f8fc328adae14fcbc6b86858a7bf2b This commit was generated by merge_from_chromium.py. Change-Id: Ibacda83beb7fba92876641b9d9c60e9912713736
2014-05-06add local-matrix to shader::contextcommit-bot@chromium.org
BUG=skia: R=scroggo@google.com, dominikg@chromium.org Author: reed@google.com Review URL: https://codereview.chromium.org/263293005 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14592 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-06Fix memory leak in GPU Picture optimizationcommit-bot@chromium.org
R=jvanverth@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/265763008 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14589 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-06don't leak the bitmapShadercommit-bot@chromium.org
BUG=skia: R=fmalita@google.com, robertphillips@google.com, fmalita@chromium.org Author: reed@google.com Review URL: https://codereview.chromium.org/269163004 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14588 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-06Infrastructure changes to support pull-saveLayers-forward taskcommit-bot@chromium.org
This is split out of (First pass at pre-rendering saveLayers for GPU - https://codereview.chromium.org/261663003/). It mainly: Moves NeedsDeepCopy to somewhere more accessible (so GrPictureUtils.cpp can use it) Moves ComputeAccelDataKey somewhere more accessible (so GPUPicture test can use it) Adds unit test for picture saveLayer analysis (done in EXPERIMENTAL_optimize) Adds new fields to SaveLayerInfo that are needed to pull forward layers Committed: http://code.google.com/p/skia/source/detail?r=14571 R=bsalomon@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/266203003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14586 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-06Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at d1d24d273a220b6b76c4918f04cbb1b1769f3588 This commit was generated by merge_from_chromium.py. Change-Id: Icd49d069b5a6bde2641b9774e3f9a70108a8faa5
2014-05-06Sanitizing source files in Housekeeper-Nightlyskia.committer@gmail.com
git-svn-id: http://skia.googlecode.com/svn/trunk/src@14584 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at 49a30064bc69cb8638e7cecf1e9a7d58fc718716 This commit was generated by merge_from_chromium.py. Change-Id: I9f227703eb8587f893f0c5f7683dd790fce58c22
2014-05-05Initialize the SkFontConfigInterface singleton with SkOnce.bungeman@google.com
BUG=chromium:369257 R=mtklein@google.com Review URL: https://codereview.chromium.org/269143002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14583 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Add pattern matchers for SkRecordcommit-bot@chromium.org
This is a mid-level library for finding patterns of commands in an SkRecord. At the API level, it's a bit regex inspired. Some examples: - Pattern1<Is<DrawRect>> matches a single DrawRect - Pattern1<Star<Is<DrawRect>>> matches 0 or more DrawRects - Pattern2<Is<ClipRect>, Is<DrawRect>> matches a single clip rect followed by a single draw rect - Pattern3<Is<Save>, Star<IsDraw>, Is<Restore>> matches a single Save, followed by any number of Draws, followed by Restore - Pattern1<Or<Is<DrawRect>, Is<ClipRect>>> matches a DrawRect or a ClipRect - Pattern1<Not<Is<ClipRect>>> matches a command that's notClipRect. Once you have a pattern, you can call .search() on it to step through ranges of matching commands. This means patterns can replace most of the custom iteration logic for optimization passes: the generic pattern searching steps through all the optimization candidates, which optimization-specific code further inspects and mutates. SkRecordTraits is now unused. Bye bye! Generated code and performance of SkRecordOpts is very similar to what it was before. (I had to use SK_ALWAYS_INLINE in a few places to make this so.) BUG=skia:2378 R=fmalita@chromium.org, bungeman@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/263063002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14582 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05fix TriColorShader to respect the paint's alphacommit-bot@chromium.org
results can be seen in new gm: vertices_80 BUG=skia: R=scroggo@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/270023002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14581 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at d8fd8c7718508a11547505b00b1dbb324d461767 This commit was generated by merge_from_chromium.py. Change-Id: Ic22099cdcd61a332e1eb91b60b20eed2e6261ca3
2014-05-05Revert r14571 (Infrastructure changes to support pull saveLayers forward ↵robertphillips@google.com
task - https://codereview.chromium.org/266203003) due to breaking Android unit tests git-svn-id: http://skia.googlecode.com/svn/trunk/src@14578 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Allow custom resources in the GrContext's cachecommit-bot@chromium.org
Adds methods to GrContext for client code to store custom resources in the cache. BUG=skia: R=bsalomon@google.com Author: cdalton@nvidia.com Review URL: https://codereview.chromium.org/261593009 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14577 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Adds a mechanism for GrCacheable objects to notify the resource cachecommit-bot@chromium.org
when their size has changed. GrResourceCacheEntry now holds a reference to the cache, and a cached value of the resource's most recent size. Also utilizes this new functionality for mipmaps, and adds a test for changing resource sizes. R=bsalomon@google.com, robertphillips@google.com Author: cdalton@nvidia.com Review URL: https://codereview.chromium.org/257093002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14576 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Remove SkShader virtual method validContextcommit-bot@chromium.org
patch from issue 267923005 BUG=skia: R=scroggo@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/261773005 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14573 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Infrastructure changes to support pull-saveLayers-forward taskcommit-bot@chromium.org
This is split out of (First pass at pre-rendering saveLayers for GPU - https://codereview.chromium.org/261663003/). It mainly: Moves NeedsDeepCopy to somewhere more accessible (so GrPictureUtils.cpp can use it) Moves ComputeAccelDataKey somewhere more accessible (so GPUPicture test can use it) Adds unit test for picture saveLayer analysis (done in EXPERIMENTAL_optimize) Adds new fields to SaveLayerInfo that are needed to pull forward layers R=bsalomon@google.com Author: robertphillips@google.com Review URL: https://codereview.chromium.org/266203003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14571 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05fix composeshader to respect the paint's alphacommit-bot@chromium.org
BUG=skia: R=scroggo@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/265163008 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14569 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05add rounding-using-doubles methods on SkScalar and SkRectcommit-bot@chromium.org
Inspired by the excellent repro case for https://crbug.com/364224 patch from issue 265933010 BUG=skia: R=bungeman@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/267003002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14566 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at 71562589f319f2e9d58481f8bafe1c90506c328a This commit was generated by merge_from_chromium.py. Change-Id: I1ca723d7992218175e53a5b6caa204ebbd287d6c
2014-05-05Add support for glMapBufferRange. Use glMapBufferRange and glMapBufferSubData.commit-bot@chromium.org
BUG=skia:2402 Committed: http://code.google.com/p/skia/source/detail?r=14533 R=robertphillips@google.com, djsollen@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/243413002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14564 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-05Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at 0df451d5563e6536af9bd328e31d4b6ed4dbc07c This commit was generated by merge_from_chromium.py. Change-Id: I0e0b91322126fd3f72f3245fbdd44e5e2d25c60e
2014-05-04Revert of fix the error that path is inversed for stroke and strokeAndFill ↵commit-bot@chromium.org
styles (https://codereview.chromium.org/183683010/) R=bsalomon@google.com, reed@google.com, yunchao.he@intel.com TBR=reed@google.com NOTRY=True Reason for revert: broke unittests Original issue's description: > fix the error that path is inversed for stroke and strokeAndFill styles. > > However, because hairline stroke + fill = fill (see src/core/SkStrokeRec.cpp), strokeAndFill will be thought as fill style when paint.getStrokeWidth() <= 0, this edge case can be inverse-filled. > > BUG=skia:2222 > > Committed: http://code.google.com/p/skia/source/detail?r=14561 Author: reed@chromium.org Review URL: https://codereview.chromium.org/269903002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14562 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-04fix the error that path is inversed for stroke and strokeAndFill styles.commit-bot@chromium.org
However, because hairline stroke + fill = fill (see src/core/SkStrokeRec.cpp), strokeAndFill will be thought as fill style when paint.getStrokeWidth() <= 0, this edge case can be inverse-filled. BUG=skia:2222 R=bsalomon@google.com, reed@google.com Author: yunchao.he@intel.com Review URL: https://codereview.chromium.org/183683010 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14561 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-04fix size_t/int warningscommit-bot@chromium.org
TBR=caryclark@google.com Author: reed@chromium.org Review URL: https://codereview.chromium.org/265163003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14560 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-03Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at a519ef7a6ea47b7b200a81f5205b77fea69a88e8 This commit was generated by merge_from_chromium.py. Change-Id: I6340381ebb722e22b57da0e041d08679525c63ab
2014-05-02Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at 5c72c806b21e5158f7d40cb26f6ce8a68be3d827 This commit was generated by merge_from_chromium.py. Change-Id: Iba0372d74970bce0cf27498bb65542cb2f7f6178
2014-05-02Split GrResource into GrCacheable/GrGpuObjectcommit-bot@chromium.org
Before this change, an object needed to inherit from GrResource (and thus be a GPU object) in order to live in the GrResourceCache. That was a problem for caching items that weren't GPU objects themselves, but owned GPU objects. This change splits GrResource into two classes: 1. GrCacheable: The base class for objects that can live in the GrResourceCache. 2. GrGpuObject, which inherits from GrCacheable: The base class for objects that get tracked by GrGpu. This change is purely a refactor; there is no change in functionality. Change-Id: I3e8daeb1f123041f414aa306c1366e959ae9e39e BUG=skia: R=bsalomon@google.com Author: cdalton@nvidia.com Review URL: https://codereview.chromium.org/251013002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14553 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02add release-mode checks for null, at least for a whilecommit-bot@chromium.org
BUG=skia: R=bungeman@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/263883006 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14552 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Remove setLocalMatrix calls from picture shader GM.commit-bot@chromium.org
This makes all --skr tests pass for me. Enabling it by default in DM. BUG=skia:2378 Committed: http://code.google.com/p/skia/source/detail?r=14549 R=reed@google.com, mtklein@google.com, fmalita@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/260863007 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14551 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Revert of Remove setLocalMatrix calls from picture shader GM. ↵commit-bot@chromium.org
(https://codereview.chromium.org/260863007/) Reason for revert: changed GM unexpectedly. will sort out and try again Original issue's description: > Remove setLocalMatrix calls from picture shader GM. > > This makes all --skr tests pass for me. Enabling it by default in DM. > > BUG=skia:2378 > > Committed: http://code.google.com/p/skia/source/detail?r=14549 R=reed@google.com, fmalita@google.com, mtklein@chromium.org TBR=fmalita@google.com, mtklein@chromium.org, reed@google.com NOTREECHECKS=true NOTRY=true BUG=skia:2378 Author: mtklein@google.com Review URL: https://codereview.chromium.org/265013003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14550 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Remove setLocalMatrix calls from picture shader GM.commit-bot@chromium.org
This makes all --skr tests pass for me. Enabling it by default in DM. BUG=skia:2378 R=reed@google.com, mtklein@google.com, fmalita@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/260863007 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14549 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Choose memset procs once.commit-bot@chromium.org
TSAN shows us racing on the function pointers. Might as well fix it. WARNING: ThreadSanitizer: data race (pid=19995) Read of size 8 at 0x7f703affb048 by thread T12 (mutexes: write M2957): #0 SkBitmap::internalErase(SkIRect const&, unsigned int, unsigned int, unsigned int, unsigned int) const /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/core/SkBitmap.cpp:886 (tests+0x0000003511ca) #1 SkBitmap::eraseARGB(unsigned int, unsigned int, unsigned int, unsigned int) const /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/core/SkBitmap.cpp:919 (tests+0x0000003534bf) #2 (anonymous namespace)::DecodingImageGenerator::getPixels(SkImageInfo const&, void*, unsigned long) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/images/SkDecodingImageGenerator.cpp:195 (tests+0x00000051bee1) #3 SkDiscardablePixelRef::onNewLockPixels(SkPixelRef::LockRec*) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/lazy/SkDiscardablePixelRef.cpp:63 (tests+0x00000039ad9c) #4 SkPixelRef::lockPixels(SkPixelRef::LockRec*) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/core/SkPixelRef.cpp:179 (tests+0x0000003fec23) #5 SkBitmap::lockPixels() const /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/core/SkBitmap.cpp:414 (tests+0x00000034e41e) #6 SkAutoLockPixels /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/include/core/SkBitmap.h:819 (tests+0x0000002752f3) #7 ImageDecoderOptions(skiatest::Reporter*) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/tests/ImageDecodingTest.cpp:565 (tests+0x000000275d03) #8 skiatest::Test::run() /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/tests/Test.cpp:107 (tests+0x0000002263e7) #9 SkTestRunnable::run() /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/tests/skia_test.cpp:108 (tests+0x0000001d8607) #10 SkThreadPoolPrivate::ThreadLocal<void>::run(SkTRunnable<void>*) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/include/utils/SkThreadPool.h:108 (tests+0x0000001d817e) #11 thread_start(void*) /var/scratch/Release/../../../usr/local/google/home/mtklein/skia/src/utils/SkThreadUtils_pthread.cpp:66 (tests+0x000000604347) Previous write of size 8 at 0x7f703affb048 by thread T26: [failed to restore the stack] BUG=skia:1792 R=bungeman@google.com, mtklein@google.com, reed@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/250503003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14548 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Add literal picture recording mode, triggered by a compile time switch.commit-bot@chromium.org
This is helpful to record SKPs from Chrome as a fair bootstrapping source for SkRecord. Without this sort of switch, a good bit of SkPicture's cleverness is baked into the SKP, and thus SkRecord looks unfairly good. Tested by defining SK_RECORD_LITERAL_PICTURES and running dm --match ~optimizations. By design that GM will never pass in literal mode. BUG=skia:2378 R=robertphillips@google.com, reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/246393008 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14547 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02guard against self-assignmentcommit-bot@chromium.org
BUG=skia: R=mtklein@google.com, bungeman@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/264793014 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14545 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Fix for SkMatrixConvolutionImageFilter with large borders.senorblanco@chromium.org
Intersect the requested processing rect with the destination bounds. R=junov@chromium.org Review URL: https://codereview.chromium.org/267863004 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14543 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Revert of Add support for glMapBufferRange. Use glMapBufferRange and ↵djsollen@google.com
glMapBufferSubData. (https://codereview.chromium.org/243413002/) Reason for revert: This is firing an assert on many of the Android debug bots Original issue's description: > Add support for glMapBufferRange. Use glMapBufferRange and glMapBufferSubData. > > BUG=skia:2402 > > Committed: http://code.google.com/p/skia/source/detail?r=14533 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14541 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Revert of Fix iOS build. (https://codereview.chromium.org/269663008/)commit-bot@chromium.org
Reason for revert: Reverting as this is a follow on to https://codereview.chromium.org/243413002/ which is breaking android debug bots Original issue's description: > Fix iOS build. > > Committed: https://code.google.com/p/skia/source/detail?r=14537 R=bsalomon@google.com TBR=bsalomon@google.com NOTREECHECKS=true NOTRY=true Author: djsollen@google.com Review URL: https://codereview.chromium.org/261983002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14539 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Merge third_party/skia/src from ↵Android Chromium Automerger
https://chromium.googlesource.com/external/skia/src.git at c54179f4375f836f4e53a9de6367e596e94d6e9d This commit was generated by merge_from_chromium.py. Change-Id: Iaaa720438124aea9957ddb67f8e0f0685661b0a1
2014-05-02Fix iOS build.bsalomon@google.com
Review URL: https://codereview.chromium.org/269663008 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14537 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Add support for glMapBufferRange. Use glMapBufferRange and glMapBufferSubData.commit-bot@chromium.org
BUG=skia:2402 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/243413002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14533 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Add flag for SkGpuSurface creation to enable distance fields.commit-bot@chromium.org
BUG=skia:2173 R=bsalomon@google.com, reed@google.com, bungeman@google.com Author: jvanverth@google.com Review URL: https://codereview.chromium.org/261783004 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14525 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-02Sanitizing source files in Housekeeper-Nightlyskia.committer@gmail.com
git-svn-id: http://skia.googlecode.com/svn/trunk/src@14524 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-01Fix image decode thrashing when drawing a very large source image to a GPU ↵commit-bot@chromium.org
canvas R=bsalomon@google.com Author: junov@chromium.org Review URL: https://codereview.chromium.org/265763005 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14522 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-01Remove dead code.commit-bot@chromium.org
No files reference this file. R=reed@google.com Author: scroggo@google.com Review URL: https://codereview.chromium.org/255243002 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14520 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-01Add support for kEmbeddedBitmapText_Flag to DirectWrite.bungeman@google.com
R=reed@google.com Review URL: https://codereview.chromium.org/263503004 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14518 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-01create struct to hold all the params passed around for shader::contextcommit-bot@chromium.org
BUG=skia: R=scroggo@google.com, dominikg@chromium.org Author: reed@google.com Review URL: https://codereview.chromium.org/264843006 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14514 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-05-01Remove SkDEBUGFAILs that are problematic for Chromiumcommit-bot@chromium.org
BUG=368107 R=egdaniel@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/268683003 git-svn-id: http://skia.googlecode.com/svn/trunk/src@14508 2bbb7eff-a529-9590-31e7-b0007b416f81