Searched refs:clips_ptr (Results 1 – 6 of 6) sorted by relevance
/linux/drivers/gpu/drm/qxl/ |
A D | qxl_draw.c | 139 struct drm_clip_rect *clips_ptr; in qxl_draw_dirty_fb() local 169 for (i = 1, clips_ptr = clips + inc; in qxl_draw_dirty_fb() 170 i < num_clips; i++, clips_ptr += inc) { in qxl_draw_dirty_fb() 171 left = min_t(int, left, (int)clips_ptr->x1); in qxl_draw_dirty_fb() 172 right = max_t(int, right, (int)clips_ptr->x2); in qxl_draw_dirty_fb() 173 top = min_t(int, top, (int)clips_ptr->y1); in qxl_draw_dirty_fb() 243 clips_ptr = clips; in qxl_draw_dirty_fb() 245 rects[i].left = clips_ptr->x1; in qxl_draw_dirty_fb() 246 rects[i].right = clips_ptr->x2; in qxl_draw_dirty_fb() 247 rects[i].top = clips_ptr->y1; in qxl_draw_dirty_fb() [all …]
|
/linux/drivers/gpu/drm/vmwgfx/ |
A D | vmwgfx_ioctl.c | 172 struct drm_vmw_rect __user *clips_ptr; in vmw_present_ioctl() local 181 clips_ptr = (struct drm_vmw_rect __user *)(unsigned long)arg->clips_ptr; in vmw_present_ioctl() 186 if (clips_ptr == NULL) { in vmw_present_ioctl() 199 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips)); in vmw_present_ioctl() 250 struct drm_vmw_rect __user *clips_ptr; in vmw_present_readback_ioctl() local 258 clips_ptr = (struct drm_vmw_rect __user *)(unsigned long)arg->clips_ptr; in vmw_present_readback_ioctl() 263 if (clips_ptr == NULL) { in vmw_present_readback_ioctl() 276 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips)); in vmw_present_readback_ioctl()
|
A D | vmwgfx_kms.c | 2419 const struct drm_clip_rect *clips_ptr = clips; in vmw_kms_helper_dirty() local 2432 for (i = 0; i < num_clips; i++, clips_ptr += increment, in vmw_kms_helper_dirty() 2443 dirty->fb_x = (s32) clips_ptr->x1; in vmw_kms_helper_dirty() 2444 dirty->fb_y = (s32) clips_ptr->y1; in vmw_kms_helper_dirty() 2445 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x - in vmw_kms_helper_dirty() 2447 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y - in vmw_kms_helper_dirty()
|
/linux/drivers/gpu/drm/ |
A D | drm_framebuffer.c | 698 struct drm_clip_rect __user *clips_ptr; in drm_mode_dirtyfb_ioctl() local 714 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr; in drm_mode_dirtyfb_ioctl() 716 if (!num_clips != !clips_ptr) { in drm_mode_dirtyfb_ioctl() 729 if (num_clips && clips_ptr) { in drm_mode_dirtyfb_ioctl() 740 ret = copy_from_user(clips, clips_ptr, in drm_mode_dirtyfb_ioctl()
|
/linux/include/uapi/drm/ |
A D | vmwgfx_drm.h | 770 __u64 clips_ptr; member 798 __u64 clips_ptr; member
|
A D | drm_mode.h | 741 __u64 clips_ptr; member
|
Completed in 20 milliseconds