compute-runtime/shared/source/os_interface/linux/driver_info_linux.h

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