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