mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
168 lines
5.6 KiB
C++
168 lines
5.6 KiB
C++
|
#include "dxvk_hud_stats.h"
|
||
|
|
||
|
namespace dxvk::hud {
|
||
|
|
||
|
HudStats::HudStats(HudElements elements)
|
||
|
: m_elements(filterElements(elements)) { }
|
||
|
|
||
|
|
||
|
HudStats::~HudStats() {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
void HudStats::update(const Rc<DxvkDevice>& device) {
|
||
|
if (m_elements.isClear())
|
||
|
return;
|
||
|
|
||
|
// For some counters, we'll display the absolute value,
|
||
|
// for others, the average counter increment per frame.
|
||
|
DxvkStatCounters nextCounters = device->getStatCounters();
|
||
|
m_diffCounters = nextCounters.diff(m_prevCounters);
|
||
|
m_prevCounters = nextCounters;
|
||
|
}
|
||
|
|
||
|
|
||
|
HudPos HudStats::renderText(
|
||
|
const Rc<DxvkContext>& context,
|
||
|
HudTextRenderer& renderer,
|
||
|
HudPos position) {
|
||
|
if (m_elements.test(HudElement::StatSubmissions))
|
||
|
position = this->printSubmissionStats(context, renderer, position);
|
||
|
|
||
|
if (m_elements.test(HudElement::StatDrawCalls))
|
||
|
position = this->printDrawCallStats(context, renderer, position);
|
||
|
|
||
|
if (m_elements.test(HudElement::StatPipelines))
|
||
|
position = this->printPipelineStats(context, renderer, position);
|
||
|
|
||
|
if (m_elements.test(HudElement::StatMemory))
|
||
|
position = this->printMemoryStats(context, renderer, position);
|
||
|
|
||
|
return position;
|
||
|
}
|
||
|
|
||
|
|
||
|
HudPos HudStats::printDrawCallStats(
|
||
|
const Rc<DxvkContext>& context,
|
||
|
HudTextRenderer& renderer,
|
||
|
HudPos position) {
|
||
|
const uint64_t frameCount = std::max(m_diffCounters.getCtr(DxvkStatCounter::QueuePresentCount), 1u);
|
||
|
|
||
|
const uint64_t gpCalls = m_diffCounters.getCtr(DxvkStatCounter::CmdDrawCalls) / frameCount;
|
||
|
const uint64_t cpCalls = m_diffCounters.getCtr(DxvkStatCounter::CmdDispatchCalls) / frameCount;
|
||
|
const uint64_t rpCalls = m_diffCounters.getCtr(DxvkStatCounter::CmdRenderPassCount) / frameCount;
|
||
|
|
||
|
const std::string strDrawCalls = str::format("Draw calls: ", gpCalls);
|
||
|
const std::string strDispatchCalls = str::format("Dispatch calls: ", cpCalls);
|
||
|
const std::string strRenderPasses = str::format("Render passes: ", rpCalls);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strDrawCalls);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y + 20.0f },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strDispatchCalls);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y + 40.0f },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strRenderPasses);
|
||
|
|
||
|
return { position.x, position.y + 64 };
|
||
|
}
|
||
|
|
||
|
|
||
|
HudPos HudStats::printSubmissionStats(
|
||
|
const Rc<DxvkContext>& context,
|
||
|
HudTextRenderer& renderer,
|
||
|
HudPos position) {
|
||
|
const uint64_t frameCount = std::max(m_diffCounters.getCtr(DxvkStatCounter::QueuePresentCount), 1u);
|
||
|
const uint64_t numSubmits = m_diffCounters.getCtr(DxvkStatCounter::QueueSubmitCount) / frameCount;
|
||
|
|
||
|
const std::string strSubmissions = str::format("Queue submissions: ", numSubmits);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strSubmissions);
|
||
|
|
||
|
return { position.x, position.y + 24.0f };
|
||
|
}
|
||
|
|
||
|
|
||
|
HudPos HudStats::printPipelineStats(
|
||
|
const Rc<DxvkContext>& context,
|
||
|
HudTextRenderer& renderer,
|
||
|
HudPos position) {
|
||
|
constexpr uint64_t kib = 1024;
|
||
|
constexpr uint64_t mib = 1024 * 1024;
|
||
|
|
||
|
const uint64_t gpCount = m_prevCounters.getCtr(DxvkStatCounter::PipeCountGraphics);
|
||
|
const uint64_t cpCount = m_prevCounters.getCtr(DxvkStatCounter::PipeCountCompute);
|
||
|
const uint64_t pcSize = m_prevCounters.getCtr(DxvkStatCounter::PipeCacheSize);
|
||
|
|
||
|
const std::string strGpCount = str::format("Graphics pipelines: ", gpCount);
|
||
|
const std::string strCpCount = str::format("Compute pipelines: ", cpCount);
|
||
|
|
||
|
const std::string strPcSize = str::format("Pipeline cache: ", pcSize >= mib
|
||
|
? str::format(pcSize / mib, ".", ((10 * pcSize) / mib) % 10, " MB")
|
||
|
: str::format(pcSize / kib, " kB"));
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strGpCount);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y + 20.0f },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strCpCount);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y + 40.0f },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strPcSize);
|
||
|
|
||
|
return { position.x, position.y + 64.0f };
|
||
|
}
|
||
|
|
||
|
|
||
|
HudPos HudStats::printMemoryStats(
|
||
|
const Rc<DxvkContext>& context,
|
||
|
HudTextRenderer& renderer,
|
||
|
HudPos position) {
|
||
|
constexpr uint64_t mib = 1024 * 1024;
|
||
|
|
||
|
const uint64_t memAllocated = m_prevCounters.getCtr(DxvkStatCounter::MemoryAllocated);
|
||
|
const uint64_t memUsed = m_prevCounters.getCtr(DxvkStatCounter::MemoryUsed);
|
||
|
|
||
|
const std::string strMemAllocated = str::format("Memory allocated: ", memAllocated / mib, " MB");
|
||
|
const std::string strMemUsed = str::format("Memory used: ", memUsed / mib, " MB");
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strMemAllocated);
|
||
|
|
||
|
renderer.drawText(context, 16.0f,
|
||
|
{ position.x, position.y + 20.0f },
|
||
|
{ 1.0f, 1.0f, 1.0f, 1.0f },
|
||
|
strMemUsed);
|
||
|
|
||
|
return { position.x, position.y + 44.0f };
|
||
|
}
|
||
|
|
||
|
|
||
|
HudElements HudStats::filterElements(HudElements elements) {
|
||
|
return elements & HudElements(
|
||
|
HudElement::StatDrawCalls,
|
||
|
HudElement::StatSubmissions,
|
||
|
HudElement::StatPipelines,
|
||
|
HudElement::StatMemory);
|
||
|
}
|
||
|
|
||
|
}
|