History log of /external/skia/tests/PictureBBHTest.cpp
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
36352bf5e38f45a70ee4f4fc132a38048d38206d 26-Mar-2015 mtklein <mtklein@chromium.org> C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla}

NOPRESUBMIT=true

BUG=skia:
DOCS_PREVIEW= https://skia.org/?cl=1037793002

Review URL: https://codereview.chromium.org/1037793002
/external/skia/tests/PictureBBHTest.cpp
72c9faab45124e08c85f70ca38536914862d947c 09-Jan-2015 mtklein <mtklein@chromium.org> Fix up all the easy virtual ... SK_OVERRIDE cases.

This fixes every case where virtual and SK_OVERRIDE were on the same line,
which should be the bulk of cases. We'll have to manually clean up the rest
over time unless I level up in regexes.

for f in (find . -type f); perl -p -i -e 's/virtual (.*)SK_OVERRIDE/\1SK_OVERRIDE/g' $f; end

BUG=skia:

Review URL: https://codereview.chromium.org/806653007
/external/skia/tests/PictureBBHTest.cpp
703dd2ed187b9788c5bb0f2d313f2d07695603d6 09-Jan-2015 mtklein <mtklein@chromium.org> Remove SkTileGrid (except for TileGridInfo).

TBR=reed@google.com

BUG=skia:3085

Review URL: https://codereview.chromium.org/845623002
/external/skia/tests/PictureBBHTest.cpp
49aabde6ef80e39f00a2d00487cf5a881987dd81 05-Jan-2015 mtklein <mtklein@chromium.org> Clean up dead clear() code in SkRecord.

This removes the SkRecords::Clear struct and everything that refers to it.
Notice there is nothing actually creating a Clear, which means this is all
dead code.

Now that all ops obey the clip, I don't think we need the weird
inflate-empty-to-epsilon hack for BBH queries.

BUG=skia:

Review URL: https://codereview.chromium.org/835813002
/external/skia/tests/PictureBBHTest.cpp
2ff1fcede1e9525285c5de1f35fb2dcb0fab32bd 11-Dec-2014 reed <reed@google.com> Defer saves() until they're needed

patch from issue 759443006 at patchset 40001 (http://crrev.com/759443006#ps40001)

BUG=skia:

Review URL: https://codereview.chromium.org/767333002
/external/skia/tests/PictureBBHTest.cpp
90d0ff013bbd8e5295d1517d41cb408e9d9f4d93 24-Nov-2014 reed <reed@google.com> add some debugging to SkNVRefCnt

BUG=skia:

Review URL: https://codereview.chromium.org/745383003
/external/skia/tests/PictureBBHTest.cpp
7cc1a34fbf5506e3a9e6834f0dcd988aa7c94084 20-Nov-2014 mtklein <mtklein@chromium.org> Make sure pictures draw Clears even when the clip is empty.

We fix this by rewriting empty queries to very tiny queries, which will certainly
hit ops that span the entire picture (like Clear) and hopefully not much more.

(This doesn't quite work in the full cull rect world if [0,0,ε,ε] doesn't
overlap the picture. Let's cross that bridge when we get there.)

BUG=432991

Review URL: https://codereview.chromium.org/732723004
/external/skia/tests/PictureBBHTest.cpp
a41d3c33bc4e335dd4702bb9915fdf31d31d6c24 30-Oct-2014 junov <junov@chromium.org> Make RTree handle the case where the playback canvas has empty clip bounds

BUG=skia:3074

Review URL: https://codereview.chromium.org/678303004
/external/skia/tests/PictureBBHTest.cpp