diff --git a/modules/video_output/opengl/fragment_shaders.c b/modules/video_output/opengl/fragment_shaders.c index 89499e68479838f4294b78fc37b499d6670bd5b6..e54fdf389d5ada88ef6716f45e186f49ee7e4ee2 100644 --- a/modules/video_output/opengl/fragment_shaders.c +++ b/modules/video_output/opengl/fragment_shaders.c @@ -457,17 +457,19 @@ tc_xyz12_prepare_shader(const opengl_tex_converter_t *tc, tc->vt->Uniform1i(tc->uloc.Texture[0], 0); } -static GLuint -xyz12_shader_init(opengl_tex_converter_t *tc) +static void +interop_xyz12_init(struct vlc_gl_interop *interop) { - struct vlc_gl_interop *interop = &tc->interop; - interop->tex_count = 1; interop->tex_target = GL_TEXTURE_2D; interop->texs[0] = (struct vlc_gl_tex_cfg) { { 1, 1 }, { 1, 1 }, GL_RGB, GL_RGB, GL_UNSIGNED_SHORT }; +} +static GLuint +xyz12_shader_init(opengl_tex_converter_t *tc) +{ tc->pf_fetch_locations = tc_xyz12_fetch_locations; tc->pf_prepare_shader = tc_xyz12_prepare_shader; @@ -535,7 +537,10 @@ opengl_fragment_shader_init_impl(opengl_tex_converter_t *tc, GLenum tex_target, return 0; if (chroma == VLC_CODEC_XYZ12) + { + interop_xyz12_init(&tc->interop); return xyz12_shader_init(tc); + } if (is_yuv) {