comparison 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
comparison
equal deleted inserted replaced
13598:7a626d236929 13599:094b023bd291
40 GLX_GREEN_SIZE,1, 40 GLX_GREEN_SIZE,1,
41 GLX_BLUE_SIZE,1, 41 GLX_BLUE_SIZE,1,
42 GLX_DOUBLEBUFFER, 42 GLX_DOUBLEBUFFER,
43 None }; 43 None };
44 44
45 int use_osd; 45 static int use_osd;
46 #define MAX_OSD_PARTS 20 46 #define MAX_OSD_PARTS 20
47 GLuint osdtex[MAX_OSD_PARTS]; 47 static GLuint osdtex[MAX_OSD_PARTS];
48 #ifndef FAST_OSD 48 #ifndef FAST_OSD
49 GLuint osdatex[MAX_OSD_PARTS]; 49 static GLuint osdatex[MAX_OSD_PARTS];
50 #endif 50 #endif
51 GLuint osdDispList[MAX_OSD_PARTS]; 51 static GLuint osdDispList[MAX_OSD_PARTS];
52 int osdtexCnt = 0; 52 static int osdtexCnt = 0;
53 53
54 static uint32_t image_width; 54 static uint32_t image_width;
55 static uint32_t image_height; 55 static uint32_t image_height;
56 static uint32_t image_bytes; 56 static uint32_t image_bytes;
57 static int many_fmts; 57 static int many_fmts;