1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-03 04:37:54 +00:00

DGA support

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
arpi_esp 2001-02-27 01:08:09 +00:00
parent 8d38e85978
commit 44e4aca4a7

View File

@ -40,6 +40,7 @@ extern vo_functions_t video_out_xmga;
extern vo_functions_t video_out_x11;
extern vo_functions_t video_out_xv;
extern vo_functions_t video_out_gl;
extern vo_functions_t video_out_dga;
extern vo_functions_t video_out_sdl;
extern vo_functions_t video_out_3dfx;
extern vo_functions_t video_out_null;
@ -71,6 +72,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_GL
&video_out_gl,
#endif
#ifdef HAVE_DGA
&video_out_dga,
#endif
#ifdef HAVE_SDL
&video_out_sdl,
#endif