Method: XCB::GraphicsExposureEvent#x
- Defined in:
- ext/xproto.c
#x ⇒ Object
1300 1301 1302 1303 1304 1305 1306 |
# File 'ext/xproto.c', line 1300 static VALUE r_XCB_GraphicsExposureEvent_get_x(VALUE r_self) { xcb_graphics_exposure_event_t *event; Data_Get_Struct(r_self, xcb_graphics_exposure_event_t, event); return INT2FIX(event->x); } |