2019-03-15 18:22:51 +00:00
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=fef2a36bee224e92500199fa9d3cbb8b
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(IRect_containsNoEmptyCheck, 256, 256, true, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
SkIRect rect = { 30, 50, 40, 60 };
|
|
|
|
SkIRect tests[] = { { 30, 50, 31, 51}, { 39, 49, 40, 50}, { 29, 59, 30, 60} };
|
|
|
|
for (auto contained : tests) {
|
|
|
|
bool success = rect.containsNoEmptyCheck(
|
2019-08-24 23:39:13 +00:00
|
|
|
{contained.left(), contained.top(), contained.right(), contained.bottom()});
|
2019-03-15 18:22:51 +00:00
|
|
|
SkDebugf("rect: (%d, %d, %d, %d) %s (%d, %d, %d, %d)\n",
|
|
|
|
rect.left(), rect.top(), rect.right(), rect.bottom(),
|
|
|
|
success ? "contains" : "does not contain",
|
|
|
|
contained.left(), contained.top(), contained.right(), contained.bottom());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|