2018-10-30 11:31:08 +01:00
|
|
|
/*
|
2020-01-31 14:35:46 +01:00
|
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
2018-10-30 11:31:08 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/windows/os_interface.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2020-04-02 11:28:38 +02:00
|
|
|
#include "shared/source/helpers/constants.h"
|
2020-03-16 16:58:04 +01:00
|
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-10-30 11:31:08 +01:00
|
|
|
|
2019-11-28 14:23:32 +01:00
|
|
|
bool OSInterface::osEnableLocalMemory = true;
|
2018-10-30 11:31:08 +01:00
|
|
|
|
2020-03-16 16:58:04 +01:00
|
|
|
void OSInterface::setGmmInputArgs(void *args) {
|
|
|
|
|
this->get()->getWddm()->setGmmInputArg(args);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|