2018-05-11 09:44:37 +02:00
|
|
|
/*
|
2023-01-02 08:41:11 +00:00
|
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
2018-05-11 09:44:37 +02:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2018-05-11 09:44:37 +02:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/memory_manager/host_ptr_defines.h"
|
2021-07-06 15:44:16 +02:00
|
|
|
#include "shared/test/common/mocks/mock_wddm.h"
|
2021-10-19 18:41:15 +00:00
|
|
|
#include "shared/test/common/os_interface/windows/ult_dxcore_factory.h"
|
|
|
|
|
#include "shared/test/common/os_interface/windows/ult_dxgi_factory.h"
|
2018-05-11 09:44:37 +02:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2021-05-11 11:18:31 +02:00
|
|
|
Wddm::CreateDXGIFactoryFcn getCreateDxgiFactory() {
|
|
|
|
|
return ULTCreateDXGIFactory;
|
2018-05-11 09:44:37 +02:00
|
|
|
}
|
|
|
|
|
|
2021-05-11 17:07:20 +02:00
|
|
|
Wddm::DXCoreCreateAdapterFactoryFcn getDXCoreCreateAdapterFactory() {
|
2023-01-02 08:41:11 +00:00
|
|
|
return ultDxCoreCreateAdapterFactory;
|
2021-05-11 17:07:20 +02:00
|
|
|
}
|
|
|
|
|
|
2018-05-11 09:44:37 +02:00
|
|
|
Wddm::GetSystemInfoFcn getGetSystemInfo() {
|
2023-01-02 08:41:11 +00:00
|
|
|
return ultGetSystemInfo;
|
2018-05-11 09:44:37 +02:00
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|