23 lines
341 B
Plaintext
23 lines
341 B
Plaintext
![]() |
/*
|
||
|
* Copyright (C) 2021 Intel Corporation
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "shared/source/command_stream/stream_property.h"
|
||
|
|
||
|
namespace NEO {
|
||
|
|
||
|
struct StateComputeModeProperties {
|
||
|
StreamProperty isCoherencyRequired{};
|
||
|
|
||
|
bool isDirty();
|
||
|
void clearIsDirty();
|
||
|
};
|
||
|
|
||
|
struct FrontEndProperties {
|
||
|
};
|
||
|
|
||
|
} // namespace NEO
|