Merge pull request #3656 from phire/windows-10-sdk-update

Updated D3D12 to build on the newer windows 10 sdk.
This commit is contained in:
Pierre Bourdon 2016-03-30 18:37:53 +02:00
commit 486d3a7114
3 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{570215B7-E32F-4438-95AE-C8D955F9FCA3}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.10240.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0.10586.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">

View File

@ -955,7 +955,7 @@ void STDMETHODCALLTYPE ID3D12QueuedCommandList::SetPredication(
void STDMETHODCALLTYPE ID3D12QueuedCommandList::SetDescriptorHeaps(
_In_ UINT NumDescriptorHeaps,
_In_reads_(NumDescriptorHeaps) ID3D12DescriptorHeap** pDescriptorHeaps
_In_reads_(NumDescriptorHeaps) ID3D12DescriptorHeap *const * pDescriptorHeaps
)
{
// No ignored parameters, no assumptions to DEBUGCHECK.

View File

@ -152,7 +152,7 @@ struct CopyTextureRegionArguments
struct SetDescriptorHeapsArguments
{
ID3D12DescriptorHeap** ppDescriptorHeap;
ID3D12DescriptorHeap* const* ppDescriptorHeap;
UINT NumDescriptorHeaps;
};
@ -447,7 +447,7 @@ public:
void STDMETHODCALLTYPE SetDescriptorHeaps(
_In_ UINT NumDescriptorHeaps,
_In_reads_(NumDescriptorHeaps) ID3D12DescriptorHeap** pDescriptorHeaps
_In_reads_(NumDescriptorHeaps) ID3D12DescriptorHeap *const * pDescriptorHeaps
);
void STDMETHODCALLTYPE SetComputeRootSignature(