mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Related-To: NEO-2285 Change-Id: I77699b5f540b6ac5b73cf1830712a5591326b766 Signed-off-by: Andrzej Swierczynski <andrzej.swierczynski@intel.com>
15 lines
288 B
C++
15 lines
288 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "unit_tests/mocks/mock_wddm.h"
|
|
|
|
namespace NEO {
|
|
Wddm *Wddm::createWddm(RootDeviceEnvironment &rootDeviceEnvironment) {
|
|
return new WddmMock(rootDeviceEnvironment);
|
|
}
|
|
} // namespace NEO
|