mirror of https://github.com/liamg/aminal.git
29 lines
541 B
Go
29 lines
541 B
Go
// +build linux freebsd
|
|
|
|
package glfw
|
|
|
|
//#define GLFW_EXPOSE_NATIVE_X11
|
|
//#define GLFW_EXPOSE_NATIVE_GLX
|
|
//#define GLFW_INCLUDE_NONE
|
|
//#include "glfw/include/GLFW/glfw3.h"
|
|
//#include "glfw/include/GLFW/glfw3native.h"
|
|
import "C"
|
|
|
|
func (w *Window) GetX11Window() C.Window {
|
|
ret := C.glfwGetX11Window(w.data)
|
|
panicError()
|
|
return ret
|
|
}
|
|
|
|
func (w *Window) GetGLXContext() C.GLXContext {
|
|
ret := C.glfwGetGLXContext(w.data)
|
|
panicError()
|
|
return ret
|
|
}
|
|
|
|
func GetX11Display() *C.Display {
|
|
ret := C.glfwGetX11Display()
|
|
panicError()
|
|
return ret
|
|
}
|