summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-02-27 01:08:09 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-02-27 01:08:09 +0000
commit44e4aca4a78e36269bad36114e6718207fc5ddbc (patch)
treec82e33866809e77cd13e682ef247fa353b62cee5
parent8d38e85978f264087fa75ad53ca99c132839701c (diff)
downloadmpv-44e4aca4a78e36269bad36114e6718207fc5ddbc.tar.bz2
mpv-44e4aca4a78e36269bad36114e6718207fc5ddbc.tar.xz
DGA support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/video_out.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 1afe77ee51..8698d956b0 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -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