2021-05-28 01:44:47 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
|
|
#include "shared/source/os_interface/windows/os_interface_win.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
bool RootDeviceEnvironment::initOsInterface(std::unique_ptr<HwDeviceId> &&hwDeviceId, uint32_t rootDeviceIndex) {
|
2021-12-14 02:47:36 +08:00
|
|
|
return initWddmOsInterface(std::move(hwDeviceId), this);
|
2021-05-28 01:44:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NEO
|