mirror of
https://github.com/mpv-player/mpv
synced 2024-12-15 11:25:10 +00:00
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:
parent
f30d8e7989
commit
780e75dd68
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user