Added patch for nvapi stubs (required for GPU PhysX support).

This commit is contained in:
Michael Müller 2015-01-06 15:12:34 +01:00
parent 5f3631c6be
commit 41728a6faf
5 changed files with 947 additions and 1 deletions

View File

@ -37,8 +37,9 @@ Wine. All those differences are also documented on the
Included bug fixes and improvements
===================================
**Bugfixes and features included in the next upcoming release [22]:**
**Bugfixes and features included in the next upcoming release [23]:**
* Add nvapi stubs required for GPU PhysX support
* Add stub for D3DXComputeNormalMap
* Add stub for D3DXComputeTangentFrameEx ([Wine Bug #31984](https://bugs.winehq.org/show_bug.cgi?id=31984))
* Add stub for D3DXIntersect

1
debian/changelog vendored
View File

@ -30,6 +30,7 @@ wine-staging (1.7.34) UNRELEASED; urgency=low
* Added patch to fix parameters for ConvertToIndexedBlendedMesh stub.
* Added patch for basic CUDA support.
* Added patches for D3DXComputeNormals and D3DXComputeNormalMap.
* Added patch for nvapi stubs (required for GPU PhysX support).
* Removed patch to emulate write to CR4 register (accepted upstream).
* Removed patch with stub for KeSetSystemAffinityThread (accepted upstream).
* Removed patch to implement combase HSTRING objects (accepted upstream).

View File

@ -89,6 +89,7 @@ PATCHLIST := \
ntoskrnl-Emulator.ok \
ntoskrnl-Irp_Status.ok \
ntoskrnl-Stub_FileObject.ok \
nvapi-Stub_DLL.ok \
nvcuda-CUDA_Support.ok \
ole32-CoWaitForMultipleHandles.ok \
quartz-MediaSeeking_Positions.ok \
@ -1398,6 +1399,19 @@ ntoskrnl-Stub_FileObject.ok:
echo '+ { "Sebastian Lackner", "ntoskrnl: Initialize irp.Tail.Overlay.OriginalFileObject with stub file object.", 1 },'; \
) > ntoskrnl-Stub_FileObject.ok
# Patchset nvapi-Stub_DLL
# |
# | Modified files:
# | * configure.ac, dlls/nvapi/Makefile.in, dlls/nvapi/nvapi.c, dlls/nvapi/nvapi.spec, dlls/nvapi/tests/Makefile.in,
# | dlls/nvapi/tests/nvapi.c, dlls/nvapi64/Makefile.in, dlls/nvapi64/nvapi64.spec, include/Makefile.in, include/nvapi.h
# |
.INTERMEDIATE: nvapi-Stub_DLL.ok
nvapi-Stub_DLL.ok: nvcuda-CUDA_Support.ok
$(call APPLY_FILE,nvapi-Stub_DLL/0001-nvapi-First-implementation.patch)
@( \
echo '+ { "Michael Müller", "nvapi: First implementation.", 1 },'; \
) > nvapi-Stub_DLL.ok
# Patchset nvcuda-CUDA_Support
# |
# | Modified files:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,2 @@
Fixes: Add nvapi stubs required for GPU PhysX support
Depends: nvcuda-CUDA_Support