[vlc-devel] [PATCH v2 02/29] opengl: fix typo

Romain Vimont rom1v at videolabs.io
Thu Feb 6 14:17:31 CET 2020


In the initial patchset, vlc_gl_interop was named vlc_gl_importer.

It had been incorrectly replaced.
---
 modules/video_output/opengl/interop.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/modules/video_output/opengl/interop.h b/modules/video_output/opengl/interop.h
index 3aa19adf71..2a366ed91d 100644
--- a/modules/video_output/opengl/interop.h
+++ b/modules/video_output/opengl/interop.h
@@ -46,7 +46,7 @@ struct vlc_gl_interop_ops {
      * \return VLC_SUCCESS or a VLC error
      */
     int
-    (*allocate_textures)(const struct vlc_gl_interop *interoporter,
+    (*allocate_textures)(const struct vlc_gl_interop *interop,
                          GLuint textures[], const GLsizei tex_width[],
                          const GLsizei tex_height[]);
 
@@ -66,7 +66,7 @@ struct vlc_gl_interop_ops {
      * \return VLC_SUCCESS or a VLC error
      */
     int
-    (*update_textures)(const struct vlc_gl_interop *interoporter,
+    (*update_textures)(const struct vlc_gl_interop *interop,
                        GLuint textures[], const GLsizei tex_width[],
                        const GLsizei tex_height[], picture_t *pic,
                        const size_t plane_offsets[]);
@@ -91,7 +91,7 @@ struct vlc_gl_interop_ops {
      * \return a 4x4 transformatoin matrix (possibly NULL)
      */
     const float *
-    (*get_transform_matrix)(const struct vlc_gl_interop *interoporter);
+    (*get_transform_matrix)(const struct vlc_gl_interop *interop);
 };
 
 struct vlc_gl_interop {
-- 
2.25.0



More information about the vlc-devel mailing list