mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-09 06:23:01 +08:00
feature: Add debug/release variable prefixes
Resolves: NEO-6357 Signed-off-by: John Falkowski <john.falkowski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
6fca8ee195
commit
ec95d9314a
@@ -15,13 +15,19 @@
|
||||
|
||||
namespace NEO {
|
||||
|
||||
enum class DebugVarPrefix : uint8_t;
|
||||
|
||||
class SettingsFileReader : public SettingsReader {
|
||||
public:
|
||||
SettingsFileReader(const char *filePath);
|
||||
~SettingsFileReader() override;
|
||||
int32_t getSetting(const char *settingName, int32_t defaultValue, DebugVarPrefix &type) override;
|
||||
int32_t getSetting(const char *settingName, int32_t defaultValue) override;
|
||||
int64_t getSetting(const char *settingName, int64_t defaultValue, DebugVarPrefix &type) override;
|
||||
int64_t getSetting(const char *settingName, int64_t defaultValue) override;
|
||||
bool getSetting(const char *settingName, bool defaultValue, DebugVarPrefix &type) override;
|
||||
bool getSetting(const char *settingName, bool defaultValue) override;
|
||||
std::string getSetting(const char *settingName, const std::string &value, DebugVarPrefix &type) override;
|
||||
std::string getSetting(const char *settingName, const std::string &value) override;
|
||||
const char *appSpecificLocation(const std::string &name) override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user