blob: 833e5bc62e1f2fe30da42cf83f1a80ff0e2d9f0e [file] [log] [blame]
package glfw
//#include "glfw/include/GLFW/glfw3.h"
import "C"
func glfwbool(b C.int) bool {
if b == C.GL_TRUE {
return true
}
return false
}