Point_iset.cpp 440 B

1234567891011
  1. // 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 "tools/fiddle/examples.h"
  4. // HASH=0d9e8ed734981b5b113f22c7bfde5357
  5. REG_FIDDLE(Point_iset, 256, 256, true, 0) {
  6. void 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