Update PipeControlArgs helper
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
parent
7ce2f0db38
commit
c5fb745260
|
@ -8,9 +8,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
namespace NEO {
|
namespace NEO {
|
||||||
struct PipeControlArgsBase {
|
struct PipeControlArgsBase {
|
||||||
PipeControlArgsBase() = default;
|
|
||||||
PipeControlArgsBase(bool dcFlush) : dcFlushEnable(dcFlush) {}
|
|
||||||
|
|
||||||
bool dcFlushEnable = false;
|
bool dcFlushEnable = false;
|
||||||
bool renderTargetCacheFlushEnable = false;
|
bool renderTargetCacheFlushEnable = false;
|
||||||
bool instructionCacheInvalidateEnable = false;
|
bool instructionCacheInvalidateEnable = false;
|
||||||
|
@ -21,5 +18,9 @@ struct PipeControlArgsBase {
|
||||||
bool stateCacheInvalidationEnable = false;
|
bool stateCacheInvalidationEnable = false;
|
||||||
bool genericMediaStateClear = false;
|
bool genericMediaStateClear = false;
|
||||||
bool hdcPipelineFlush = false;
|
bool hdcPipelineFlush = false;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
PipeControlArgsBase() = default;
|
||||||
|
PipeControlArgsBase(bool dcFlush) : dcFlushEnable(dcFlush) {}
|
||||||
};
|
};
|
||||||
} // namespace NEO
|
} // namespace NEO
|
||||||
|
|
Loading…
Reference in New Issue