refactor: change order of fields of EncodeDispatchKernelArgs structure

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2023-10-03 18:42:36 +00:00
committed by Compute-Runtime-Automation
parent fc508212de
commit ec9fa23b2e
8 changed files with 58 additions and 51 deletions

View File

@@ -43,6 +43,7 @@ struct StateComputeModeProperties;
struct EncodeDispatchKernelArgs {
uint64_t eventAddress = 0ull;
uint64_t postSyncImmValue = 0;
Device *device = nullptr;
DispatchKernelEncoderI *dispatchInterface = nullptr;
IndirectHeap *surfaceStateHeap = nullptr;
@@ -52,7 +53,6 @@ struct EncodeDispatchKernelArgs {
std::list<void *> *additionalCommands = nullptr;
PreemptionMode preemptionMode = PreemptionMode::Initial;
uint32_t partitionCount = 0u;
uint64_t postSyncImmValue = 0;
bool isIndirect = false;
bool isPredicate = false;
bool isTimestampEvent = false;