mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
Related-To: NEO-4208 Change-Id: I19a969066b76770a194164bcdf39c7b1ac74c06d Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
15 lines
328 B
C++
15 lines
328 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "unit_tests/mocks/mock_wddm.h"
|
|
|
|
namespace NEO {
|
|
Wddm *Wddm::createWddm(std::unique_ptr<HwDeviceId> hwDeviceId, RootDeviceEnvironment &rootDeviceEnvironment) {
|
|
return new WddmMock(rootDeviceEnvironment);
|
|
}
|
|
} // namespace NEO
|