vulkan: fix output framebuffer creation size

We don't scale when color converting so there is no impact.
This commit is contained in:
Matthew Waters 2019-07-04 17:19:31 +10:00
parent 9996ae9ae0
commit 6ebaf7276e

View file

@ -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* */