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
|
||||
namespace NEO {
|
||||
struct PipeControlArgsBase {
|
||||
PipeControlArgsBase() = default;
|
||||
PipeControlArgsBase(bool dcFlush) : dcFlushEnable(dcFlush) {}
|
||||
|
||||
bool dcFlushEnable = false;
|
||||
bool renderTargetCacheFlushEnable = false;
|
||||
bool instructionCacheInvalidateEnable = false;
|
||||
|
@ -21,5 +18,9 @@ struct PipeControlArgsBase {
|
|||
bool stateCacheInvalidationEnable = false;
|
||||
bool genericMediaStateClear = false;
|
||||
bool hdcPipelineFlush = false;
|
||||
|
||||
protected:
|
||||
PipeControlArgsBase() = default;
|
||||
PipeControlArgsBase(bool dcFlush) : dcFlushEnable(dcFlush) {}
|
||||
};
|
||||
} // namespace NEO
|
||||
|
|
Loading…
Reference in New Issue