summaryrefslogtreecommitdiff
path: root/native_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to 'native_darwin.go')
-rw-r--r--native_darwin.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/native_darwin.go b/native_darwin.go
index 4ceabcc..4972c5f 100644
--- a/native_darwin.go
+++ b/native_darwin.go
@@ -8,11 +8,15 @@ import "C"
// See: https://github.com/go-gl/glfw3/issues/82
/*
-func (w *Window) GetCocoaWindow() (C.id, error) {
- return C.glfwGetCocoaWindow(w.data), fetchError()
+func (w *Window) GetCocoaWindow() C.id {
+ ret := C.glfwGetCocoaWindow(w.data)
+ panicError()
+ return ret
}
-func (w *Window) GetNSGLContext() (C.id, error) {
- return C.glfwGetNSGLContext(w.data), fetchError()
+func (w *Window) GetNSGLContext() C.id {
+ ret := C.glfwGetNSGLContext(w.data)
+ panicError()
+ return ret
}
*/