mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 01:35:20 +08:00
Change-Id: I05b5d20bac12935dc6625b94adc3a03c98c19b49 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
22 lines
441 B
C++
22 lines
441 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/windows/os_interface.h"
|
|
|
|
#include "shared/source/helpers/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
|