summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
Diffstat (limited to 'libvo')
-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