aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/GrMipMapBench.cpp
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-06-02 06:50:40 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-06-02 06:50:40 -0700
commit2122c55084b81e9ef68972a10e5a3094d14db24a (patch)
tree7868aba587f3b327f00c7af9291a7bd57b3823f0 /bench/GrMipMapBench.cpp
parent33f6b3f6ee4de24282f5e7f2dc31a5f538bcf40c (diff)
Fix incorrect parameter in new benchmark.
An old value for one of the dimensions slipped in with the original CL. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2033713003 Review-Url: https://codereview.chromium.org/2033713003
Diffstat (limited to 'bench/GrMipMapBench.cpp')
-rw-r--r--bench/GrMipMapBench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/GrMipMapBench.cpp b/bench/GrMipMapBench.cpp
index b8fc1ba467..f4e05a0ac7 100644
--- a/bench/GrMipMapBench.cpp
+++ b/bench/GrMipMapBench.cpp
@@ -70,7 +70,7 @@ private:
// Build variants that exercise the width and heights being even or odd at each level, as the
// impl specializes on each of these.
//
-DEF_BENCH( return new GrMipMapBench(511, 1023); )
+DEF_BENCH( return new GrMipMapBench(511, 511); )
DEF_BENCH( return new GrMipMapBench(512, 511); )
DEF_BENCH( return new GrMipMapBench(511, 512); )
DEF_BENCH( return new GrMipMapBench(512, 512); )