summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-07 18:45:02 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-03-07 18:45:02 +0000
commit90eb7beed5f021b94df5827a9636ddeb09da8286 (patch)
treeff29b5a70060fdda3991d5972d2337f9e27da7b8 /libvo/video_out.c
parent4db6d23cc2f55eddc4858d262de08e472edeee06 (diff)
downloadmpv-90eb7beed5f021b94df5827a9636ddeb09da8286.tar.bz2
mpv-90eb7beed5f021b94df5827a9636ddeb09da8286.tar.xz
vo tdfx vid, even faster than tdfxfb and that's just the beginning ;)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9547 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 21903d8d16..2a47568750 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -99,9 +99,15 @@ extern vo_functions_t video_out_dfbmga;
#ifdef CONFIG_VIDIX
extern vo_functions_t video_out_xvidix;
#endif
+#ifdef HAVE_TDFX_VID
+extern vo_functions_t video_out_tdfx_vid;
+#endif
vo_functions_t* video_out_drivers[] =
{
+#ifdef HAVE_TDFX_VID
+ &video_out_tdfx_vid,
+#endif
#ifdef HAVE_DIRECTX
&video_out_directx,
#endif