Skip to content

Commit

Permalink
test(player): don't specify shader entry points
Browse files Browse the repository at this point in the history
This is done to exercise the prior change.
  • Loading branch information
ErichDonGubler committed Feb 27, 2024
1 parent 023b0e0 commit d365927
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions player/tests/data/bind-group.ron
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
layout: Some(Id(0, 1, Empty)),
stage: (
module: Id(0, 1, Empty),
entry_point: Some("main"),
entry_point: None,
),
),
),
Expand All @@ -78,4 +78,4 @@
),
]),
],
)
)
2 changes: 1 addition & 1 deletion player/tests/data/pipeline-statistics-query.ron
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
layout: Some(Id(0, 1, Empty)),
stage: (
module: Id(0, 1, Empty),
entry_point: Some("main"),
entry_point: None,
),
),
),
Expand Down
4 changes: 2 additions & 2 deletions player/tests/data/quad.ron
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
vertex: (
stage: (
module: Id(0, 1, Empty),
entry_point: Some("vs_main"),
entry_point: None,
),
buffers: [],
),
fragment: Some((
stage: (
module: Id(0, 1, Empty),
entry_point: Some("fs_main"),
entry_point: None,
),
targets: [
Some((
Expand Down
2 changes: 1 addition & 1 deletion player/tests/data/zero-init-buffer.ron
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
layout: Some(Id(0, 1, Empty)),
stage: (
module: Id(0, 1, Empty),
entry_point: Some("main"),
entry_point: None,
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion player/tests/data/zero-init-texture-binding.ron
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
layout: Some(Id(0, 1, Empty)),
stage: (
module: Id(0, 1, Empty),
entry_point: Some("main"),
entry_point: None,
),
),
),
Expand Down

0 comments on commit d365927

Please sign in to comment.