Skip to content
Snippets Groups Projects
Commit 99de535d authored by Romain Vimont's avatar Romain Vimont Committed by Hugo Beauzée-Luyssen
Browse files

opengl: simplify framebuffers initialization

Only the tex_count assignment differs depending on the filter_planes
flag. The remaining code can be common to both branches.
parent 756d5b44
No related branches found
No related tags found
1 merge request!905Expose libplacebo upscalers in OpenGL vout
......@@ -184,43 +184,23 @@ InitFramebuffersOut(struct vlc_gl_filter_priv *priv)
struct vlc_gl_filter *filter = &priv->filter;
if (filter->config.filter_planes)
{
struct vlc_gl_format *glfmt = &priv->glfmt_in;
priv->tex_count = glfmt->tex_count;
vt->GenFramebuffers(priv->tex_count, priv->framebuffers_out);
vt->GenTextures(priv->tex_count, priv->textures_out);
memcpy(priv->tex_widths, priv->plane_widths,
priv->tex_count * sizeof(*priv->tex_widths));
memcpy(priv->tex_heights, priv->plane_heights,
priv->tex_count * sizeof(*priv->tex_heights));
for (unsigned i = 0; i < glfmt->tex_count; ++i)
{
/* Init one framebuffer and texture for each plane */
int ret =
InitPlane(priv, i, priv->tex_widths[i], priv->tex_heights[i]);
if (ret != VLC_SUCCESS)
{
DeleteFramebuffersOut(priv);
return ret;
}
}
}
priv->tex_count = priv->glfmt_in.tex_count;
else
{
priv->tex_count = 1;
/* Create a texture having the expected size */
vt->GenFramebuffers(1, priv->framebuffers_out);
vt->GenTextures(1, priv->textures_out);
vt->GenFramebuffers(priv->tex_count, priv->framebuffers_out);
vt->GenTextures(priv->tex_count, priv->textures_out);
priv->tex_widths[0] = priv->size_out.width;
priv->tex_heights[0] = priv->size_out.height;
memcpy(priv->tex_widths, priv->plane_widths,
priv->tex_count * sizeof(*priv->tex_widths));
memcpy(priv->tex_heights, priv->plane_heights,
priv->tex_count * sizeof(*priv->tex_heights));
int ret = InitPlane(priv, 0, priv->tex_widths[0], priv->tex_heights[0]);
for (unsigned i = 0; i < priv->tex_count; ++i)
{
/* Init one framebuffer and texture for each plane */
int ret =
InitPlane(priv, i, priv->tex_widths[i], priv->tex_heights[i]);
if (ret != VLC_SUCCESS)
{
DeleteFramebuffersOut(priv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment