/src/sys/external/bsd/drm/dist/shared-core/ |
drm_internal.h | 37 struct drm_clip_rect *rects; member in struct:drm_drawable_info
|
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_drawable.c | 109 if (info->rects) 110 free(info->rects, DRM_MEM_DRAWABLE); 134 if (info->rects) 135 free(info->rects, DRM_MEM_DRAWABLE); 136 info->rects = NULL; 143 if (info->rects == NULL) { 144 info->rects = malloc(sizeof(*info->rects) * 146 if (info->rects == NULL) { 153 ret = copyin((void *)(intptr_t)update->data, info->rects, [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_damage_helper.c | 172 struct drm_mode_rect *rects = NULL; local in function:drm_atomic_helper_dirtyfb 199 rects = kcalloc(num_clips, sizeof(*rects), GFP_KERNEL); 200 if (!rects) { 205 convert_clip_rect_to_rect(clips, rects, num_clips, inc); 207 num_clips * sizeof(*rects), 208 rects); 250 kfree(rects);
|
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_draw.c | 146 struct qxl_rect *rects; local in function:qxl_draw_dirty_fb 216 rects = drawable_set_clipping(qdev, num_clips, clips_bo); 217 if (!rects) 243 rects[i].left = clips_ptr->x1; 244 rects[i].right = clips_ptr->x2; 245 rects[i].top = clips_ptr->y1; 246 rects[i].bottom = clips_ptr->y2;
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_kms.c | 854 * @vclips: Array of clip rects. 855 * @num_clips: Number of clip rects in @vclips. 1450 * @num_rects: number of drm_rect in rects 1451 * @rects: array of drm_rect representing the topology to validate indexed by 1459 struct drm_rect *rects) 1472 (drm_rect_width(&rects[i]) > dev_priv->stdu_max_width || 1473 drm_rect_height(&rects[i]) > dev_priv->stdu_max_height)) { 1479 if (rects[i].x2 > bounding_box.x2) 1480 bounding_box.x2 = rects[i].x2; 1482 if (rects[i].y2 > bounding_box.y2 1610 struct drm_rect *rects; local in function:vmw_kms_check_topology 2347 struct drm_vmw_rect *rects; local in function:vmw_kms_update_layout_ioctl [all...] |
/src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
vmwgfx_drm.h | 752 * @clips_ptr: Pointer to an array of clip rects cast to an __u64. 785 * @clips_ptr: Pointer to an array of clip rects cast to an __u64. 810 * @rects: pointer to array of drm_vmw_rect cast to an __u64 817 __u64 rects; member in struct:drm_vmw_update_layout_arg
|
drm.h | 131 struct drm_clip_rect *rects; member in struct:drm_drawable_info
|