2015-05-24 06:32:32 +02:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-05-24 06:32:32 +02:00
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2013-03-01 19:30:37 +01:00
|
|
|
|
2014-02-15 01:12:13 -05:00
|
|
|
#include <array>
|
2019-03-09 23:31:37 +10:00
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2013-03-01 19:30:37 +01:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
class PerfQuery : public PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PerfQuery();
|
|
|
|
~PerfQuery();
|
|
|
|
|
2022-11-17 21:54:43 +01:00
|
|
|
void EnableQuery(PerfQueryGroup group) override;
|
|
|
|
void DisableQuery(PerfQueryGroup group) override;
|
2014-03-11 06:55:00 +01:00
|
|
|
void ResetQuery() override;
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override;
|
|
|
|
void FlushResults() override;
|
|
|
|
bool IsFlushed() const override;
|
2013-03-01 19:30:37 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct ActiveQuery
|
|
|
|
{
|
2019-03-09 23:31:37 +10:00
|
|
|
ComPtr<ID3D11Query> query;
|
2022-11-17 21:54:43 +01:00
|
|
|
PerfQueryGroup query_group{};
|
2013-03-01 19:30:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
void WeakFlush();
|
|
|
|
|
|
|
|
// Only use when non-empty
|
|
|
|
void FlushOne();
|
|
|
|
|
|
|
|
// when testing in SMS: 64 was too small, 128 was ok
|
|
|
|
static const int PERF_QUERY_BUFFER_SIZE = 512;
|
|
|
|
|
2014-02-15 01:12:13 -05:00
|
|
|
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
|
2013-03-01 19:30:37 +01:00
|
|
|
int m_query_read_pos;
|
|
|
|
};
|
|
|
|
|
2019-03-09 23:31:37 +10:00
|
|
|
} // namespace DX11
|