Remove EntryPoint.

This CL removes the EntryPoint node and transitions everything to the
stage decoration.

Change-Id: Ib2840155905c8fa60ff35870f0c4b6705efb73ff
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/28705
Commit-Queue: dan sinclair <dsinclair@chromium.org>
Reviewed-by: David Neto <dneto@google.com>
Reviewed-by: Sarah Mashayekhi <sarahmashay@google.com>
This commit is contained in:
dan sinclair
2020-09-22 14:53:03 +00:00
committed by Commit Bot service account
parent de2a019a7f
commit 5f8126271d
55 changed files with 86 additions and 4856 deletions

View File

@@ -15,9 +15,9 @@
# Vertex shader
var<private> a : i32;
[[stage(vertex)]]
fn main() -> void {
a = 2;
return;
}
entry_point vertex as "main" = main;