diff options
| author | Yong He <yonghe@outlook.com> | 2022-09-19 17:08:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-19 17:08:25 -0700 |
| commit | 8e44968be297c0fa0ab00510a5e5922630d8c401 (patch) | |
| tree | beaa533082ab8d404dfa9f6a706d1be17997b833 /tools/gfx/d3d12/d3d12-command-buffer.h | |
| parent | 53db0e9e126cb26ffb505e1bf02cc64f00cc9855 (diff) | |
Fix d3d12 implementation of `uploadBufferData`. (#2402)
* Fix d3d12 implementation of `uploadBufferData`.
* Add ICommandBufferD3D12::ensureInternalDescriptorHeapsBound().
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'tools/gfx/d3d12/d3d12-command-buffer.h')
| -rw-r--r-- | tools/gfx/d3d12/d3d12-command-buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gfx/d3d12/d3d12-command-buffer.h b/tools/gfx/d3d12/d3d12-command-buffer.h index dbe019807..0b24764c1 100644 --- a/tools/gfx/d3d12/d3d12-command-buffer.h +++ b/tools/gfx/d3d12/d3d12-command-buffer.h @@ -49,6 +49,7 @@ public: void bindDescriptorHeaps(); virtual SLANG_NO_THROW void SLANG_MCALL invalidateDescriptorHeapBinding() override { m_descriptorHeapsBound = false; } + virtual SLANG_NO_THROW void SLANG_MCALL ensureInternalDescriptorHeapsBound() override { bindDescriptorHeaps(); } void reinit(); |
