Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change present mode on many_buttons and many_glyphs from Immediate to…
… AutoNoVsync (bevyengine#8681) # Objective Fix the examples many_buttons and many_glyphs not working on the WebGPU examples page. Currently they both fail with the follow error: ``` panicked at 'Only FIFO/Auto* is supported on web', ..../wgpu-0.16.0/src/backend/web.rs:1162:13 ``` ## Solution Change `present_mode` from `PresentMode::Immediate` to `PresentMode::AutoNoVsync`. AutoNoVsync seems to be common mode used by other examples of this kind.
- Loading branch information