Method: Glfw::Window#set_should_close
- Defined in:
- ext/glfw3/glfw3.c
#set_should_close(value) ⇒ Object Also known as: should_close=
Sets the window’s should-close flag. Ideally, the value provided should be a boolean, though it is only tested for non-nil and -false status, so it can be anything that would yield true for !!value.
call-seq:
should_close=(value) -> value
should_close = value -> value
Wraps glfwSetWindowShouldClose.
747 748 749 750 751 752 |
# File 'ext/glfw3/glfw3.c', line 747
static VALUE rb_window_set_should_close(VALUE self, VALUE value)
{
GLFWwindow *window = rb_get_window(self);
glfwSetWindowShouldClose(window, RTEST(value) ? GL_TRUE : GL_FALSE);
return value;
}
|