From 0d60db60109951053f97bd6deac8fe00526b7231 Mon Sep 17 00:00:00 2001 From: "sglez@google.com" Date: Fri, 30 Aug 2013 18:54:54 +0000 Subject: Add missing .outs Review URL: https://codereview.chromium.org/23567005 git-svn-id: http://skia.googlecode.com/svn/trunk@11042 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/RTreeBench.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bench/RTreeBench.cpp') diff --git a/bench/RTreeBench.cpp b/bench/RTreeBench.cpp index 624391cce9..e9fe60318c 100644 --- a/bench/RTreeBench.cpp +++ b/bench/RTreeBench.cpp @@ -168,16 +168,16 @@ static inline SkIRect make_XYordered_rects(SkMWCRandom& rand, int index, int num SkIRect out; out.fLeft = index % GRID_WIDTH; out.fTop = index / GRID_WIDTH; - out.fRight = fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); - out.fBottom = fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); + out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); + out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); return out; } static inline SkIRect make_YXordered_rects(SkMWCRandom& rand, int index, int numRects) { SkIRect out; out.fLeft = index / GRID_WIDTH; out.fTop = index % GRID_WIDTH; - out.fRight = fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); - out.fBottom = fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); + out.fRight = out.fLeft + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); + out.fBottom = out.fTop + 1 + rand.nextU() % (GENERATE_EXTENTS / 3); return out; } -- cgit v1.2.3