Update PipeControlArgs helper

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski 2020-11-24 15:35:11 +00:00 committed by Compute-Runtime-Automation
parent 7ce2f0db38
commit c5fb745260
1 changed files with 4 additions and 3 deletions

View File

@ -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