func WaitClient() error { success := C.eglWaitClient() if success == C.EGL_FALSE { return getError() } return nil }
func WaitClient() bool { return goBoolean(C.eglWaitClient()) }