fix(RHI): 修复抽象基类编译问题

This commit is contained in:
2026-03-17 18:24:08 +08:00
parent 20445999fc
commit a257ff2d8b
4 changed files with 7 additions and 0 deletions

View File

@@ -33,6 +33,10 @@ void D3D12Fence::Shutdown() {
m_fence.Reset();
}
void D3D12Fence::Signal() {
Signal(1);
}
void D3D12Fence::Signal(uint64_t value) {
m_fence->Signal(value);
}