Variables for OSD support should be static

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13600 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2004-10-10 12:26:58 +00:00
parent f30d8e7989
commit 780e75dd68
1 changed files with 5 additions and 5 deletions

View File

@ -42,14 +42,14 @@ static int wsGLXAttrib[] = { GLX_RGBA,
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;