mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
Related-To: NEO-4473 Change-Id: I6015d67215267b1dcde1e885cf3696af10ea5e7d Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
24 lines
368 B
C++
24 lines
368 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/os_interface/driver_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
class DriverInfoLinux : public DriverInfo {
|
|
public:
|
|
DriverInfoLinux(bool imageSupport);
|
|
bool getImageSupport() override;
|
|
|
|
protected:
|
|
bool imageSupport = true;
|
|
};
|
|
|
|
} // namespace NEO
|