22 lines
394 B
C++
22 lines
394 B
C++
/*
|
|
* Copyright (C) 2021-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "stream_properties.inl"
|
|
|
|
namespace NEO {
|
|
|
|
struct StreamProperties {
|
|
StateComputeModeProperties stateComputeMode{};
|
|
FrontEndProperties frontEndState{};
|
|
PipelineSelectProperties pipelineSelect{};
|
|
StateBaseAddressProperties stateBaseAddress{};
|
|
};
|
|
|
|
} // namespace NEO
|