mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 12:11:31 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
30 lines
535 B
C++
30 lines
535 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/gmm_helper/gmm_helper.h"
|
|
#include "runtime/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
|