changeset 12:7400af1c6d44

DGA support
author arpi_esp
date Tue, 27 Feb 2001 01:08:09 +0000
parents 77b0a5c5e9e1
children 36314c7bda8d
files libvo/video_out.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/video_out.c	Tue Feb 27 00:23:54 2001 +0000
+++ b/libvo/video_out.c	Tue Feb 27 01:08:09 2001 +0000
@@ -40,6 +40,7 @@
 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 @@
 #ifdef HAVE_GL
         &video_out_gl,
 #endif
+#ifdef HAVE_DGA
+        &video_out_dga,
+#endif
 #ifdef HAVE_SDL
         &video_out_sdl,
 #endif