Add LIBVA_DRIVER_NAME env var for host dilong

This commit is contained in:
Glenn Y. Rolland 2021-12-31 15:00:55 +01:00
parent 52b766e18e
commit c67a7bda49

View file

@ -11,8 +11,13 @@
if [ -d "$HOME/.bashrc.d" ]; then
for script in $(find "$HOME/.bashrc.d/" -name '*.sh' |sort -n) ; do
# echo "Loading `basename \"$script\"`..." # >&2
. $script
. "$script"
done
fi
case "$(hostname)" in
dilong) export LIBVA_DRIVER_NAME=i965
;;
*) ;;
esac