blob: b95ad76aa3c675237483df1a3f88a7f0ea1c975f [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include "fiddle/examples.h"
4// HASH=0d9e8ed734981b5b113f22c7bfde5357
5REG_FIDDLE(Point_005, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkPoint pt1, pt2 = { SK_MinS16, SK_MaxS16 };
8 pt1.iset(SK_MinS16, SK_MaxS16);
9 SkDebugf("pt1 %c= pt2\n", pt1 == pt2 ? '=' : '!');
10}
11} // END FIDDLE