mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-25 16:06:31 +00:00
Integrate RGA 2.3.1 and add support for Navi 14
This commit is contained in:
@@ -57,6 +57,7 @@ const GCNISA::asic GCNISA::asicInfo[] = {
|
||||
{"GCN (Vega 20)", "906", FAMILY_AI, AI_VEGA20_P_A0, "gfx906"},
|
||||
// Navi
|
||||
{"RDNA (Navi 10)", "1010", FAMILY_NV, NV_NAVI10_P_A0, "gfx1010"},
|
||||
{"RDNA (Navi 14)", "1012", FAMILY_NV, NV_NAVI14_M_A0, "gfx1012"},
|
||||
};
|
||||
|
||||
RDCCOMPILE_ASSERT(ARRAY_COUNT(GCNISA::asicInfo) == GCNISA::asicCount, "Mismatched array count");
|
||||
|
||||
@@ -35,7 +35,7 @@ struct asic
|
||||
const char *targetName;
|
||||
};
|
||||
|
||||
const int asicCount = 25;
|
||||
const int asicCount = 26;
|
||||
extern const asic asicInfo[];
|
||||
|
||||
}; // namespace GCNISA
|
||||
|
||||
@@ -108,7 +108,8 @@ enum {
|
||||
};
|
||||
|
||||
enum {
|
||||
NV_NAVI10_P_A0 = 1
|
||||
NV_NAVI10_P_A0 = 1,
|
||||
NV_NAVI14_M_A0 = 20
|
||||
};
|
||||
|
||||
enum {
|
||||
|
||||
Reference in New Issue
Block a user