Lines Matching full:box
325 SVGA3dCopyBox *box; in vmw_kms_cursor_snoop() local
350 DRM_ERROR("at least one full copy box must be given\n"); in vmw_kms_cursor_snoop()
354 box = (SVGA3dCopyBox *)&cmd[1]; in vmw_kms_cursor_snoop()
359 box->x != 0 || box->y != 0 || box->z != 0 || in vmw_kms_cursor_snoop()
360 box->srcx != 0 || box->srcy != 0 || box->srcz != 0 || in vmw_kms_cursor_snoop()
361 box->d != 1 || box_count != 1 || in vmw_kms_cursor_snoop()
362 box->w > VMW_CURSOR_SNOOP_WIDTH || box->h > VMW_CURSOR_SNOOP_HEIGHT) { in vmw_kms_cursor_snoop()
368 box->srcx, box->srcy, box->srcz, in vmw_kms_cursor_snoop()
369 box->x, box->y, box->z, in vmw_kms_cursor_snoop()
370 box->w, box->h, box->d, box_count, in vmw_kms_cursor_snoop()
390 if (box->w == VMW_CURSOR_SNOOP_WIDTH && cmd->dma.guest.pitch == image_pitch) { in vmw_kms_cursor_snoop()
395 for (i = 0; i < box->h; i++) in vmw_kms_cursor_snoop()
398 box->w * desc->pitchBytesPerBlock); in vmw_kms_cursor_snoop()