• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #if 0  // Disabled until updated to use current API.
2 // Copyright 2019 Google LLC.
3 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4 #include "tools/fiddle/examples.h"
5 // HASH=8cc1f21c98c0416f7724ad218f557a00
6 REG_FIDDLE(RRect_isValid, 256, 110, false, 0) {
7 void draw(SkCanvas* canvas) {
8     SkRRect rrect = SkRRect::MakeRect({10, 10, 110, 80});
9     SkRRect corrupt = rrect;
10     *((float*) &corrupt) = 120;
11     SkPaint paint;
12     paint.setAntiAlias(true);
13     canvas->drawString(rrect.isValid() ? "is valid" : "is corrupted", 55, 100, paint);
14     canvas->drawString(corrupt.isValid() ? "is valid" : "is corrupted", 185, 100, paint);
15     paint.setStyle(SkPaint::kStroke_Style);
16     canvas->drawRRect(rrect, paint);
17     canvas->translate(120, 0);
18     canvas->drawRRect(corrupt, paint);
19 }
20 }  // END FIDDLE
21 #endif  // Disabled until updated to use current API.
22