19 lines
564 B
C++
19 lines
564 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/os_context.h"
|
|
#include "shared/source/os_interface/windows/os_context_win.h"
|
|
|
|
namespace NEO {
|
|
|
|
OsContext *OsContext::create(OSInterface *osInterface, uint32_t contextId, DeviceBitfield deviceBitfield,
|
|
EngineTypeUsage typeUsage, PreemptionMode preemptionMode, bool rootDevice) {
|
|
return OsContextWin::create(osInterface, contextId, deviceBitfield, typeUsage, preemptionMode, rootDevice);
|
|
}
|
|
|
|
} // namespace NEO
|