Lines Matching refs:items
115 } *items; in vmw_overlay_send_put() local
123 fifo_size = sizeof(*cmds) + sizeof(*flush) + sizeof(*items) * num_items; in vmw_overlay_send_put()
130 items = (typeof(items))&cmds[1]; in vmw_overlay_send_put()
131 flush = (struct vmw_escape_video_flush *)&items[num_items]; in vmw_overlay_send_put()
134 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put()
141 items[i].registerId = i; in vmw_overlay_send_put()
146 items[SVGA_VIDEO_ENABLED].value = true; in vmw_overlay_send_put()
147 items[SVGA_VIDEO_FLAGS].value = arg->flags; in vmw_overlay_send_put()
148 items[SVGA_VIDEO_DATA_OFFSET].value = ptr.offset; in vmw_overlay_send_put()
149 items[SVGA_VIDEO_FORMAT].value = arg->format; in vmw_overlay_send_put()
150 items[SVGA_VIDEO_COLORKEY].value = arg->color_key; in vmw_overlay_send_put()
151 items[SVGA_VIDEO_SIZE].value = arg->size; in vmw_overlay_send_put()
152 items[SVGA_VIDEO_WIDTH].value = arg->width; in vmw_overlay_send_put()
153 items[SVGA_VIDEO_HEIGHT].value = arg->height; in vmw_overlay_send_put()
154 items[SVGA_VIDEO_SRC_X].value = arg->src.x; in vmw_overlay_send_put()
155 items[SVGA_VIDEO_SRC_Y].value = arg->src.y; in vmw_overlay_send_put()
156 items[SVGA_VIDEO_SRC_WIDTH].value = arg->src.w; in vmw_overlay_send_put()
157 items[SVGA_VIDEO_SRC_HEIGHT].value = arg->src.h; in vmw_overlay_send_put()
158 items[SVGA_VIDEO_DST_X].value = arg->dst.x; in vmw_overlay_send_put()
159 items[SVGA_VIDEO_DST_Y].value = arg->dst.y; in vmw_overlay_send_put()
160 items[SVGA_VIDEO_DST_WIDTH].value = arg->dst.w; in vmw_overlay_send_put()
161 items[SVGA_VIDEO_DST_HEIGHT].value = arg->dst.h; in vmw_overlay_send_put()
162 items[SVGA_VIDEO_PITCH_1].value = arg->pitch[0]; in vmw_overlay_send_put()
163 items[SVGA_VIDEO_PITCH_2].value = arg->pitch[1]; in vmw_overlay_send_put()
164 items[SVGA_VIDEO_PITCH_3].value = arg->pitch[2]; in vmw_overlay_send_put()
166 items[SVGA_VIDEO_DATA_GMRID].value = ptr.gmrId; in vmw_overlay_send_put()
167 items[SVGA_VIDEO_DST_SCREEN_ID].value = SVGA_ID_INVALID; in vmw_overlay_send_put()
210 cmds->body.items[0].registerId = SVGA_VIDEO_ENABLED; in vmw_overlay_send_stop()
211 cmds->body.items[0].value = false; in vmw_overlay_send_stop()