1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sokol: expose the toggle_fullscreen and is_fullscreen functions (#11339)

This commit is contained in:
penguindark
2021-08-30 16:10:14 +02:00
committed by GitHub
parent 9496fcdfe1
commit 8dcb27a11d
2 changed files with 18 additions and 0 deletions

View File

@ -103,3 +103,9 @@ fn C.sapp_win32_get_hwnd() voidptr
// Android: get native activity handle
fn C.sapp_android_get_native_activity() voidptr
// Toggle full screen
fn C.sapp_toggle_fullscreen()
// Check if full screen rendering
fn C.sapp_is_fullscreen() bool