Refactor DX12 Root Signature creation to support offline construction

Fix running D3D12 on integrated AMD GPU
This commit is contained in:
Wojtek Figat
2025-11-18 12:08:54 +01:00
parent 7e6b040258
commit 5f0e1253cc
5 changed files with 354 additions and 170 deletions

View File

@@ -215,6 +215,11 @@ public:
return String(_data.Get(), _data.Count());
}
StringAnsi ToStringAnsi() const
{
return StringAnsi(_data.Get(), _data.Count());
}
StringView ToStringView() const;
};