Add section type for embedded AMD RGP profiles

This commit is contained in:
baldurk
2018-01-11 15:33:43 +00:00
parent 21a16e051b
commit 4b7e7f5df1
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -803,6 +803,7 @@ std::string DoStringise(const SectionType &el)
STRINGISE_ENUM_CLASS_NAMED(Bookmarks, "renderdoc/ui/bookmarks");
STRINGISE_ENUM_CLASS_NAMED(Notes, "renderdoc/ui/notes");
STRINGISE_ENUM_CLASS_NAMED(ResourceRenames, "renderdoc/ui/resrenames");
STRINGISE_ENUM_CLASS_NAMED(AMDRGPProfile, "amd/rgp/profile");
}
END_ENUM_STRINGISE();
}
+7
View File
@@ -70,6 +70,12 @@ version of RenderDoc that addes a new section type. They should be considered eq
above any friendly names specified in the capture itself.
The name for this section will be "renderdoc/ui/resrenames".
.. data:: AMDRGPProfile
This section contains a .rgp profile from AMD's RGP tool, which can be extracted and loaded.
The name for this section will be "amd/rgp/profile".
)");
enum class SectionType : uint32_t
{
@@ -80,6 +86,7 @@ enum class SectionType : uint32_t
Bookmarks,
Notes,
ResourceRenames,
AMDRGPProfile,
Count,
};