diff --git a/IntelPresentMon/Interprocess/source/metadata/EnumFrameType.h b/IntelPresentMon/Interprocess/source/metadata/EnumFrameType.h index ce82a1b5..83766999 100644 --- a/IntelPresentMon/Interprocess/source/metadata/EnumFrameType.h +++ b/IntelPresentMon/Interprocess/source/metadata/EnumFrameType.h @@ -7,5 +7,5 @@ X_(FRAME_TYPE, UNSPECIFIED, "Unspecified", "", "Frame rendered by unspecified technique") \ X_(FRAME_TYPE, APPLICATION, "Application", "", "Frame rendered by the target application") \ X_(FRAME_TYPE, REPEATED, "Application", "", "Frame rendered by the taget application") \ - X_(FRAME_TYPE, INTEL_XEFG, "Intel XEFG", "", "Frame generated by Intel XEFG") \ - X_(FRAME_TYPE, AMD_AFMF, "AMD_AFMF", "", "Frame generated by AMD Fluid Motion Frames") + X_(FRAME_TYPE, INTEL_XEFG, "Intel XeSS-FG", "", "Frame generated by Intel XeSS-FG") \ + X_(FRAME_TYPE, AMD_AFMF, "AMD AFMF", "", "Frame generated by AMD Fluid Motion Frames") diff --git a/PresentData/Debug.cpp b/PresentData/Debug.cpp index cf86215f..2e19400d 100644 --- a/PresentData/Debug.cpp +++ b/PresentData/Debug.cpp @@ -178,8 +178,8 @@ wchar_t const* PMPFrameTypeToString(Intel_PresentMon::FrameType type) case Intel_PresentMon::FrameType::Unspecified: return L"Unspecified"; case Intel_PresentMon::FrameType::Original: return L"Original"; case Intel_PresentMon::FrameType::Repeated: return L"Repeated"; - case Intel_PresentMon::FrameType::Intel_XEFG: return L"Intel_XEFG"; - case Intel_PresentMon::FrameType::AMD_AFMF: return L"AMD_AFMF"; + case Intel_PresentMon::FrameType::Intel_XEFG: return L"Intel XeSS-FG"; + case Intel_PresentMon::FrameType::AMD_AFMF: return L"AMD AFMF"; } assert(false); @@ -192,8 +192,8 @@ void PrintFrameType(FrameType type) case FrameType::Unspecified: wprintf(L"Unspecified"); break; case FrameType::Application: wprintf(L"Application"); break; case FrameType::Repeated: wprintf(L"Repeated"); break; - case FrameType::Intel_XEFG: wprintf(L"Intel_XEFG"); break; - case FrameType::AMD_AFMF: wprintf(L"AMD_AFMF"); break; + case FrameType::Intel_XEFG: wprintf(L"Intel XeSS-FG"); break; + case FrameType::AMD_AFMF: wprintf(L"AMD AFMF"); break; default: wprintf(L"Unknown (%u)", type); assert(false); break; } } diff --git a/PresentMon/CsvOutput.cpp b/PresentMon/CsvOutput.cpp index db526be1..eec5cee4 100644 --- a/PresentMon/CsvOutput.cpp +++ b/PresentMon/CsvOutput.cpp @@ -51,8 +51,8 @@ const char* FrameTypeToString(FrameType ft) case FrameType::Repeated: #endif case FrameType::Application: return "Application"; - case FrameType::Intel_XEFG: return "Intel_XEFG"; - case FrameType::AMD_AFMF: return "AMD_AFMF"; + case FrameType::Intel_XEFG: return "Intel XeSS-FG"; + case FrameType::AMD_AFMF: return "AMD AFMF"; } return "Unknown";