diff options
| author | jsmall-nvidia <jsmall@nvidia.com> | 2018-04-03 12:25:51 -0400 |
|---|---|---|
| committer | Tim Foley <tfoleyNV@users.noreply.github.com> | 2018-04-03 09:25:51 -0700 |
| commit | 3115ba7a3640937df01ecf60f7ff55f71a3ab7c2 (patch) | |
| tree | e92edd95391270df3afdd1c0bc36aebf16e5994e /tools/render-test/render-d3d12.cpp | |
| parent | 499e2586cba2a7ba2a703b90c459b24620e351ee (diff) | |
Fixes based on review of feature/dx12 PR. (#473)
Diffstat (limited to 'tools/render-test/render-d3d12.cpp')
| -rw-r--r-- | tools/render-test/render-d3d12.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/render-test/render-d3d12.cpp b/tools/render-test/render-d3d12.cpp index 50ef6e575..8827816d9 100644 --- a/tools/render-test/render-d3d12.cpp +++ b/tools/render-test/render-d3d12.cpp @@ -193,7 +193,7 @@ protected: { virtual void setRootConstantBufferView(int index, D3D12_GPU_VIRTUAL_ADDRESS gpuBufferLocation) = 0; virtual void setRootDescriptorTable(int index, D3D12_GPU_DESCRIPTOR_HANDLE BaseDescriptor) = 0; - virtual void setRootSigniture(ID3D12RootSignature* rootSignature) = 0; + virtual void setRootSignature(ID3D12RootSignature* rootSignature) = 0; }; struct BindParameters @@ -228,7 +228,7 @@ protected: { m_commandList->SetGraphicsRootDescriptorTable(index, baseDescriptor); } - void setRootSigniture(ID3D12RootSignature* rootSignature) + void setRootSignature(ID3D12RootSignature* rootSignature) { m_commandList->SetGraphicsRootSignature(rootSignature); } @@ -251,7 +251,7 @@ protected: { m_commandList->SetComputeRootDescriptorTable(index, baseDescriptor); } - void setRootSigniture(ID3D12RootSignature* rootSignature) + void setRootSignature(ID3D12RootSignature* rootSignature) { m_commandList->SetComputeRootSignature(rootSignature); } @@ -1415,7 +1415,7 @@ Result D3D12Renderer::_bindRenderState(RenderState* renderState, ID3D12GraphicsC { BindingStateImpl* bindingState = m_boundBindingState; - submitter->setRootSigniture(renderState->m_rootSignature); + submitter->setRootSignature(renderState->m_rootSignature); commandList->SetPipelineState(renderState->m_pipelineState); { |
