Implement loading/saving in the performance counter selection.

This commit is contained in:
Matthäus G. Chajdas
2017-08-21 14:11:26 +02:00
committed by baldurk
parent cb84ff695e
commit 4d25394c0b
3 changed files with 117 additions and 6 deletions
@@ -79,7 +79,7 @@ PerformanceCounterViewer::PerformanceCounterViewer(ICaptureContext &ctx, QWidget
PerformanceCounterSelection pcs(m_Ctx, this);
if(RDDialog::show(&pcs) == QDialog::Accepted)
{
const QList<uint32_t> selectedCounters = pcs.GetSelectedCounters();
const QList<GPUCounter> selectedCounters = pcs.GetSelectedCounters();
bool done = false;
m_Ctx.Replay().AsyncInvoke([=, &done](IReplayController *controller) -> void {