Class: XCB::FORMAT
- Inherits:
-
Object
- Object
- XCB::FORMAT
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#bits_per_pixel ⇒ Object
144 145 146 147 148 149 150 |
# File 'ext/xproto.c', line 144
static VALUE
r_XCB_FORMAT_get_bits_per_pixel(VALUE r_self)
{
xcb_format_t *format;
Data_Get_Struct(r_self, xcb_format_t, format);
return INT2FIX(format->bits_per_pixel);
}
|
#depth ⇒ Object
137 138 139 140 141 142 143 |
# File 'ext/xproto.c', line 137
static VALUE
r_XCB_FORMAT_get_depth(VALUE r_self)
{
xcb_format_t *format;
Data_Get_Struct(r_self, xcb_format_t, format);
return INT2FIX(format->depth);
}
|
#scanline_pad ⇒ Object
151 152 153 154 155 156 157 |
# File 'ext/xproto.c', line 151
static VALUE
r_XCB_FORMAT_get_scanline_pad(VALUE r_self)
{
xcb_format_t *format;
Data_Get_Struct(r_self, xcb_format_t, format);
return INT2FIX(format->scanline_pad);
}
|