Sha256: 8e58721c08c452df3c42e18e4b57f1719b0cc1270e8e3805ed61d113f0b91442
Contents?: true
Size: 614 Bytes
Versions: 1
Compression:
Stored size: 614 Bytes
Contents
#ifndef GLFW_RB_VIDEOMODE_H #define GLFW_RB_VIDEOMODE_H 1 #include "common.h" #define VIDMODE() \ GLFWvidmode *v; \ Data_Get_Struct(self, GLFWvidmode, v) void Init_glfw_vidmode(VALUE module); static VALUE rb_glfw_vidmode_alloc(VALUE klass); VALUE rb_glfw_vidmode_width(VALUE self); VALUE rb_glfw_vidmode_height(VALUE self); VALUE rb_glfw_vidmode_red_bits(VALUE self); VALUE rb_glfw_vidmode_green_bits(VALUE self); VALUE rb_glfw_vidmode_blue_bits(VALUE self); VALUE rb_glfw_vidmode_refresh_rate(VALUE self); VALUE rb_glfw_vidmode_to_s(VALUE self); #endif /* GLFW_RB_VIDEOMODE_H */
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
glfw-0.9.8 | ext/glfw/video_mode.h |