mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
Change-Id: Idbc253f072a9400962b7500e75ba6fd86e5e6b59 Signed-off-by: Katarzyna Cencelewska <katarzyna.cencelewska@intel.com>
28 lines
548 B
C++
28 lines
548 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
class OSInterface;
|
|
|
|
class DriverInfo {
|
|
public:
|
|
static DriverInfo *create(OSInterface *osInterface);
|
|
|
|
virtual ~DriverInfo() = default;
|
|
|
|
virtual std::string getDeviceName(std::string defaultName) { return defaultName; };
|
|
virtual std::string getVersion(std::string defaultVersion) { return defaultVersion; };
|
|
virtual bool getMediaSharingSupport() { return true; };
|
|
};
|
|
|
|
} // namespace NEO
|