mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 09:03:14 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
35 lines
917 B
C++
35 lines
917 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "runtime/utilities/debug_settings_reader.h"
|
|
|
|
#include "os_inc.h"
|
|
#include <Windows.h>
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
class RegistryReader : public SettingsReader {
|
|
public:
|
|
int32_t getSetting(const char *settingName, int32_t defaultValue) override;
|
|
bool getSetting(const char *settingName, bool defaultValue) override;
|
|
std::string getSetting(const char *settingName, const std::string &value) override;
|
|
RegistryReader(bool userScope);
|
|
RegistryReader(const std::string ®Key);
|
|
const char *appSpecificLocation(const std::string &name) override;
|
|
|
|
protected:
|
|
HKEY igdrclHkeyType = HKEY_LOCAL_MACHINE;
|
|
std::string registryReadRootKey = "Software\\Intel\\IGFX\\OCL";
|
|
void setUpProcessName();
|
|
std::string processName;
|
|
};
|
|
} // namespace NEO
|