29 lines
498 B
C++
29 lines
498 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
|
|
|
#include <dxgi.h>
|
|
|
|
namespace NEO {
|
|
Wddm::CreateDXGIFactoryFcn getCreateDxgiFactory() {
|
|
return CreateDXGIFactory;
|
|
}
|
|
|
|
Wddm::GetSystemInfoFcn getGetSystemInfo() {
|
|
return GetSystemInfo;
|
|
}
|
|
|
|
Wddm::VirtualFreeFcn getVirtualFree() {
|
|
return VirtualFree;
|
|
}
|
|
|
|
Wddm::VirtualAllocFcn getVirtualAlloc() {
|
|
return VirtualAlloc;
|
|
}
|
|
} // namespace NEO
|