Make D3D12RootSignature implement IRootSignature interface

This commit is contained in:
2026-03-16 00:09:42 +08:00
parent 068fea77f4
commit 8c1d68da57
2 changed files with 8 additions and 1 deletions

View File

@@ -30,6 +30,8 @@ bool D3D12RootSignature::Initialize(ID3D12Device* device, const D3D12_ROOT_SIGNA
return false;
}
m_parameterCount = desc.NumParameters;
return true;
}