func WaitVSync() bool { var v bool v = bool(C.al_wait_for_vsync()) return v }
func WaitForVsync() bool { return bool(C.al_wait_for_vsync()) }
// Waits for the vertical retrace of the monitor to lessen tearing. func WaitForVsync() { C.al_wait_for_vsync() }