cebe1b18d6
Choose the best vsync method for the user, instead of asking them to frustratingly try every one of the options to see what works. With this commit, the `vsync` option will take only a boolean value. Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
8 lines
174 B
C
8 lines
174 B
C
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) Yuxuan Shui <yshuiv7@gmail.com>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct session session_t;
|
|
|
|
bool vsync_init(session_t *ps);
|