mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 01:04:57 +08:00
- runtime/gmm_helper files - engine_control.h - allocation_properties.h Change-Id: I108888d639c8fdb298eda00fb1e7961b2ccb26cd Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
23 lines
507 B
C++
23 lines
507 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
class CommandStreamReceiver;
|
|
class OsContext;
|
|
|
|
struct EngineControl {
|
|
EngineControl() = default;
|
|
EngineControl(CommandStreamReceiver *commandStreamReceiver, OsContext *osContext)
|
|
: commandStreamReceiver(commandStreamReceiver), osContext(osContext){};
|
|
|
|
CommandStreamReceiver *commandStreamReceiver = nullptr;
|
|
OsContext *osContext = nullptr;
|
|
};
|
|
} // namespace NEO
|