2015-05-23 22:32:32 -06:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2014-02-14 23:12:13 -07:00
|
|
|
#include <array>
|
2016-06-24 05:14:10 -06:00
|
|
|
#include <d3d11.h>
|
2014-02-17 03:18:15 -07:00
|
|
|
|
|
|
|
#include "VideoCommon/PerfQueryBase.h"
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
namespace DX11
|
|
|
|
{
|
2013-03-01 11:30:37 -07:00
|
|
|
class PerfQuery : public PerfQueryBase
|
|
|
|
{
|
|
|
|
public:
|
2016-06-24 02:43:46 -06:00
|
|
|
PerfQuery();
|
|
|
|
~PerfQuery();
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
void EnableQuery(PerfQueryGroup type) override;
|
|
|
|
void DisableQuery(PerfQueryGroup type) override;
|
|
|
|
void ResetQuery() override;
|
|
|
|
u32 GetQueryResult(PerfQueryType type) override;
|
|
|
|
void FlushResults() override;
|
|
|
|
bool IsFlushed() const override;
|
2013-03-01 11:30:37 -07:00
|
|
|
|
|
|
|
private:
|
2016-06-24 02:43:46 -06:00
|
|
|
struct ActiveQuery
|
|
|
|
{
|
|
|
|
ID3D11Query* query;
|
|
|
|
PerfQueryGroup query_type;
|
|
|
|
};
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
void WeakFlush();
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// Only use when non-empty
|
|
|
|
void FlushOne();
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
// when testing in SMS: 64 was too small, 128 was ok
|
|
|
|
static const int PERF_QUERY_BUFFER_SIZE = 512;
|
2013-03-01 11:30:37 -07:00
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
std::array<ActiveQuery, PERF_QUERY_BUFFER_SIZE> m_query_buffer;
|
|
|
|
int m_query_read_pos;
|
2013-03-01 11:30:37 -07:00
|
|
|
};
|
|
|
|
|
2016-06-24 02:43:46 -06:00
|
|
|
} // namespace
|