2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-05-24 04:32:32 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2013-03-01 18:30:37 +00:00
|
|
|
|
2014-02-15 06:12:13 +00:00
|
|
|
#include <array>
|
2019-03-09 13:31:37 +00:00
|
|
|
#include "VideoBackends/D3D/D3DBase.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2013-03-01 18:30:37 +00:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
|
|
|
class PerfQuery : public PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PerfQuery();
|
|
|
|
~PerfQuery();
|
|
|
|
|
2022-11-17 20:54:43 +00:00
|
|
|
void EnableQuery(PerfQueryGroup group) override;
|
|
|
|
void DisableQuery(PerfQueryGroup group) override;
|
2014-03-11 05:55:00 +00:00
|
|
|
void ResetQuery() override;
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override;
|
|
|
|
void FlushResults() override;
|
|
|
|
bool IsFlushed() const override;
|
2013-03-01 18:30:37 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct ActiveQuery
|
|
|
|
{
|
2019-03-09 13:31:37 +00:00
|
|
|
ComPtr<ID3D11Query> query;
|
2022-11-17 20:54:43 +00:00
|
|
|
PerfQueryGroup query_group{};
|
2013-03-01 18:30:37 +00: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 06:12:13 +00:00
|
|
|
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
|
2013-03-01 18:30:37 +00:00
|
|
|
int m_query_read_pos;
|
|
|
|
};
|
|
|
|
|
2019-03-09 13:31:37 +00:00
|
|
|
} // namespace DX11
|