aboutsummaryrefslogtreecommitdiffhomepage
path: root/expectations/gm
Commit message (Collapse)AuthorAge
* New Xoom baselines for imagefilter tests.Gravatar senorblanco@chromium.org2014-02-10
| | | | | | | | | | | (The Xoom bots were asleep when I did the first round.) BUG=skia:2150 TBR=bsalomon@google.com Review URL: https://codereview.chromium.org/153883005 git-svn-id: http://skia.googlecode.com/svn/trunk@13380 2bbb7eff-a529-9590-31e7-b0007b416f81
* Mark imagefiltersbase_gpu as ignore-failure on IntelRhb release. The color ↵Gravatar bsalomon@google.com2014-02-09
| | | | | | | | | | | | of one of the lines around test cases changes subtly between runs. BUG=skia:2005 BUG=skia:2085 BUG=skia:2120 Review URL: https://codereview.chromium.org/139443005 git-svn-id: http://skia.googlecode.com/svn/trunk@13378 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebase files after recent GPU clipping changesGravatar bsalomon@google.com2014-02-09
| | | | | | | | BUG=skia:2051 Review URL: https://codereview.chromium.org/158443002 git-svn-id: http://skia.googlecode.com/svn/trunk@13377 2bbb7eff-a529-9590-31e7-b0007b416f81
* Specialize GrConvexPolyEffect for AA rects, use for AA clip rects.Gravatar commit-bot@chromium.org2014-02-08
| | | | | | | | | | | BUG=skia:2051 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/140093004 git-svn-id: http://skia.googlecode.com/svn/trunk@13375 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaselines from gpu convex poly clip changes.Gravatar bsalomon@google.com2014-02-08
| | | | | | | | | BUG=skia:2051 BUG=skia:2120 Review URL: https://codereview.chromium.org/153163004 git-svn-id: http://skia.googlecode.com/svn/trunk@13374 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebase canvas-state on N7Gravatar bsalomon@google.com2014-02-07
| | | | | | Review URL: https://codereview.chromium.org/156533004 git-svn-id: http://skia.googlecode.com/svn/trunk@13370 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaselines for stragglers (Nexus4 Debug looks like it was really stale.)Gravatar senorblanco@chromium.org2014-02-06
| | | | | | | | | TBR=fmalita@chromium.org BUG=skia: Review URL: https://codereview.chromium.org/148253008 git-svn-id: http://skia.googlecode.com/svn/trunk@13337 2bbb7eff-a529-9590-31e7-b0007b416f81
* Add new baselines for tests affected by ↵Gravatar senorblanco@chromium.org2014-02-06
| | | | | | | | | | | | | | | | | | | | | | | https://code.google.com/p/skia/source/detail?r=13323, namely: colorfilterimagefilter dropshadowimagefilter imageblur imageblur_large imagefiltersbase imagefilterscropped imagefiltersgraph imagefiltersscaled morphology offsetimagefilter spritebitmap xfermodeimagefilter TBR=fmalita@chromium.org Review URL: https://codereview.chromium.org/156243003 git-svn-id: http://skia.googlecode.com/svn/trunk@13335 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebase gpu images on N4 where persp rect clip is handled by convex poly clip ↵Gravatar bsalomon@google.com2014-02-05
| | | | | | | | | | effect. BUG=skia:2136 Review URL: https://codereview.chromium.org/156203002 git-svn-id: http://skia.googlecode.com/svn/trunk@13329 2bbb7eff-a529-9590-31e7-b0007b416f81
* More canvas-state GM rebaselinesGravatar bsalomon@google.com2014-02-05
| | | | | | | | BUG=skia:2051 Review URL: https://codereview.chromium.org/150573015 git-svn-id: http://skia.googlecode.com/svn/trunk@13327 2bbb7eff-a529-9590-31e7-b0007b416f81
* canvas-state GM rebaselines after r13320.Gravatar bsalomon@google.com2014-02-05
| | | | | | | | BUG=skia:2051 Review URL: https://codereview.chromium.org/138833008 git-svn-id: http://skia.googlecode.com/svn/trunk@13326 2bbb7eff-a529-9590-31e7-b0007b416f81
* Implement correct clipping for image filters.Gravatar senorblanco@chromium.org2014-02-05
| | | | | | | | | | | | | | | | | | | | | | | | | | Image filters in Skia currently clip the size of the the offscreen bitmap used for filtering to the device clip bounds. This means that any pixel-moving filter (e.g., blur) has edge artifacts at the clip boundaries. This is problematic for tiling, where a single SkPicture is played back with a clip set to the tile boundaries. By implementing the onFilterBounds() traversal, and using it in saveLayer() when a filter is present, we can clip the layer to the expanded clip rect. Note that this requires that the traversal be performed in reverse as compared to computeFastBounds(). (It's also done in device space, unlike computeFastBounds()). New test imagefiltersclipped tests pixel-moving filters when clipped by various clip rects. New test imageblurtiled tests tiled (compositor-style) rendering of blurred text. There should be no artifacts at the tile boundaries. BUG=337831 R=reed@google.com Review URL: https://codereview.chromium.org/23011012 git-svn-id: http://skia.googlecode.com/svn/trunk@13323 2bbb7eff-a529-9590-31e7-b0007b416f81
* remove SkCanvas::createCompatibleDevice, and add SkCanvas::newSurfaceGravatar reed@google.com2014-02-05
| | | | | | | | | BUG=skia: R=bsalomon@google.com Review URL: https://codereview.chromium.org/154163002 git-svn-id: http://skia.googlecode.com/svn/trunk@13319 2bbb7eff-a529-9590-31e7-b0007b416f81
* Ignore failures on GalaxyNexus and NexusSGravatar robertphillips@google.com2014-02-04
| | | | | | | | https://codereview.chromium.org/154223002/ git-svn-id: http://skia.googlecode.com/svn/trunk@13312 2bbb7eff-a529-9590-31e7-b0007b416f81
* Use GrConvexPolyEffect when clip is a single convex polygonGravatar commit-bot@chromium.org2014-02-04
| | | | | | | | | | | | | | BUG=skia:2051 Committed: http://code.google.com/p/skia/source/detail?r=13286 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/151523005 git-svn-id: http://skia.googlecode.com/svn/trunk@13306 2bbb7eff-a529-9590-31e7-b0007b416f81
* Revert of Use GrConvexPolyEffect when clip is a single convex polygon ↵Gravatar bsalomon@google.com2014-02-03
| | | | | | | | | | | | | | | | | | | | | | | (https://codereview.chromium.org/151523005/) Reason for revert: unit tests crashing on windows? Original issue's description: > Use GrConvexPolyEffect when clip is a single convex polygon > > BUG=skia:2051 > > Committed: http://code.google.com/p/skia/source/detail?r=13286 TBR=robertphillips@google.com NOTREECHECKS=true NOTRY=true BUG=skia:2051 Review URL: https://codereview.chromium.org/142443006 git-svn-id: http://skia.googlecode.com/svn/trunk@13288 2bbb7eff-a529-9590-31e7-b0007b416f81
* Use GrConvexPolyEffect when clip is a single convex polygonGravatar commit-bot@chromium.org2014-02-03
| | | | | | | | | | | BUG=skia:2051 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/151523005 git-svn-id: http://skia.googlecode.com/svn/trunk@13286 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaseline imagefiltersgraph_gpu ↵Gravatar fmalita@google.com2014-02-03
| | | | | | | | | | | (Test-Mac10.6-MacMini4.1-GeForce320M-x86-Release) BUG=skia:2118 TBR=senorblanco@chromium.org Review URL: https://codereview.chromium.org/148283012 git-svn-id: http://skia.googlecode.com/svn/trunk@13281 2bbb7eff-a529-9590-31e7-b0007b416f81
* hopefully last set of rebaselines for blurrectGravatar commit-bot@chromium.org2014-02-03
| | | | | | | | | | | | BUG=skia:2108 R=epoger@google.com TBR=epoger Author: humper@google.com Review URL: https://codereview.chromium.org/152803002 git-svn-id: http://skia.googlecode.com/svn/trunk@13280 2bbb7eff-a529-9590-31e7-b0007b416f81
* rebaselines for ↵Gravatar commit-bot@chromium.org2014-01-31
| | | | | | | | | | | | | | | | https://skia.googlesource.com/skia.git/+/0b9ada1318acf7d5fe90c57331c2a4548aad8b98 BUG=skia:2113 NOTREECHECKS=True NOTRY=True R=epoger@google.com Author: reed@google.com Review URL: https://codereview.chromium.org/151623002 git-svn-id: http://skia.googlecode.com/svn/trunk@13268 2bbb7eff-a529-9590-31e7-b0007b416f81
* remaining rebaselines for rects GM testGravatar commit-bot@chromium.org2014-01-31
| | | | | | | | | | | | | | BUG=skia:2108 NOTREECHECKS=True NOTRY=True R=humper@google.com TBR=humper Author: epoger@google.com Review URL: https://codereview.chromium.org/148483005 git-svn-id: http://skia.googlecode.com/svn/trunk@13267 2bbb7eff-a529-9590-31e7-b0007b416f81
* remaining GM rebaselines for blurquickreject and megalooper testsGravatar commit-bot@chromium.org2014-01-31
| | | | | | | | | | | | | | BUG=skia:2108 NOTREECHECKS=True NOTRY=True R=humper@google.com TBR=humper Author: epoger@google.com Review URL: https://codereview.chromium.org/134923007 git-svn-id: http://skia.googlecode.com/svn/trunk@13266 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebase simpleblurroundrect and bleed GMs after GPU blur radius changes.Gravatar bsalomon@google.com2014-01-31
| | | | | | | | BUG=skia:1998 Review URL: https://codereview.chromium.org/151503005 git-svn-id: http://skia.googlecode.com/svn/trunk@13263 2bbb7eff-a529-9590-31e7-b0007b416f81
* even more rebaselines for blurGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | BUG=skia:2108 R=epoger@google.com Author: humper@google.com Review URL: https://codereview.chromium.org/149823003 git-svn-id: http://skia.googlecode.com/svn/trunk@13255 2bbb7eff-a529-9590-31e7-b0007b416f81
* mark imageblur_gpu gm tests as ignore-failure on IntelRhbGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | | | BUG=skia:2085 NOTRY=True R=senorblanco@google.com TBR=senorblanco Author: epoger@google.com Review URL: https://codereview.chromium.org/150813002 git-svn-id: http://skia.googlecode.com/svn/trunk@13250 2bbb7eff-a529-9590-31e7-b0007b416f81
* remove GM expectations for all ASAN/Valgrind buildersGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | | BUG=skia:2112 NOTRY=True R=borenet@google.com Author: epoger@google.com Review URL: https://codereview.chromium.org/140323020 git-svn-id: http://skia.googlecode.com/svn/trunk@13248 2bbb7eff-a529-9590-31e7-b0007b416f81
* more blurrect rebaselinesGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | BUG=skia:2108 R=epoger@google.com Author: humper@google.com Review URL: https://codereview.chromium.org/136813005 git-svn-id: http://skia.googlecode.com/svn/trunk@13247 2bbb7eff-a529-9590-31e7-b0007b416f81
* create empty expectations for Logan botsGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | | BUG=skia:2107 NOTRY=True R=borenet@google.com Author: epoger@google.com Review URL: https://codereview.chromium.org/150543004 git-svn-id: http://skia.googlecode.com/svn/trunk@13246 2bbb7eff-a529-9590-31e7-b0007b416f81
* rebaseline GM changes resulting from fast GPU blur algorithmGravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | BUG=skia: R=bsalomon@google.com Author: humper@google.com Review URL: https://codereview.chromium.org/150493005 git-svn-id: http://skia.googlecode.com/svn/trunk@13243 2bbb7eff-a529-9590-31e7-b0007b416f81
* rebaseline imagefiltersgraph_gpu GMs on Nexus10Gravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | | | | BUG=skia:2106 NOTREECHECKS=True NOTRY=True R=bsalomon@google.com TBR=bsalomon Author: epoger@google.com Review URL: https://codereview.chromium.org/150113003 git-svn-id: http://skia.googlecode.com/svn/trunk@13241 2bbb7eff-a529-9590-31e7-b0007b416f81
* patch from issue 119343003Gravatar commit-bot@chromium.org2014-01-30
| | | | | | | | | | | | | | | compile on 10.6, exclude failing gms Sorry for making another CL; rebasing ToT on the old one ended up with code in a tangled mess; was easier to start over. NOTRY=true R=bsalomon@google.com, epoger@google.com, reed@google.com Author: humper@google.com Review URL: https://codereview.chromium.org/148883005 git-svn-id: http://skia.googlecode.com/svn/trunk@13238 2bbb7eff-a529-9590-31e7-b0007b416f81
* Win8 baselines for displacement GM (razzin' frazzin' --keep-going-on-failure).Gravatar senorblanco@chromium.org2014-01-29
| | | | | | | | | TBR=epoger BUG=skia: Review URL: https://codereview.chromium.org/149073008 git-svn-id: http://skia.googlecode.com/svn/trunk@13232 2bbb7eff-a529-9590-31e7-b0007b416f81
* New baselines for displacement GM.Gravatar senorblanco@chromium.org2014-01-29
| | | | | | | | | | | This had a new test case added in r12773. TBR=epoger@google.com BUG=skia: Review URL: https://codereview.chromium.org/143263020 git-svn-id: http://skia.googlecode.com/svn/trunk@13231 2bbb7eff-a529-9590-31e7-b0007b416f81
* New baselines for GM tests affected by r13221.Gravatar senorblanco@chromium.org2014-01-29
| | | | | | | | | | | | | | | | | | | | The following tests were affected: imagefiltersbase imagefilterscropped imagefiltersgraph imagefiltersscaled dropshadowimagefilter offsetimagefilter spritebitmap tileimagefilter TBR=epoger@google.com BUG=skia: Review URL: https://codereview.chromium.org/148283008 git-svn-id: http://skia.googlecode.com/svn/trunk@13230 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaslines for https://codereview.chromium.org/23835006/Gravatar commit-bot@chromium.org2014-01-29
| | | | | | | | | | | | | Signed-off-by: Kévin PETIT <kevin.petit@arm.com> BUG=skia: R=djsollen@google.com, mtklein@google.com, reed@google.com Author: kevin.petit.arm@gmail.com Review URL: https://codereview.chromium.org/137833005 git-svn-id: http://skia.googlecode.com/svn/trunk@13229 2bbb7eff-a529-9590-31e7-b0007b416f81
* Give correct bounds to SkCanvas's AutoDrawLooper use for filter draws.Gravatar senorblanco@chromium.org2014-01-28
| | | | | | | | | | | In conjuction with https://codereview.chromium.org/137423005/, this allows the canvas to tighten the bounds passed to saveLayer() only the affected region. R=reed@google.com BUG=100703 Review URL: https://codereview.chromium.org/141433017 git-svn-id: http://skia.googlecode.com/svn/trunk@13221 2bbb7eff-a529-9590-31e7-b0007b416f81
* ARM Skia NEON patches - 20 - New improved BitmapProcState codeGravatar commit-bot@chromium.org2014-01-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | BitmapProcState: new factorised code This one basically factorises the clamp and repeat transformations with some performance improvements. It has the benefit of being faster, much easier to maintain (nearly three times less code for more work done :-)), and more complete (all persp transformations weren't optimised in the previous version). It also introduces the use of can_truncate_to_fixed_for_decal where useful. The effect on benchmarks ranges from a 5% penalty to a 25% gain on a Cortex-A9 and from a 5% penalty to a 100% gain on a Cortex-A15. Signed-off-by: Kévin PETIT <kevin.petit@arm.com> BUG= R=djsollen@google.com, mtklein@google.com, luisjoseromeroesclusa@hotmail.com, reed@google.com Author: kevin.petit.arm@gmail.com Review URL: https://codereview.chromium.org/23835006 git-svn-id: http://skia.googlecode.com/svn/trunk@13218 2bbb7eff-a529-9590-31e7-b0007b416f81
* Trying once again to rebaseline IntelRhb bots.Gravatar senorblanco@chromium.org2014-01-27
| | | | | | | | | | This seems to be putting the hashes back to what they were at r13191, so if this doesn't work I'm going to call flake and suppress the failures. TBR=epoger@google.com Review URL: https://codereview.chromium.org/148573003 git-svn-id: http://skia.googlecode.com/svn/trunk@13205 2bbb7eff-a529-9590-31e7-b0007b416f81
* Revert "Revert of nvpr baselines (https://codereview.chromium.org/132333008/)"Gravatar commit-bot@chromium.org2014-01-27
| | | | | | | | | | | | BUG=skia:2042 TBR=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/131513012 git-svn-id: http://skia.googlecode.com/svn/trunk@13202 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaseline imageblur on IntelRhb Debug.Gravatar senorblanco@chromium.org2014-01-27
| | | | | | | | | TBR=epoger@google.com BUG=skia: Review URL: https://codereview.chromium.org/148263004 git-svn-id: http://skia.googlecode.com/svn/trunk@13201 2bbb7eff-a529-9590-31e7-b0007b416f81
* Revert of nvpr baselines (https://codereview.chromium.org/132333008/)Gravatar commit-bot@chromium.org2014-01-27
| | | | | | | | | | | | | | | | | | | | | | | Reason for revert: broke the build Original issue's description: > nvpr baselines > > BUG=skia:2042 > > Committed: https://code.google.com/p/skia/source/detail?r=13195 TBR= NOTREECHECKS=true NOTRY=true BUG=skia:2042 Author: bsalomon@google.com Review URL: https://codereview.chromium.org/148013003 git-svn-id: http://skia.googlecode.com/svn/trunk@13198 2bbb7eff-a529-9590-31e7-b0007b416f81
* New baselines for Win7 DirectWrite (shader2 and bezier_conic) and Intel Rhb ↵Gravatar senorblanco@chromium.org2014-01-27
| | | | | | | | | | | (imagefiltersbase and imageblur). All failures are pixel intensity mismatch <= 3. BUG=skia:2085,skia:2081 TBR=epoger@google.com Review URL: https://codereview.chromium.org/138623007 git-svn-id: http://skia.googlecode.com/svn/trunk@13197 2bbb7eff-a529-9590-31e7-b0007b416f81
* nvpr baselinesGravatar bsalomon@google.com2014-01-27
| | | | | | | | BUG=skia:2042 Review URL: https://codereview.chromium.org/132333008 git-svn-id: http://skia.googlecode.com/svn/trunk@13195 2bbb7eff-a529-9590-31e7-b0007b416f81
* Rebaseline some GPU and ANGLE results which started failing on Win7.Gravatar senorblanco@chromium.org2014-01-27
| | | | | | | | | BUG=skia:2081 TBR=epoger@google.com Review URL: https://codereview.chromium.org/135593005 git-svn-id: http://skia.googlecode.com/svn/trunk@13193 2bbb7eff-a529-9590-31e7-b0007b416f81
* Remove misc. suppressions from ignored-tests.txt added in ↵Gravatar senorblanco@chromium.org2014-01-27
| | | | | | | | | | | | | | | https://codereview.chromium.org/105893003. These tests were rebaselined shortly after that patch landed, but the suppressions weren't removed, so differences have snuck in and not been rebaselined. New Android baselines for imagefiltersgraph, imagefilterscropped, imagefiltersbase, imageblur GMs. New Nexus4 baselines for testimagefilters, spritebitmap GM. R=borenet@google.com TBR=borenet, bungeman BUG=skia: Review URL: https://codereview.chromium.org/141033008 git-svn-id: http://skia.googlecode.com/svn/trunk@13191 2bbb7eff-a529-9590-31e7-b0007b416f81
* rebaselines from NVPR enable and nexus4 blur radiusGravatar bsalomon@google.com2014-01-26
| | | | | | | | BUG=skia:2042 Review URL: https://codereview.chromium.org/146593003 git-svn-id: http://skia.googlecode.com/svn/trunk@13186 2bbb7eff-a529-9590-31e7-b0007b416f81
* Turn NVPR on by default (but off in tools).Gravatar commit-bot@chromium.org2014-01-24
| | | | | | | | | | | | | | BUG=skia:2042 Committed: http://code.google.com/p/skia/source/detail?r=13164 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/144003006 git-svn-id: http://skia.googlecode.com/svn/trunk@13176 2bbb7eff-a529-9590-31e7-b0007b416f81
* Revert "Turn NVPR on by default (but off in tools)."Gravatar halcanary@google.com2014-01-24
| | | | | | | | | | | | | | | | This reverts commit 83d81c96de34950bdd84dc575997a250b685a3d6. Broke Windows build. Autorevert didn't work. TBR=bsalomon@google.com,robertphillips@google.com NOTREECHECKS=true NOTRY=true NOPRESUBMIT=true BUG=skia:2042 Review URL: https://codereview.chromium.org/146863003 git-svn-id: http://skia.googlecode.com/svn/trunk@13169 2bbb7eff-a529-9590-31e7-b0007b416f81
* Add new baselines for imagefiltersscaled GM.Gravatar senorblanco@chromium.org2014-01-24
| | | | | | | | TBR=borenet Review URL: https://codereview.chromium.org/145993005 git-svn-id: http://skia.googlecode.com/svn/trunk@13166 2bbb7eff-a529-9590-31e7-b0007b416f81
* Turn NVPR on by default (but off in tools).Gravatar commit-bot@chromium.org2014-01-24
| | | | | | | | | | | BUG=skia:2042 R=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/144003006 git-svn-id: http://skia.googlecode.com/svn/trunk@13164 2bbb7eff-a529-9590-31e7-b0007b416f81