Method: XCB::SCREEN#root_depth

Defined in:
ext/xproto.c

#root_depthObject



337
338
339
340
341
342
343
# File 'ext/xproto.c', line 337

static VALUE
r_XCB_SCREEN_get_root_depth(VALUE r_self)
{
  xcb_screen_t *screen;
  Data_Get_Struct(r_self, xcb_screen_t, screen);
  return INT2FIX(screen->root_depth);
}