Add rdcstr debugInfoLoadingLog to ShaderDebugInfo

This commit is contained in:
Jake Turner
2026-02-05 06:48:36 +13:00
parent e68e9ed8dd
commit 5135ef6f75
2 changed files with 9 additions and 2 deletions
+6
View File
@@ -1976,6 +1976,12 @@ shader is not supported for debugging
:type: str
)");
rdcstr debugStatus;
DOCUMENT(R"(Contains a log of the debug infomation i.e. PDB loading process for the shader.
:type: str
)");
rdcstr debugInfoLoadingLog;
};
DECLARE_REFLECTION_STRUCT(ShaderDebugInfo);
+3 -2
View File
@@ -261,8 +261,9 @@ void DoSerialise(SerialiserType &ser, ShaderDebugInfo &el)
SERIALISE_MEMBER(debuggable);
SERIALISE_MEMBER(sourceDebugInformation);
SERIALISE_MEMBER(debugStatus);
SERIALISE_MEMBER(debugInfoLoadingLog);
SIZE_CHECK(136);
SIZE_CHECK(160);
}
template <typename SerialiserType>
@@ -299,7 +300,7 @@ void DoSerialise(SerialiserType &ser, ShaderReflection &el)
SERIALISE_MEMBER(rayPayload);
SERIALISE_MEMBER(rayAttributes);
SIZE_CHECK(632);
SIZE_CHECK(656);
}
template <typename SerialiserType>