20 lines
322 B
C++
20 lines
322 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace NEO {
|
|
struct MiFlushArgs {
|
|
bool timeStampOperation = false;
|
|
bool commandWithPostSync = false;
|
|
bool notifyEnable = false;
|
|
bool tlbFlush = false;
|
|
|
|
MiFlushArgs() = default;
|
|
};
|
|
} // namespace NEO
|