mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-12 17:33:00 +08:00
Change-Id: I13e5917a32a5cd894ee42a848407fe20bf1daa06 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
29 lines
492 B
C++
29 lines
492 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#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
|