2021-10-11 15:28:21 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Google LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tests/Test.h"
|
|
|
|
|
|
|
|
#include "experimental/graphite/src/geom/Shape.h"
|
|
|
|
|
|
|
|
DEF_GRAPHITE_TEST(ShapeTest, reporter) {
|
|
|
|
// TODO: Michael takes this over
|
2021-10-12 17:02:38 +00:00
|
|
|
skgpu::Shape s;
|
|
|
|
REPORTER_ASSERT(reporter, s.type() == skgpu::Shape::Type::kEmpty);
|
2021-10-11 15:28:21 +00:00
|
|
|
}
|