summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 12:23:42 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 12:23:42 +0000
commitaf366bff51545bd096935272384cd8a5653575ee (patch)
treeaac01fea94025558a5bda1b8ee20febb4e0c7fba /libvo/video_out.c
parent04d6de5ee2429bf8a6b6c1004559d5c36e32d69b (diff)
downloadmpv-af366bff51545bd096935272384cd8a5653575ee.tar.bz2
mpv-af366bff51545bd096935272384cd8a5653575ee.tar.xz
Direct3D based video_out module.
Patch by Georgi Petrov (gogothebee gmail com) Panscan handling is still disabled and needs to be fixed for negative -panscan. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27955 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-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 5e675042ae..6360bf79a0 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -93,6 +93,7 @@ extern vo_functions_t video_out_aa;
extern vo_functions_t video_out_caca;
extern vo_functions_t video_out_mpegpes;
extern vo_functions_t video_out_yuv4mpeg;
+extern vo_functions_t video_out_direct3d;
extern vo_functions_t video_out_directx;
extern vo_functions_t video_out_dxr2;
extern vo_functions_t video_out_dxr3;
@@ -122,6 +123,9 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_TDFX_VID
&video_out_tdfx_vid,
#endif
+#ifdef CONFIG_DIRECT3D
+ &video_out_direct3d,
+#endif
#ifdef CONFIG_DIRECTX
&video_out_directx,
#endif