Remove deprecated transform APIs

Change-Id: I330b52ed6b485690a64c74fe34bebfe02fb52598
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/42265
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
Ben Clayton
2021-03-02 11:53:42 +00:00
committed by Commit Bot service account
parent a349e54149
commit 1653668355
6 changed files with 48 additions and 144 deletions

View File

@@ -24,19 +24,6 @@ namespace {
using VertexPullingTest = TransformTest;
TEST_F(VertexPullingTest, Error_NoVertexState) {
auto* src = R"(
[[stage(vertex)]]
fn main() -> void {}
)";
auto* expect = "error: SetVertexState not called";
auto got = Transform<VertexPulling>(src);
EXPECT_EQ(expect, str(got));
}
TEST_F(VertexPullingTest, Error_NoEntryPoint) {
auto* src = "";