mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Introduce functions allowing to copy values from one struct to another, while correctly setting values of isDirty field. Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
23 lines
380 B
C++
23 lines
380 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "shared/source/helpers/hw_helper.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
#include "stream_properties.inl"
|
|
|
|
namespace NEO {
|
|
|
|
struct StreamProperties {
|
|
StateComputeModeProperties stateComputeMode{};
|
|
FrontEndProperties frontEndState{};
|
|
};
|
|
|
|
} // namespace NEO
|