/* * 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