mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
Collect Nsight Perf SDK counters in OpenGL
This adds the NVGLCounters class, which implements OpenGL counter collection on NVIDIA hardware via the NVIDIA Nsight Perf SDK.
This commit is contained in:
committed by
Baldur Karlsson
parent
07ebb25a23
commit
9bebaaed8b
@@ -27,6 +27,7 @@
|
||||
#include "driver/ihv/amd/amd_counters.h"
|
||||
#include "driver/ihv/arm/arm_counters.h"
|
||||
#include "driver/ihv/intel/intel_gl_counters.h"
|
||||
#include "driver/ihv/nv/nv_gl_counters.h"
|
||||
#include "gl_driver.h"
|
||||
#include "gl_replay.h"
|
||||
#include "gl_resources.h"
|
||||
@@ -71,6 +72,13 @@ rdcarray<GPUCounter> GLReplay::EnumerateCounters()
|
||||
ret.append(m_pARMCounters->GetPublicCounterIds());
|
||||
}
|
||||
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
if(m_pNVCounters)
|
||||
{
|
||||
ret.append(m_pNVCounters->EnumerateCounters());
|
||||
}
|
||||
#endif
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
@@ -107,6 +115,14 @@ CounterDescription GLReplay::DescribeCounter(GPUCounter counterID)
|
||||
return m_pARMCounters->GetCounterDescription(counterID);
|
||||
}
|
||||
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
/////NVIDIA/////
|
||||
if(m_pNVCounters && m_pNVCounters->HasCounter(counterID))
|
||||
{
|
||||
return m_pNVCounters->DescribeCounter(counterID);
|
||||
}
|
||||
#endif
|
||||
|
||||
// FFBA5548-FBF8-405D-BA18-F0329DA370A0
|
||||
desc.uuid.words[0] = 0xFFBA5548;
|
||||
desc.uuid.words[1] = 0xFBF8405D;
|
||||
@@ -606,6 +622,21 @@ rdcarray<CounterResult> GLReplay::FetchCounters(const rdcarray<GPUCounter> &allC
|
||||
ret = FetchCountersARM(armCounters);
|
||||
}
|
||||
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
if(m_pNVCounters)
|
||||
{
|
||||
// Filter out the NVIDIA counters
|
||||
rdcarray<GPUCounter> nvCounters;
|
||||
std::copy_if(allCounters.begin(), allCounters.end(), std::back_inserter(nvCounters),
|
||||
[=](const GPUCounter &c) { return m_pNVCounters->HasCounter(c); });
|
||||
if(!nvCounters.empty())
|
||||
{
|
||||
rdcarray<CounterResult> results = m_pNVCounters->FetchCounters(nvCounters, m_pDriver);
|
||||
ret.append(results);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
m_pDriver->SetFetchCounters(false);
|
||||
|
||||
if(counters.empty())
|
||||
|
||||
@@ -24,11 +24,13 @@
|
||||
******************************************************************************/
|
||||
|
||||
#include "gl_replay.h"
|
||||
|
||||
#include "core/settings.h"
|
||||
#include "data/glsl_shaders.h"
|
||||
#include "driver/ihv/amd/amd_counters.h"
|
||||
#include "driver/ihv/arm/arm_counters.h"
|
||||
#include "driver/ihv/intel/intel_gl_counters.h"
|
||||
#include "driver/ihv/nv/nv_gl_counters.h"
|
||||
#include "maths/matrix.h"
|
||||
#include "replay/dummy_driver.h"
|
||||
#include "serialise/rdcfile.h"
|
||||
@@ -71,6 +73,9 @@ void GLReplay::Shutdown()
|
||||
SAFE_DELETE(m_pAMDCounters);
|
||||
SAFE_DELETE(m_pIntelCounters);
|
||||
SAFE_DELETE(m_pARMCounters);
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
SAFE_DELETE(m_pNVCounters);
|
||||
#endif
|
||||
|
||||
DeleteDebugData();
|
||||
|
||||
@@ -260,6 +265,9 @@ void GLReplay::SetReplayData(GLWindowingData data)
|
||||
AMDCounters *countersAMD = NULL;
|
||||
IntelGlCounters *countersIntel = NULL;
|
||||
ARMCounters *countersARM = NULL;
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
NVGLCounters *countersNV = NULL;
|
||||
#endif
|
||||
|
||||
bool isMesa = false;
|
||||
|
||||
@@ -318,6 +326,13 @@ void GLReplay::SetReplayData(GLWindowingData data)
|
||||
RDCLOG("ARM Mali GPU detected - trying to initialise ARM counters");
|
||||
countersARM = new ARMCounters();
|
||||
}
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
else if(m_DriverInfo.vendor == GPUVendor::nVidia)
|
||||
{
|
||||
RDCLOG("NVIDIA GPU detected - trying to initialise NVIDIA counters");
|
||||
countersNV = new NVGLCounters();
|
||||
}
|
||||
#endif
|
||||
else
|
||||
{
|
||||
RDCLOG("%s GPU detected - no counters available", ToStr(m_DriverInfo.vendor).c_str());
|
||||
@@ -353,6 +368,18 @@ void GLReplay::SetReplayData(GLWindowingData data)
|
||||
delete countersARM;
|
||||
m_pARMCounters = NULL;
|
||||
}
|
||||
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
if(countersNV && countersNV->Init())
|
||||
{
|
||||
m_pNVCounters = countersNV;
|
||||
}
|
||||
else
|
||||
{
|
||||
delete countersNV;
|
||||
m_pNVCounters = NULL;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -35,6 +35,7 @@ class ARMCounters;
|
||||
class IntelGlCounters;
|
||||
class WrappedOpenGL;
|
||||
struct GLCounterContext;
|
||||
class NVGLCounters;
|
||||
|
||||
struct GLPostVSData
|
||||
{
|
||||
@@ -507,4 +508,9 @@ private:
|
||||
const ActionDescription &actionnode);
|
||||
|
||||
rdcarray<CounterResult> FetchCountersARM(const rdcarray<GPUCounter> &counters);
|
||||
|
||||
#if DISABLED(RDOC_ANDROID) && DISABLED(RDOC_ANDROID)
|
||||
// NVIDIA counter instance
|
||||
NVGLCounters *m_pNVCounters = NULL;
|
||||
#endif
|
||||
};
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
set(sources
|
||||
nv_counter_enumerator.cpp
|
||||
nv_counter_enumerator.h
|
||||
nv_gl_counters.cpp
|
||||
nv_gl_counters.h
|
||||
nv_vk_counters.cpp
|
||||
nv_vk_counters.h)
|
||||
|
||||
|
||||
@@ -102,6 +102,7 @@
|
||||
<ClCompile Include="nv_counter_enumerator.cpp" />
|
||||
<ClCompile Include="nv_d3d11_counters.cpp" />
|
||||
<ClCompile Include="nv_d3d12_counters.cpp" />
|
||||
<ClCompile Include="nv_gl_counters.cpp" />
|
||||
<ClCompile Include="nv_vk_counters.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
@@ -110,6 +111,7 @@
|
||||
<ClInclude Include="nv_counter_enumerator.h" />
|
||||
<ClInclude Include="nv_d3d11_counters.h" />
|
||||
<ClInclude Include="nv_d3d12_counters.h" />
|
||||
<ClInclude Include="nv_gl_counters.h" />
|
||||
<ClInclude Include="nv_vk_counters.h" />
|
||||
<ClInclude Include="official\nvapi\nvapi.h" />
|
||||
<ClInclude Include="official\nvapi\nvapi_interface.h" />
|
||||
|
||||
@@ -0,0 +1,326 @@
|
||||
/******************************************************************************
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2022 Baldur Karlsson
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
******************************************************************************/
|
||||
|
||||
#include "nv_gl_counters.h"
|
||||
|
||||
#include "nv_counter_enumerator.h"
|
||||
|
||||
#include "driver/gl/gl_driver.h"
|
||||
|
||||
#include "NvPerfOpenGL.h"
|
||||
#include "NvPerfRangeProfilerOpenGL.h"
|
||||
#include "NvPerfScopeExitGuard.h"
|
||||
|
||||
struct NVGLCounters::Impl
|
||||
{
|
||||
NVCounterEnumerator *CounterEnumerator;
|
||||
bool LibraryNotFound = false;
|
||||
|
||||
Impl() : CounterEnumerator(NULL) {}
|
||||
~Impl()
|
||||
{
|
||||
delete CounterEnumerator;
|
||||
CounterEnumerator = NULL;
|
||||
}
|
||||
|
||||
bool TryInitializePerfSDK()
|
||||
{
|
||||
if(!NVCounterEnumerator::InitializeNvPerf())
|
||||
{
|
||||
RDCERR("NvPerf library failed to initialize");
|
||||
LibraryNotFound = true;
|
||||
|
||||
// NOTE: Return success here so that we can later show a message
|
||||
// directing the user to download the Nsight Perf SDK library.
|
||||
return true;
|
||||
}
|
||||
|
||||
if(!nv::perf::OpenGLLoadDriver())
|
||||
{
|
||||
RDCERR("NvPerf failed to load OpenGL driver");
|
||||
return false;
|
||||
}
|
||||
|
||||
if(!nv::perf::profiler::OpenGLIsGpuSupported())
|
||||
{
|
||||
RDCERR("NvPerf does not support profiling on this GPU");
|
||||
return false;
|
||||
}
|
||||
|
||||
nv::perf::DeviceIdentifiers deviceIdentifiers = nv::perf::OpenGLGetDeviceIdentifiers();
|
||||
if(!deviceIdentifiers.pChipName)
|
||||
{
|
||||
RDCERR("NvPerf could not determine chip name");
|
||||
return false;
|
||||
}
|
||||
|
||||
const size_t scratchBufferSize =
|
||||
nv::perf::OpenGLCalculateMetricsEvaluatorScratchBufferSize(deviceIdentifiers.pChipName);
|
||||
if(!scratchBufferSize)
|
||||
{
|
||||
RDCERR("NvPerf could not determine scratch buffer size for metrics evaluation");
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<uint8_t> scratchBuffer;
|
||||
scratchBuffer.resize(scratchBufferSize);
|
||||
NVPW_MetricsEvaluator *pMetricsEvaluator = nv::perf::OpenGLCreateMetricsEvaluator(
|
||||
scratchBuffer.data(), scratchBuffer.size(), deviceIdentifiers.pChipName);
|
||||
if(!pMetricsEvaluator)
|
||||
{
|
||||
RDCERR("NvPerf could not initialize metrics evaluator");
|
||||
return false;
|
||||
}
|
||||
|
||||
nv::perf::MetricsEvaluator metricsEvaluator(pMetricsEvaluator, std::move(scratchBuffer));
|
||||
|
||||
CounterEnumerator = new NVCounterEnumerator;
|
||||
if(!CounterEnumerator->Init(std::move(metricsEvaluator)))
|
||||
{
|
||||
RDCERR("NvPerf could not initialize metrics evaluator");
|
||||
delete CounterEnumerator;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool CanProfileEvent(const ActionDescription &actionnode)
|
||||
{
|
||||
if(!actionnode.children.empty())
|
||||
return false; // Only profile events for leaf nodes
|
||||
|
||||
if(actionnode.events.empty())
|
||||
return false; // Skip nodes with no events
|
||||
|
||||
if(!(actionnode.flags & (ActionFlags::Clear | ActionFlags::Drawcall | ActionFlags::Dispatch |
|
||||
ActionFlags::Present | ActionFlags::Copy | ActionFlags::Resolve)))
|
||||
return false; // Filter out events we cannot profile
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void RecurseDiscoverEvents(uint32_t &numEvents, const ActionDescription &actionnode)
|
||||
{
|
||||
for(size_t i = 0; i < actionnode.children.size(); i++)
|
||||
{
|
||||
RecurseDiscoverEvents(numEvents, actionnode.children[i]);
|
||||
}
|
||||
|
||||
if(!Impl::CanProfileEvent(actionnode))
|
||||
return;
|
||||
|
||||
numEvents++;
|
||||
}
|
||||
|
||||
static void RecurseProfileEvents(WrappedOpenGL *driver,
|
||||
nv::perf::profiler::RangeProfilerOpenGL &rangeProfiler,
|
||||
uint32_t &eventStartID, const ActionDescription &actionnode)
|
||||
{
|
||||
for(size_t i = 0; i < actionnode.children.size(); i++)
|
||||
{
|
||||
RecurseProfileEvents(driver, rangeProfiler, eventStartID, actionnode.children[i]);
|
||||
}
|
||||
|
||||
if(!Impl::CanProfileEvent(actionnode))
|
||||
return;
|
||||
|
||||
driver->ReplayLog(eventStartID, actionnode.eventId, eReplay_WithoutDraw);
|
||||
|
||||
rdcstr eidName = StringFormat::Fmt("%d", actionnode.eventId);
|
||||
rangeProfiler.PushRange(eidName.c_str());
|
||||
|
||||
driver->ReplayLog(eventStartID, actionnode.eventId, eReplay_OnlyDraw);
|
||||
|
||||
rangeProfiler.PopRange();
|
||||
|
||||
eventStartID = actionnode.eventId + 1;
|
||||
}
|
||||
};
|
||||
|
||||
NVGLCounters::NVGLCounters() : m_Impl(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
NVGLCounters::~NVGLCounters()
|
||||
{
|
||||
delete m_Impl;
|
||||
m_Impl = NULL;
|
||||
}
|
||||
|
||||
bool NVGLCounters::Init()
|
||||
{
|
||||
m_Impl = new Impl;
|
||||
if(!m_Impl)
|
||||
return false;
|
||||
|
||||
const bool initSuccess = m_Impl->TryInitializePerfSDK();
|
||||
if(!initSuccess)
|
||||
{
|
||||
delete m_Impl;
|
||||
m_Impl = NULL;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
rdcarray<GPUCounter> NVGLCounters::EnumerateCounters() const
|
||||
{
|
||||
if(m_Impl->LibraryNotFound)
|
||||
{
|
||||
return {GPUCounter::FirstNvidia};
|
||||
}
|
||||
return m_Impl->CounterEnumerator->GetPublicCounterIds();
|
||||
}
|
||||
|
||||
bool NVGLCounters::HasCounter(GPUCounter counterID) const
|
||||
{
|
||||
if(m_Impl->LibraryNotFound)
|
||||
{
|
||||
return counterID == GPUCounter::FirstNvidia;
|
||||
}
|
||||
return m_Impl->CounterEnumerator->HasCounter(counterID);
|
||||
}
|
||||
|
||||
CounterDescription NVGLCounters::DescribeCounter(GPUCounter counterID) const
|
||||
{
|
||||
if(m_Impl->LibraryNotFound)
|
||||
{
|
||||
RDCASSERT(counterID == GPUCounter::FirstNvidia);
|
||||
// Dummy counter shows message directing user to download the Nsight Perf SDK library
|
||||
return NVCounterEnumerator::LibraryNotFoundMessage();
|
||||
}
|
||||
return m_Impl->CounterEnumerator->GetCounterDescription(counterID);
|
||||
}
|
||||
|
||||
rdcarray<CounterResult> NVGLCounters::FetchCounters(const rdcarray<GPUCounter> &counters,
|
||||
WrappedOpenGL *driver)
|
||||
{
|
||||
if(m_Impl->LibraryNotFound)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
uint32_t maxNumRanges;
|
||||
{
|
||||
uint32_t numEvents = 0u;
|
||||
// replay the events to determine how many profile-able events there are
|
||||
Impl::RecurseDiscoverEvents(numEvents, driver->GetRootAction());
|
||||
maxNumRanges = numEvents;
|
||||
}
|
||||
|
||||
nv::perf::profiler::SessionOptions sessionOptions = {};
|
||||
sessionOptions.maxNumRanges = maxNumRanges;
|
||||
sessionOptions.avgRangeNameLength = 16;
|
||||
sessionOptions.numTraceBuffers = 2;
|
||||
|
||||
nv::perf::profiler::RangeProfilerOpenGL rangeProfiler;
|
||||
|
||||
rdcarray<CounterResult> results;
|
||||
|
||||
if(!rangeProfiler.BeginSession(sessionOptions))
|
||||
{
|
||||
RDCERR("NvPerf failed to start profiling session");
|
||||
return {}; // Failure
|
||||
}
|
||||
auto sessionGuard = nv::perf::ScopeExitGuard([&rangeProfiler]() { rangeProfiler.EndSession(); });
|
||||
|
||||
// Create counter configuration, and set it.
|
||||
{
|
||||
nv::perf::DeviceIdentifiers deviceIdentifiers = nv::perf::OpenGLGetDeviceIdentifiers();
|
||||
NVPA_RawMetricsConfig *pRawMetricsConfig =
|
||||
nv::perf::profiler::OpenGLCreateRawMetricsConfig(deviceIdentifiers.pChipName);
|
||||
m_Impl->CounterEnumerator->CreateConfig(deviceIdentifiers.pChipName, pRawMetricsConfig, counters);
|
||||
}
|
||||
|
||||
nv::perf::profiler::SetConfigParams setConfigParams;
|
||||
setConfigParams.numNestingLevels = 1;
|
||||
setConfigParams.numStatisticalSamples = 1;
|
||||
m_Impl->CounterEnumerator->GetConfig(setConfigParams.pConfigImage, setConfigParams.configImageSize,
|
||||
setConfigParams.pCounterDataPrefix,
|
||||
setConfigParams.counterDataPrefixSize);
|
||||
|
||||
size_t maxNumReplayPasses =
|
||||
m_Impl->CounterEnumerator->GetMaxNumReplayPasses(setConfigParams.numNestingLevels);
|
||||
RDCASSERT(maxNumReplayPasses > 0u);
|
||||
|
||||
if(!rangeProfiler.EnqueueCounterCollection(setConfigParams))
|
||||
{
|
||||
RDCERR("NvPerf failed to schedule counter collection");
|
||||
return {}; // Failure
|
||||
}
|
||||
|
||||
std::vector<uint8_t> counterDataImage;
|
||||
for(size_t replayPass = 0;; ++replayPass)
|
||||
{
|
||||
if(!rangeProfiler.BeginPass())
|
||||
{
|
||||
RDCERR("NvPerf failed to start counter collection pass");
|
||||
break; // Failure
|
||||
}
|
||||
|
||||
uint32_t eventStartID = 0u;
|
||||
Impl::RecurseProfileEvents(driver, rangeProfiler, eventStartID, driver->GetRootAction());
|
||||
|
||||
if(!rangeProfiler.EndPass())
|
||||
{
|
||||
RDCERR("NvPerf failed to end counter collection pass!");
|
||||
break; // Failure
|
||||
}
|
||||
|
||||
nv::perf::profiler::DecodeResult decodeResult;
|
||||
if(!rangeProfiler.DecodeCounters(decodeResult))
|
||||
{
|
||||
RDCERR("NvPerf failed to decode counters in collection pass");
|
||||
break; // Failure
|
||||
}
|
||||
|
||||
if(decodeResult.allPassesDecoded)
|
||||
{
|
||||
counterDataImage = std::move(decodeResult.counterDataImage);
|
||||
break; // Success!
|
||||
}
|
||||
|
||||
if(replayPass >= maxNumReplayPasses - 1)
|
||||
{
|
||||
RDCERR("NvPerf exceeded the maximum expected number of replay passes");
|
||||
break; // Failure
|
||||
}
|
||||
}
|
||||
|
||||
if(counterDataImage.empty())
|
||||
{
|
||||
RDCERR("No data found in NvPerf counter data image");
|
||||
return {}; // Failure
|
||||
}
|
||||
|
||||
if(!m_Impl->CounterEnumerator->EvaluateMetrics(counterDataImage.data(), counterDataImage.size(),
|
||||
results))
|
||||
{
|
||||
RDCERR("NvPerf failed to evaluate metrics from counter data");
|
||||
return {};
|
||||
}
|
||||
|
||||
return results;
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
/******************************************************************************
|
||||
* The MIT License (MIT)
|
||||
*
|
||||
* Copyright (c) 2022 Baldur Karlsson
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
* THE SOFTWARE.
|
||||
******************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "api/replay/data_types.h"
|
||||
#include "api/replay/rdcarray.h"
|
||||
#include "api/replay/replay_enums.h"
|
||||
|
||||
class WrappedOpenGL;
|
||||
|
||||
class NVGLCounters final
|
||||
{
|
||||
public:
|
||||
NVGLCounters();
|
||||
~NVGLCounters();
|
||||
|
||||
bool Init();
|
||||
|
||||
rdcarray<GPUCounter> EnumerateCounters() const;
|
||||
bool HasCounter(GPUCounter counterID) const;
|
||||
CounterDescription DescribeCounter(GPUCounter counterID) const;
|
||||
rdcarray<CounterResult> FetchCounters(const rdcarray<GPUCounter> &counters, WrappedOpenGL *driver);
|
||||
|
||||
private:
|
||||
struct Impl;
|
||||
Impl *m_Impl;
|
||||
};
|
||||
+3
-3
@@ -20,7 +20,7 @@
|
||||
#include "NvPerfDeviceProperties.h"
|
||||
#include "nvperf_opengl_host.h"
|
||||
#include "nvperf_opengl_target.h"
|
||||
#include "GL/gl.h"
|
||||
// #include "GL/gl.h"
|
||||
#include <string.h>
|
||||
namespace nv { namespace perf {
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace nv { namespace perf {
|
||||
//
|
||||
inline std::string OpenGLGetDeviceName()
|
||||
{
|
||||
const GLubyte* pRenderer = glGetString(GL_RENDERER);
|
||||
const GLubyte* pRenderer = glGetString(eGL_RENDERER);
|
||||
if (!pRenderer)
|
||||
{
|
||||
return "";
|
||||
@@ -39,7 +39,7 @@ namespace nv { namespace perf {
|
||||
|
||||
inline bool OpenGLIsNvidiaDevice()
|
||||
{
|
||||
const GLubyte* pVendor = glGetString(GL_VENDOR);
|
||||
const GLubyte* pVendor = glGetString(eGL_VENDOR);
|
||||
if (!pVendor)
|
||||
{
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user