aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/fiddle/draw.cpp
diff options
context:
space:
mode:
authorGravatar Joe Gregorio <jcgregorio@google.com>2016-12-02 10:48:53 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-12-02 16:27:16 +0000
commitc39f3fb97b71a22761776998a881f8557befb251 (patch)
tree89acc7f119536fb6e796bddc2f5a8652fa402756 /tools/fiddle/draw.cpp
parentdba05384e1a21015b7df72d1006ee7054b1906f7 (diff)
fiddle: Don't run F16 by default, it doesn't work with OSMesa.
BUG=skia: Change-Id: I68706e7f7b3641d46de4e9765343fa13537f4fcd Reviewed-on: https://skia-review.googlesource.com/5506 Reviewed-by: Matt Sarett <msarett@google.com> Commit-Queue: Joe Gregorio <jcgregorio@google.com>
Diffstat (limited to 'tools/fiddle/draw.cpp')
-rw-r--r--tools/fiddle/draw.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/fiddle/draw.cpp b/tools/fiddle/draw.cpp
index efab8b4f5b..8ba065a6dd 100644
--- a/tools/fiddle/draw.cpp
+++ b/tools/fiddle/draw.cpp
@@ -13,7 +13,7 @@
DrawOptions GetDrawOptions() {
// path *should* be absolute.
static const char path[] = "resources/color_wheel.png";
- return DrawOptions(256, 256, true, true, true, true, true, true, path);
+ return DrawOptions(256, 256, true, true, true, true, true, false, path);
}
void draw(SkCanvas* canvas) {
canvas->clear(SK_ColorWHITE);