Your graphic card and your application both support Quad Buffering (GL_STEREO)
$ sudo add-apt-repository ppa:johaahn/libnvstusb
$ sudo apt-get install nvstusb-tools
$ sudo chrt -r -p 99 nvstusb-quad path/to/nvstusb.fw Realtime priority is not mandatory, but prevent unwanted right-left eyes inversion The controller button is used to invert eyes. Either your graphic card or your application does not support Quad Buffering:
Play a 3D video with your NVIDIA controller 3D VISION on Linux
$ sudo chrt -r -p 99 nvstusb-quad path/to/nvstusb.fw
$ mplayer -vo gl:stereo=3 /path/to/your/video launch mplayer with openGL renderer and quadbuffering optionThe controller button is used to invert eyes. FAQAdd Stereo support to your XORG configAdd Stereo option to your device:
Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce GTX 460" Option "Stereo" "10" EndSection You must also disable composite extension:
Generate nvstusb.fw
$ sudo apt-get install cabextract
$ wget http://fr.download.nvidia.com/Windows/3d_vision_stereo/NVIDIA_3D_Vision_v258.96_driver.exe
$ cabextract -F nvstusb.sys ./NVIDIA_3D_Vision_v258.96_driver.exe
$ nvstusb-extractfw nvstusb.sys Have fun ! Author: Johann Baudy <johann.baudy@gnu-log.net> |