2018-05-11 15:44:37 +08:00
|
|
|
/*
|
2020-01-31 21:35:46 +08:00
|
|
|
* Copyright (C) 2018-2020 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 01:46:50 +08:00
|
|
|
#include "os_interface/windows/wddm/wddm.h"
|
2019-02-27 18:39:32 +08:00
|
|
|
|
2018-05-11 15:44:37 +08:00
|
|
|
#include <dxgi.h>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-05-11 15:44:37 +08:00
|
|
|
Wddm::CreateDXGIFactoryFcn getCreateDxgiFactory() {
|
|
|
|
return CreateDXGIFactory;
|
|
|
|
}
|
|
|
|
|
|
|
|
Wddm::GetSystemInfoFcn getGetSystemInfo() {
|
|
|
|
return GetSystemInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
Wddm::VirtualFreeFcn getVirtualFree() {
|
|
|
|
return VirtualFree;
|
|
|
|
}
|
|
|
|
|
|
|
|
Wddm::VirtualAllocFcn getVirtualAlloc() {
|
|
|
|
return VirtualAlloc;
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|