Skip to content

Commit

Permalink
[meta] Add D3D10 support to setup script and package-release script
Browse files Browse the repository at this point in the history
  • Loading branch information
doitsujin committed Aug 13, 2018
1 parent f011e78 commit 4867c8b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
3 changes: 3 additions & 0 deletions package-release.sh
Expand Up @@ -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"
Expand Down
12 changes: 9 additions & 3 deletions wine_utils/setup_dxvk.sh.in
Expand Up @@ -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

0 comments on commit 4867c8b

Please sign in to comment.