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

Method RunTick

IntelPresentMon/Core/source/kernel/OverlayContainer.cpp:68–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66 pOverlay->InitiateClose();
67 }
68 void OverlayContainer::RunTick()
69 {
70 HandleProcessSpawnEvents_();
71 try {
72 pOverlay->RunTick();
73 }
74 catch (const TargetLostException&) {
75 // if lost target is a child process, revert to root
76 if (curPid != rootPid) {
77 curPid = rootPid;
78 pOverlay = pOverlay->RetargetPidClone(ancestorMap[curPid]);
79 }
80 else throw;
81 }
82 }
83 void OverlayContainer::SetCaptureState(bool active)
84 {
85 pOverlay->SetCaptureState(active);

Callers

nothing calls this directly

Calls 1

RetargetPidCloneMethod · 0.80

Tested by

no test coverage detected