Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Commit

Permalink
fix: traceplayer shouldn't have default adapter or architecture prefe…
Browse files Browse the repository at this point in the history
…rence.
  • Loading branch information
allenhux-intel committed Nov 7, 2022
1 parent 1dcf1f7 commit a8833ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tracePlayer/tracePlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ class TracePlayer
{
std::wstring m_filename;
std::wstring m_mediaDir;
UINT32 m_stagingBufferSizeMB{ 32 };
UINT32 m_stagingBufferSizeMB{ 128 };

std::wstring m_adapterDescription{ L"intel" }; // e.g. "intel", will pick the GPU with this substring in the adapter description (not case sensitive)
std::wstring m_adapterDescription; // e.g. "intel", will pick the GPU with this substring in the adapter description (not case sensitive)
enum class PreferredArchitecture
{
NONE = 0,
DISCRETE,
INTEGRATED
};
PreferredArchitecture m_preferredArchitecture{ PreferredArchitecture::DISCRETE };
PreferredArchitecture m_preferredArchitecture{ PreferredArchitecture::NONE };

bool m_inspect{ false }; // inspect trace only, no playback
};
Expand Down

0 comments on commit a8833ed

Please sign in to comment.