blob: e71fc4d18ce125954536f5431a93dbc2f603d200 [file]
// 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 "tools/fiddle/examples.h"
REG_FIDDLE(Rect_bottom, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkRect unsorted = { 15, 25, 10, 5 };
SkDebugf("unsorted.fBottom: %g unsorted.bottom(): %g\n", unsorted.fBottom, unsorted.bottom());
SkRect sorted = unsorted.makeSorted();
SkDebugf("sorted.fBottom: %g sorted.bottom(): %g\n", sorted.fBottom, sorted.bottom());
}
} // END FIDDLE