comparison libvo/video_out.h @ 388:ccb5ebfaaeac

-bpp changes
author arpi_esp
date Fri, 13 Apr 2001 13:47:36 +0000
parents fbfc2077ba72
children b61c5c4484f8
comparison
equal deleted inserted replaced
387:43acef8f7c74 388:ccb5ebfaaeac
103 } vo_functions_t; 103 } vo_functions_t;
104 104
105 // NULL terminated array of all drivers 105 // NULL terminated array of all drivers
106 extern vo_functions_t* video_out_drivers[]; 106 extern vo_functions_t* video_out_drivers[];
107 107
108 // currect resolution/bpp on screen: (should be autodetected by vo_init())
109 extern int vo_depthonscreen;
110 extern int vo_screenwidth;
111 extern int vo_screenheight;
108 112
113 // requested resolution/bpp: (-x -y -bpp options)
114 extern int vo_dwidth;
115 extern int vo_dheight;
116 extern int vo_dbpp;
117