comparison libvo/vo_gl.c @ 14269:718ec28220d6

Doxygen comments improved
author reimar
date Wed, 29 Dec 2004 14:33:40 +0000
parents c4033dcb986f
children da530c6064a0
comparison
equal deleted inserted replaced
14268:37e1dc7e7107 14269:718ec28220d6
45 GLX_DOUBLEBUFFER, 45 GLX_DOUBLEBUFFER,
46 None }; 46 None };
47 47
48 static int use_osd; 48 static int use_osd;
49 static int scaled_osd; 49 static int scaled_osd;
50 //! How many parts the OSD may consist of at most
50 #define MAX_OSD_PARTS 20 51 #define MAX_OSD_PARTS 20
52 //! Textures for OSD
51 static GLuint osdtex[MAX_OSD_PARTS]; 53 static GLuint osdtex[MAX_OSD_PARTS];
52 #ifndef FAST_OSD 54 #ifndef FAST_OSD
55 //! Alpha textures for OSD
53 static GLuint osdatex[MAX_OSD_PARTS]; 56 static GLuint osdatex[MAX_OSD_PARTS];
54 #endif 57 #endif
58 //! Display lists that draw the OSD parts
55 static GLuint osdDispList[MAX_OSD_PARTS]; 59 static GLuint osdDispList[MAX_OSD_PARTS];
60 //! How many parts the OSD currently consists of
56 static int osdtexCnt = 0; 61 static int osdtexCnt = 0;
57 62
58 static int use_aspect; 63 static int use_aspect;
59 static uint32_t image_width; 64 static uint32_t image_width;
60 static uint32_t image_height; 65 static uint32_t image_height;