Exemple #1
0
func WaitVSync() bool {
	var v bool

	v = bool(C.al_wait_for_vsync())

	return v
}
Exemple #2
0
func WaitForVsync() bool {
	return bool(C.al_wait_for_vsync())
}
Exemple #3
0
// Waits for the vertical retrace of the monitor to lessen tearing.
func WaitForVsync() {
	C.al_wait_for_vsync()
}