Skip to content

Commit 7f5e7aa

Browse files
committed
Fix simplest-shader on ash runner.
The background should be green, not blue, to match the wgpu runner.
1 parent b6c42be commit 7f5e7aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/runners/ash/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ impl RenderCtx {
951951
let framebuffer = self.framebuffers[present_index as usize];
952952
let clear_values = [vk::ClearValue {
953953
color: vk::ClearColorValue {
954-
float32: [0.0, 0.0, 1.0, 0.0],
954+
float32: [0.0, 1.0, 0.0, 0.0],
955955
},
956956
}];
957957

0 commit comments

Comments
 (0)