1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-02-18 04:54:15 +01:00

[meta] Add D3D10 support to setup script and package-release script

This commit is contained in:
Philip Rebohle 2018-08-13 13:33:39 +02:00
parent f011e78163
commit 4867c8b6e5
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 12 additions and 3 deletions

View File

@ -28,6 +28,9 @@ function build_arch {
mkdir "$DXVK_BUILD_DIR/x$1"
cp "$DXVK_BUILD_DIR/install.$1/bin/d3d10.dll" "$DXVK_BUILD_DIR/x$1/d3d10.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/d3d10_1.dll" "$DXVK_BUILD_DIR/x$1/d3d10_1.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/d3d10core.dll" "$DXVK_BUILD_DIR/x$1/d3d10core.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/d3d11.dll" "$DXVK_BUILD_DIR/x$1/d3d11.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/dxgi.dll" "$DXVK_BUILD_DIR/x$1/dxgi.dll"
cp "$DXVK_BUILD_DIR/install.$1/bin/setup_dxvk.sh" "$DXVK_BUILD_DIR/x$1/setup_dxvk.sh"

View File

@ -181,8 +181,14 @@ check)
;;
esac
echo '[1/2] d3d11:'
$fun d3d11
echo '[2/2] dxgi:'
echo '[1/5] dxgi:'
$fun dxgi
echo '[2/5] d3d10:'
$fun d3d10
echo '[3/5] d3d10_1:'
$fun d3d10_1
echo '[4/5] d3d10core:'
$fun d3d10core
echo '[5/5] d3d11:'
$fun d3d11
exit $ret