skia2/tests/graphite/ShapeTest.cpp
Chris Dalton 676e082284 [graphite] Remove the skpu::geom namespace
Just having an skpu namespace should be enough.

Change-Id: I3026ece828aee7a57f8c5de2252ebc79d97baf7a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/458636
Reviewed-by: Greg Daniel <egdaniel@google.com>
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
Commit-Queue: Chris Dalton <csmartdalton@google.com>
2021-10-12 17:55:07 +00:00

17 lines
391 B
C++

/*
* 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
skgpu::Shape s;
REPORTER_ASSERT(reporter, s.type() == skgpu::Shape::Type::kEmpty);
}