compute-runtime/shared/source/os_interface/windows/wddm/wddm_calls.cpp

29 lines
498 B
C++
Raw Normal View History

/*
* 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