diff libvo/vo_gl.c @ 13599:094b023bd291

Variables for OSD support should be static
author reimar
date Sun, 10 Oct 2004 12:26:58 +0000
parents db4d2cf3f2dc
children da85ac96600e
line wrap: on
line diff
--- a/libvo/vo_gl.c	Sat Oct 09 22:14:36 2004 +0000
+++ b/libvo/vo_gl.c	Sun Oct 10 12:26:58 2004 +0000
@@ -42,14 +42,14 @@
                                        GLX_DOUBLEBUFFER,
                                        None };
 
-int use_osd;
+static int use_osd;
 #define MAX_OSD_PARTS 20
-GLuint osdtex[MAX_OSD_PARTS];
+static GLuint osdtex[MAX_OSD_PARTS];
 #ifndef FAST_OSD
-GLuint osdatex[MAX_OSD_PARTS];
+static GLuint osdatex[MAX_OSD_PARTS];
 #endif
-GLuint osdDispList[MAX_OSD_PARTS];
-int osdtexCnt = 0;
+static GLuint osdDispList[MAX_OSD_PARTS];
+static int osdtexCnt = 0;
 
 static uint32_t image_width;
 static uint32_t image_height;