2018-05-11 15:44:37 +08:00
|
|
|
/*
|
2021-05-17 02:51:16 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2018-05-11 15:44:37 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-05-11 15:44:37 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-24 05:44:01 +08:00
|
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2021-05-11 23:07:20 +08:00
|
|
|
#include <dxcore.h>
|
2018-05-11 15:44:37 +08:00
|
|
|
#include <dxgi.h>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2021-05-11 17:18:31 +08:00
|
|
|
Wddm::CreateDXGIFactoryFcn getCreateDxgiFactory() {
|
2021-05-21 01:46:48 +08:00
|
|
|
return CreateDXGIFactory1;
|
2021-05-11 23:07:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Wddm::DXCoreCreateAdapterFactoryFcn getDXCoreCreateAdapterFactory() {
|
2021-05-18 23:19:50 +08:00
|
|
|
return nullptr;
|
2018-05-11 15:44:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Wddm::GetSystemInfoFcn getGetSystemInfo() {
|
|
|
|
return GetSystemInfo;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|