blob: 521e3cacafd0fe4a3741fb20b3a8ee224ffb5e64 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001#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 "fiddle/examples.h"
5// HASH=8cc1f21c98c0416f7724ad218f557a00
6REG_FIDDLE(RRect_038, 256, 110, false, 0) {
7void 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.