blob: 8193aad6d83d1ae5cac6ff9a3f7e98917e0ed8ad [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001#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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05004#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04005// HASH=8cc1f21c98c0416f7724ad218f557a00
Hal Canarya7181e7c2019-03-18 16:06:34 -04006REG_FIDDLE(RRect_isValid, 256, 110, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04007void 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.