mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-31 20:40:09 +01:00
v3dv: limit blit framebuffer dimensions to max coordinates
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
parent
43063d8de8
commit
ec78ee0342
1 changed files with 2 additions and 2 deletions
|
|
@ -4111,8 +4111,8 @@ blit_shader(struct v3dv_cmd_buffer *cmd_buffer,
|
|||
.renderPass = pipeline->pass,
|
||||
.attachmentCount = 1,
|
||||
.pAttachments = &dst_image_view,
|
||||
.width = dst_level_w,
|
||||
.height = dst_level_h,
|
||||
.width = dst_x + dst_w,
|
||||
.height = dst_y + dst_h,
|
||||
.layers = 1,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue