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"
|
|
|
|
|
2022-04-11 15:48:46 +00:00
|
|
|
#include "src/gpu/graphite/geom/Shape.h"
|
2021-10-11 15:28:21 +00:00
|
|
|
|
|
|
|
DEF_GRAPHITE_TEST(ShapeTest, reporter) {
|
|
|
|
// TODO: Michael takes this over
|
2022-04-07 20:08:04 +00:00
|
|
|
skgpu::graphite::Shape s;
|
|
|
|
REPORTER_ASSERT(reporter, s.type() == skgpu::graphite::Shape::Type::kEmpty);
|
2021-10-11 15:28:21 +00:00
|
|
|
}
|