mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Change-Id: I7b469dd42cdedfdde2a9abea8d02bac2046c91cf Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
22 lines
516 B
C++
22 lines
516 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
|
|
|
namespace NEO {
|
|
Wddm *Wddm::createWddm(std::unique_ptr<HwDeviceId> hwDeviceId, RootDeviceEnvironment &rootDeviceEnvironment) {
|
|
return new Wddm(std::move(hwDeviceId), rootDeviceEnvironment);
|
|
}
|
|
|
|
namespace ResLog {
|
|
fopenFuncPtr fopenPtr = &fopen;
|
|
vfprintfFuncPtr vfprintfPtr = &vfprintf;
|
|
fcloseFuncPtr fclosePtr = &fclose;
|
|
} // namespace ResLog
|
|
|
|
} // namespace NEO
|