2021-05-28 01:44:47 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
2021-12-14 02:47:36 +08:00
|
|
|
class HwDeviceId;
|
|
|
|
struct RootDeviceEnvironment;
|
|
|
|
|
2021-05-28 01:44:47 +08:00
|
|
|
bool initDrmOsInterface(std::unique_ptr<HwDeviceId> &&hwDeviceId, uint32_t rootDeviceIndex,
|
2021-12-14 02:47:36 +08:00
|
|
|
RootDeviceEnvironment *rootDeviceEnv);
|
2021-05-28 01:44:47 +08:00
|
|
|
|
|
|
|
} // namespace NEO
|