mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-13 23:26:24 +00:00
Remove deprecated WGSL "-> void"
Bug: dawn:755 Change-Id: I10f2fb3afd26560df10b21d149a65b625bdb2b4b Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/47600 Reviewed-by: Ben Clayton <bclayton@google.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
committed by
Commit Bot service account
parent
71f3d58939
commit
21bd02becf
@@ -70,7 +70,7 @@ void init() {
|
||||
[[builtin(vertex_idx)]] var<in> VertexIndex : u32;
|
||||
[[builtin(position)]] var<out> Position : vec4<f32>;
|
||||
|
||||
[[stage(vertex)]] fn main() -> void {
|
||||
[[stage(vertex)]] fn main() {
|
||||
var positions : array<vec4<f32>, 3> = array<vec4<f32>, 3>(
|
||||
vec4<f32>( 0.0, 0.1, 0.0, 1.0),
|
||||
vec4<f32>(-0.1, -0.1, 0.0, 1.0),
|
||||
@@ -111,7 +111,7 @@ void init() {
|
||||
[[location(0)]] var<out> FragColor : vec4<f32>;
|
||||
[[location(0)]] var<in> v_color : vec4<f32>;
|
||||
|
||||
[[stage(fragment)]] fn main() -> void {
|
||||
[[stage(fragment)]] fn main() {
|
||||
FragColor = v_color;
|
||||
})");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user