virgl/gbm: Account for bpp in planar stride

When transferring to/from a planar buffer, multiply by bytes-per-pixel
when computing each plane's stride from stride0. In particular, this
is necessary when transferring to/from biplanar yuv buffers.

Signed-off-by: David Stevens <stevensd@chromium.org>
Reviewed-by: Gurchetan Singh <gurchetansingh@chromium.org>
macos/master
David Stevens 5 years ago
parent 1a73838b1f
commit 9cc29b194a
  1. 8
      src/virgl_gbm.c

@ -336,8 +336,12 @@ int virgl_gbm_transfer(struct gbm_bo *bo, uint32_t direction, struct iovec *iove
uint32_t subsampled_width = info->box->width / layout->horizontal_subsampling[plane];
uint32_t subsampled_height = info->box->height / layout->vertical_subsampling[plane];
uint32_t plane_height = height / layout->vertical_subsampling[plane];
uint32_t guest_plane_stride = guest_stride0 / layout->horizontal_subsampling[plane];
uint32_t host_plane_stride = host_map_stride0 / layout->horizontal_subsampling[plane];
uint32_t plane_byte_ratio = layout->bytes_per_pixel[plane] / layout->bytes_per_pixel[0];
uint32_t guest_plane_stride = (guest_stride0 * plane_byte_ratio)
/ layout->horizontal_subsampling[plane];
uint32_t host_plane_stride = (host_map_stride0 * plane_byte_ratio)
/ layout->horizontal_subsampling[plane];
uint32_t guest_resource_offset = guest_plane_offset + (subsampled_y * guest_plane_stride)
+ subsampled_x * layout->bytes_per_pixel[plane];

Loading…
Cancel
Save