Esempio n. 1
0
File: misc.go Progetto: foobaz/egl
func WaitClient() error {
	success := C.eglWaitClient()
	if success == C.EGL_FALSE {
		return getError()
	}
	return nil
}
Esempio n. 2
0
func WaitClient() bool {
	return goBoolean(C.eglWaitClient())
}