Method: XCB::QueryFontReply#draw_direction
- Defined in:
- ext/xproto.c
#draw_direction ⇒ Object
3586 3587 3588 3589 3590 3591 3592 |
# File 'ext/xproto.c', line 3586
static VALUE
r_XCB_QueryFontReply_get_draw_direction(VALUE r_self)
{
xcb_query_font_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_font_reply_t, reply);
return INT2FIX(reply->draw_direction);
}
|