mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 17:13:29 +08:00
Change-Id: I8f647c0ecf737492995d34ba6c0344325fdad48a Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
22 lines
455 B
C++
22 lines
455 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/os_interface.h"
|
|
|
|
#include "shared/source/memory_manager/memory_constants.h"
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool OSInterface::osEnableLocalMemory = true;
|
|
|
|
void OSInterface::setGmmInputArgs(void *args) {
|
|
this->get()->getWddm()->setGmmInputArg(args);
|
|
}
|
|
|
|
} // namespace NEO
|