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
|