1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-13 19:29:14 +01:00

[dxbc] Rename struct_c0 -> c0_t etc.

This commit is contained in:
Philip Rebohle 2018-12-14 10:37:45 +01:00
parent 399e72bbd1
commit e5beab2872
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -763,7 +763,7 @@ namespace dxvk {
m_module.decorateBlock (structType);
m_module.memberDecorateOffset(structType, 0, 0);
m_module.setDebugName (structType, str::format("struct_", name).c_str());
m_module.setDebugName (structType, str::format(name, "_t").c_str());
m_module.setDebugMemberName (structType, 0, "m");
// Variable that we'll use to access the buffer
@ -1080,7 +1080,7 @@ namespace dxvk {
m_module.memberDecorateOffset(structType, 0, 0);
m_module.setDebugName(structType,
str::format("struct_", isUav ? "u" : "t", registerId).c_str());
str::format(isUav ? "u" : "t", registerId, "_t").c_str());
m_module.setDebugMemberName(structType, 0, "m");
if (!isUav)