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