Lines Matching defs:update
34 struct drm_update_draw update;
36 update.handle = drawable;
37 update.type = DRM_DRAWABLE_CLIPRECTS;
38 update.num = 0;
39 update.data = 0;
41 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
49 struct drm_update_draw update;
51 update.handle = drawable;
52 update.type = DRM_DRAWABLE_CLIPRECTS;
53 update.num = 0;
54 update.data = 0;
56 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
64 struct drm_update_draw update;
77 update.handle = drawable;
78 update.type = DRM_DRAWABLE_CLIPRECTS;
79 update.num = 2;
80 update.data = (unsigned long long)(uintptr_t)&rects;
82 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);