MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / PrintFrameType

Function PrintFrameType

PresentData/Debug.cpp:190–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

188 return L"Unknown";
189}
190void PrintFrameType(FrameType type)
191{
192 switch (type) {
193 case FrameType::NotSet: wprintf(L"NotSet"); break;
194 case FrameType::Unspecified: wprintf(L"Unspecified"); break;
195 case FrameType::Application: wprintf(L"Application"); break;
196 case FrameType::Repeated: wprintf(L"Repeated"); break;
197 case FrameType::Intel_XEFG: wprintf(L"Intel XeSS-FG"); break;
198 case FrameType::AMD_AFMF: wprintf(L"AMD AFMF"); break;
199 default: wprintf(L"Unknown (%u)", type); assert(false); break;
200 }
201}
202
203void PrintInputType(Intel_PresentMon::InputType type)
204{

Callers 1

FlushModifiedPresentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected