mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
vulkan: fix output framebuffer creation size
We don't scale when color converting so there is no impact.
This commit is contained in:
parent
9996ae9ae0
commit
6ebaf7276e
1 changed files with 2 additions and 2 deletions
|
@ -1628,8 +1628,8 @@ _create_framebuffer (GstVulkanColorConvert * conv, guint n_views,
|
||||||
.renderPass = render->render_pass,
|
.renderPass = render->render_pass,
|
||||||
.attachmentCount = n_views,
|
.attachmentCount = n_views,
|
||||||
.pAttachments = views,
|
.pAttachments = views,
|
||||||
.width = GST_VIDEO_INFO_WIDTH (&render->in_info),
|
.width = GST_VIDEO_INFO_WIDTH (&render->out_info),
|
||||||
.height = GST_VIDEO_INFO_HEIGHT (&render->in_info),
|
.height = GST_VIDEO_INFO_HEIGHT (&render->out_info),
|
||||||
.layers = 1
|
.layers = 1
|
||||||
};
|
};
|
||||||
/* *INDENT-ON* */
|
/* *INDENT-ON* */
|
||||||
|
|
Loading…
Reference in a new issue