blob: 918312e216aacb6f86f30e2b8c5bd34f7a33f7d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# Disable debugging output of the vdpau backend
export VDPAU_LOG=0
# Use the vdpau backend of the nvidia binary driver
#export VDPAU_DRIVER="nvidia"
# Use the vdpau backend of the nouveau driver
#export VDPAU_DRIVER="nouveau"
# Use the vdpau backend of the r300 driver
#export VDPAU_DRIVER="r300"
# Use the vdpau backend of the r600 driver
#export VDPAU_DRIVER="r600"
# Use the vdpau backend of the radeonsi driver
#export VDPAU_DRIVER="radeonsi"
# Use the va-api/opengl backend
#export VDPAU_DRIVER="va_gl"
|