aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PathOpsChalkboardTest.cpp
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2016-10-18 11:46:22 -0400
committerGravatar Mike Klein <mtklein@chromium.org>2016-10-18 16:12:07 +0000
commitf1e75838269413e6cd56ee35d858c61a1e4faa70 (patch)
tree665d7b68f82ece6f08b5ce199d811e90aa5a38ff /tests/PathOpsChalkboardTest.cpp
parent2bdfe5b861f26a65406c8fd7326bc1b5684672cd (diff)
fix -NoGPU build bots.
TBR=caryclark@google.com BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3589 Change-Id: I4bf4a6b812a8284f739c86d03f334521e896a1cf Reviewed-on: https://skia-review.googlesource.com/3589 Commit-Queue: Mike Klein <mtklein@chromium.org> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'tests/PathOpsChalkboardTest.cpp')
-rw-r--r--tests/PathOpsChalkboardTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PathOpsChalkboardTest.cpp b/tests/PathOpsChalkboardTest.cpp
index 134da6b89f..5b6601336a 100644
--- a/tests/PathOpsChalkboardTest.cpp
+++ b/tests/PathOpsChalkboardTest.cpp
@@ -6,6 +6,7 @@
*/
#include "PathOpsExtendedTest.h"
#include "PathOpsThreadedCommon.h"
+#include "SkRandom.h"
#define TEST(name) { name, #name }
@@ -150,7 +151,7 @@ static void chalkboard_threaded(skiatest::Reporter* reporter, const char* filena
testlines ^= 0xFFFFFFFFFFFFFFFFLL;
}
*testRunner.fRunnables.append() =
- new PathOpsThreadedRunnable(&testChalkboard,
+ new PathOpsThreadedRunnable(&testChalkboard,
(int) (unsigned) (testlines & 0xFFFFFFFF),
(int) (unsigned) (testlines >> 32),
0, 0, &testRunner);