[vlc-commits] opengl: fix typo
    Romain Vimont 
    git at videolan.org
       
    Thu Feb 13 23:12:42 CET 2020
    
    
  
vlc | branch: master | Romain Vimont <rom1v at videolabs.io> | Wed Jan 29 11:24:41 2020 +0100| [ab9fa77f90d234f23cbb4177418e849c335de008] | committer: Jean-Baptiste Kempf
opengl: fix typo
In the initial patchset, vlc_gl_interop was named vlc_gl_importer.
It had been incorrectly replaced.
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ab9fa77f90d234f23cbb4177418e849c335de008
---
 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 {
    
    
More information about the vlc-commits
mailing list