mach: wasm: add note about vsync support and move VSyncMode to enums.zig

This commit is contained in:
iddev5 2022-05-24 23:41:19 +05:30 committed by Stephen Gutekanst
parent 488131ecbb
commit 8d9ca11b45
3 changed files with 25 additions and 19 deletions

View file

@ -1,3 +1,25 @@
pub const VSyncMode = enum {
/// Potential screen tearing.
/// No synchronization with monitor, render frames as fast as possible.
///
/// Not available on WASM, fallback to double
none,
/// No tearing, synchronizes rendering with monitor refresh rate, rendering frames when ready.
///
/// Tries to stay one frame ahead of the monitor, so when it's ready for the next frame it is
/// already prepared.
double,
/// No tearing, synchronizes rendering with monitor refresh rate, rendering frames when ready.
///
/// Tries to stay two frames ahead of the monitor, so when it's ready for the next frame it is
/// already prepared.
///
/// Not available on WASM, fallback to double
triple,
};
pub const Key = enum {
a,
b,