Method: XCB::GraphicsExposureEvent#y
- Defined in:
- ext/xproto.c
#y ⇒ Object
1307 1308 1309 1310 1311 1312 1313 |
# File 'ext/xproto.c', line 1307
static VALUE
r_XCB_GraphicsExposureEvent_get_y(VALUE r_self)
{
xcb_graphics_exposure_event_t *event;
Data_Get_Struct(r_self, xcb_graphics_exposure_event_t, event);
return INT2FIX(event->y);
}
|