# HG changeset patch # User arpi_esp # Date 983236089 0 # Node ID 7400af1c6d442a7968c062afc2c1276bdbcc578c # Parent 77b0a5c5e9e16539def4700a90c778baeb5b9c43 DGA support diff -r 77b0a5c5e9e1 -r 7400af1c6d44 libvo/video_out.c --- 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