Lines Matching refs:update
35 struct drm_update_draw update; in set_draw_cliprects_empty() local
37 update.handle = drawable; in set_draw_cliprects_empty()
38 update.type = DRM_DRAWABLE_CLIPRECTS; in set_draw_cliprects_empty()
39 update.num = 0; in set_draw_cliprects_empty()
40 update.data = 0; in set_draw_cliprects_empty()
42 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update); in set_draw_cliprects_empty()
50 struct drm_update_draw update; in set_draw_cliprects_empty_fail() local
52 update.handle = drawable; in set_draw_cliprects_empty_fail()
53 update.type = DRM_DRAWABLE_CLIPRECTS; in set_draw_cliprects_empty_fail()
54 update.num = 0; in set_draw_cliprects_empty_fail()
55 update.data = 0; in set_draw_cliprects_empty_fail()
57 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update); in set_draw_cliprects_empty_fail()
65 struct drm_update_draw update; in set_draw_cliprects_2() local
78 update.handle = drawable; in set_draw_cliprects_2()
79 update.type = DRM_DRAWABLE_CLIPRECTS; in set_draw_cliprects_2()
80 update.num = 2; in set_draw_cliprects_2()
81 update.data = (unsigned long long)(uintptr_t)&rects; in set_draw_cliprects_2()
83 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update); in set_draw_cliprects_2()