blob: cb85a8eb9877a7500615ae10a7221d273852cc3c [file] [log] [blame]
// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "fiddle/examples.h"
// HASH=c675a480b41dee157f84fa2550a2a53c
REG_FIDDLE(RRect_012, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkRRect unsorted = SkRRect::MakeRect({ 15, 25, 10, 5 });
SkDebugf("unsorted width: %g\n", unsorted.width());
SkRRect large = SkRRect::MakeRect({ -FLT_MAX, 1, FLT_MAX, 2 });
SkDebugf("large width: %.0f\n", large.width());
}
} // END FIDDLE