コード例 #1
0
ファイル: misc.go プロジェクト: foobaz/egl
func WaitClient() error {
	success := C.eglWaitClient()
	if success == C.EGL_FALSE {
		return getError()
	}
	return nil
}
コード例 #2
0
ファイル: egl.go プロジェクト: nick-fedesna/egles
func WaitClient() bool {
	return goBoolean(C.eglWaitClient())
}