summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-13 10:42:21 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-13 10:42:21 +0000
commit2b146ebac8addc0ba68ff822ca2a7a66026d7730 (patch)
treef08576bc950d9e62b6f9e38e07a68526cd4f93fa /DOCS
parent35c48c5c3b0401c503fe53d7fb8332c2815c9e76 (diff)
downloadmpv-2b146ebac8addc0ba68ff822ca2a7a66026d7730.tar.bz2
mpv-2b146ebac8addc0ba68ff822ca2a7a66026d7730.tar.xz
Document vo_tdfx_vid.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21896 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/en/video.xml45
1 files changed, 45 insertions, 0 deletions
diff --git a/DOCS/xml/en/video.xml b/DOCS/xml/en/video.xml
index c88a3ca1c5..409d4ea728 100644
--- a/DOCS/xml/en/video.xml
+++ b/DOCS/xml/en/video.xml
@@ -901,6 +901,51 @@ with
<!-- ********** -->
+<sect2 id="tdfx_vid">
+<title>tdfx_vid</title>
+
+<para>
+This is a combination of a Linux kernel module and a video output
+driver, similar to <link linkend="mga_vid">mga_vid</link>.
+You'll need a 2.4.x kernel with the <systemitem>agpgart</systemitem>
+driver since <systemitem>tdfx_vid</systemitem> uses AGP.
+Pass <option>--enable-tdfxfb</option> to <command>configure</command>
+to build the video output driver and build the kernel module with
+the following instructions.
+</para>
+
+<procedure>
+<title>Installing the tdfx_vid.o kernel module:</title>
+<step><para>
+ Compile <filename>tdfx_vid.o</filename>:
+ <screen>
+cd drivers
+make tdfx_vid.o</screen>
+</para></step>
+<step><para>
+ Then create the <filename>/dev/tdfx_vid</filename> device:
+ <screen>mknod /dev/tdfx_vid c 178 0</screen>
+ and load the driver with
+ <screen>insmod tdfx_vid.o</screen>
+</para></step>
+<step><para>
+ To make it load/unload automatically when needed, first insert the
+ following line at the end of <filename>/etc/modules.conf</filename>:
+
+ <programlisting>alias char-major-178 tdfx_vid</programlisting>
+
+ Then copy the <filename>tdfx_vid.o</filename> module to the appropriate
+ place under <filename>/lib/modules/<replaceable>kernel
+ version</replaceable>/<replaceable>somewhere</replaceable></filename>
+ and run
+ <screen>depmod -a</screen>
+</para></step>
+</procedure>
+
+</sect2>
+
+<!-- ********** -->
+
<sect2 id="opengl">
<title>OpenGL output</title>