diff libvo/video_out.c @ 7536:70c35cd5db1f

-vo directx driver by Sascha Sommer <saschasommer@freenet.de>
author arpi
date Sat, 28 Sep 2002 19:03:50 +0000
parents c7a9bcecba07
children 56ea9db91251
line wrap: on
line diff
--- a/libvo/video_out.c	Sat Sep 28 19:00:50 2002 +0000
+++ b/libvo/video_out.c	Sat Sep 28 19:03:50 2002 +0000
@@ -70,6 +70,9 @@
 extern vo_functions_t video_out_aa;
 extern vo_functions_t video_out_mpegpes;
 extern vo_functions_t video_out_yuv4mpeg;
+#ifdef HAVE_DIRECTX
+extern vo_functions_t video_out_directx;
+#endif
 #ifdef HAVE_DXR2
 extern vo_functions_t video_out_dxr2;
 #endif
@@ -122,6 +125,9 @@
 #ifdef HAVE_SDL
         &video_out_sdl,
 #endif
+#ifdef HAVE_DIRECTX
+        &video_out_directx,
+#endif
 #ifdef HAVE_GGI
 	&video_out_ggi,
 #endif