Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Issue 1750303002: Adding anisotropic mipmap levels to SkMipMap. (Closed)

Created:
4 years, 9 months ago by cblume
Modified:
4 years, 9 months ago
CC:
reviews_skia.org
Base URL:
https://skia.googlesource.com/skia.git@master
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Adding anisotropic mipmap levels to SkMipMap. Adding 1x2, 1x3, 2x1, 3x1 filters to SkMipMap and enabling SkMipMap to generate anisotropic mip levels. BUG=590804 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1750303002 Committed: https://skia.googlesource.com/skia/+/5b9ad7620b36858f99fef0763d7fc04d024fd71d

Patch Set 1 #

Patch Set 2 : Accidentally removed extra space. #

Patch Set 3 : Updating the unit test to reflect that we now include anisotropic space. #

Total comments: 2

Patch Set 4 : Correcting x/y order. #

Total comments: 7

Patch Set 5 : Changing width >>= 1; width = SkTMax(1, width); to width = SkTMax(1, width >> 1); #

Unified diffs Side-by-side diffs Delta from patch set Stats (+160 lines, -55 lines) Patch
M src/core/SkMipMap.cpp View 1 2 3 4 8 chunks +153 lines, -48 lines 0 comments Download
M tests/MipMapTest.cpp View 1 2 2 chunks +7 lines, -7 lines 0 comments Download

Messages

Total messages: 40 (18 generated)
cblume
4 years, 9 months ago (2016-03-01 09:40:24 UTC) #3
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/1
4 years, 9 months ago (2016-03-01 09:40:54 UTC) #5
commit-bot: I haz the power
Note for Reviewers: The CQ is waiting for an approval. If you believe that the ...
4 years, 9 months ago (2016-03-01 09:40:55 UTC) #6
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Build-Mac-Clang-Arm7-Debug-iOS-Trybot on client.skia.compile (JOB_FAILED, http://build.chromium.org/p/client.skia.compile/builders/Build-Mac-Clang-Arm7-Debug-iOS-Trybot/builds/781) Build-Mac-Clang-x86_64-Release-Trybot on ...
4 years, 9 months ago (2016-03-01 09:42:05 UTC) #8
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/20001
4 years, 9 months ago (2016-03-01 09:47:14 UTC) #10
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot on client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared-Trybot/builds/6624)
4 years, 9 months ago (2016-03-01 09:52:29 UTC) #12
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/40001
4 years, 9 months ago (2016-03-01 10:18:10 UTC) #14
mtklein
https://codereview.chromium.org/1750303002/diff/40001/src/core/SkMipMap.cpp File src/core/SkMipMap.cpp (left): https://codereview.chromium.org/1750303002/diff/40001/src/core/SkMipMap.cpp#oldcode105 src/core/SkMipMap.cpp:105: template <typename F> void downsample_3_2(void* dst, const void* src, ...
4 years, 9 months ago (2016-03-01 13:40:49 UTC) #16
commit-bot: I haz the power
Dry run: No LGTM from a valid reviewer yet. Please ask for an LGTM from ...
4 years, 9 months ago (2016-03-01 15:40:02 UTC) #18
cblume
https://codereview.chromium.org/1750303002/diff/40001/src/core/SkMipMap.cpp File src/core/SkMipMap.cpp (left): https://codereview.chromium.org/1750303002/diff/40001/src/core/SkMipMap.cpp#oldcode105 src/core/SkMipMap.cpp:105: template <typename F> void downsample_3_2(void* dst, const void* src, ...
4 years, 9 months ago (2016-03-01 19:28:36 UTC) #19
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/60001
4 years, 9 months ago (2016-03-01 19:28:55 UTC) #21
commit-bot: I haz the power
Dry run: No LGTM from a valid reviewer yet. Please ask for an LGTM from ...
4 years, 9 months ago (2016-03-01 19:28:57 UTC) #23
mtklein
+reed
4 years, 9 months ago (2016-03-01 19:35:35 UTC) #25
reed1
https://codereview.chromium.org/1750303002/diff/60001/src/core/SkMipMap.cpp File src/core/SkMipMap.cpp (right): https://codereview.chromium.org/1750303002/diff/60001/src/core/SkMipMap.cpp#newcode143 src/core/SkMipMap.cpp:143: SkASSERT(count > 0); why remove this assert? https://codereview.chromium.org/1750303002/diff/60001/src/core/SkMipMap.cpp#newcode225 src/core/SkMipMap.cpp:225: ...
4 years, 9 months ago (2016-03-01 20:17:46 UTC) #26
cblume
https://codereview.chromium.org/1750303002/diff/60001/src/core/SkMipMap.cpp File src/core/SkMipMap.cpp (right): https://codereview.chromium.org/1750303002/diff/60001/src/core/SkMipMap.cpp#newcode143 src/core/SkMipMap.cpp:143: SkASSERT(count > 0); On 2016/03/01 20:17:46, reed1 wrote: > ...
4 years, 9 months ago (2016-03-01 20:39:29 UTC) #27
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/80001
4 years, 9 months ago (2016-03-01 20:40:51 UTC) #29
commit-bot: I haz the power
Dry run: No LGTM from a valid reviewer yet. Please ask for an LGTM from ...
4 years, 9 months ago (2016-03-01 20:40:54 UTC) #31
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/80001
4 years, 9 months ago (2016-03-01 20:56:03 UTC) #33
commit-bot: I haz the power
Dry run: No LGTM from a valid reviewer yet. Please ask for an LGTM from ...
4 years, 9 months ago (2016-03-01 20:56:06 UTC) #35
reed1
lgtm
4 years, 9 months ago (2016-03-01 20:56:42 UTC) #36
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1750303002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1750303002/80001
4 years, 9 months ago (2016-03-01 21:39:51 UTC) #38
commit-bot: I haz the power
4 years, 9 months ago (2016-03-01 21:54:33 UTC) #40
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://skia.googlesource.com/skia/+/5b9ad7620b36858f99fef0763d7fc04d024fd71d

Powered by Google App Engine
This is Rietveld 408576698