mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Related-To: NEO-4480 Change-Id: I16da4434ec24753eabdb1bce9e38ed2e1e83ed6c Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
22 lines
447 B
C++
22 lines
447 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/tools/source/sysman/windows/os_sysman_imp.h"
|
|
|
|
namespace L0 {
|
|
|
|
ze_result_t WddmSysmanImp::init() {
|
|
return ZE_RESULT_SUCCESS;
|
|
}
|
|
|
|
OsSysman *OsSysman::create(SysmanImp *pParentSysmanImp) {
|
|
WddmSysmanImp *pWddmSysmanImp = new WddmSysmanImp(pParentSysmanImp);
|
|
return static_cast<OsSysman *>(pWddmSysmanImp);
|
|
}
|
|
|
|
} // namespace L0
|