mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-24 15:36:33 +00:00
Reduce other unnecessary errors to warnings in NV counters code
This commit is contained in:
@@ -50,7 +50,7 @@ struct NVD3D11Counters::Impl
|
||||
{
|
||||
if(!NVCounterEnumerator::InitializeNvPerf())
|
||||
{
|
||||
RDCERR("NvPerf library failed to initialize");
|
||||
RDCWARN("NvPerf library failed to initialize");
|
||||
LibraryNotFound = true;
|
||||
|
||||
// NOTE: Return success here so that we can later show a message
|
||||
|
||||
@@ -53,7 +53,7 @@ struct NVD3D12Counters::Impl
|
||||
{
|
||||
if(!NVCounterEnumerator::InitializeNvPerf())
|
||||
{
|
||||
RDCERR("NvPerf library failed to initialize");
|
||||
RDCWARN("NvPerf library failed to initialize");
|
||||
LibraryNotFound = true;
|
||||
|
||||
// NOTE: Return success here so that we can later show a message
|
||||
|
||||
@@ -48,7 +48,7 @@ struct NVGLCounters::Impl
|
||||
{
|
||||
if(!NVCounterEnumerator::InitializeNvPerf())
|
||||
{
|
||||
RDCERR("NvPerf library failed to initialize");
|
||||
RDCWARN("NvPerf library failed to initialize");
|
||||
LibraryNotFound = true;
|
||||
|
||||
// NOTE: Return success here so that we can later show a message
|
||||
|
||||
Reference in New Issue
Block a user