mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:53:55 +08:00
26 lines
707 B
C
26 lines
707 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
namespace NEO {
|
||
|
|
struct PipeControlArgsBase {
|
||
|
|
PipeControlArgsBase() = default;
|
||
|
|
PipeControlArgsBase(bool dcFlush) : dcFlushEnable(dcFlush) {}
|
||
|
|
|
||
|
|
bool dcFlushEnable = false;
|
||
|
|
bool renderTargetCacheFlushEnable = false;
|
||
|
|
bool instructionCacheInvalidateEnable = false;
|
||
|
|
bool textureCacheInvalidationEnable = false;
|
||
|
|
bool pipeControlFlushEnable = false;
|
||
|
|
bool vfCacheInvalidationEnable = false;
|
||
|
|
bool constantCacheInvalidationEnable = false;
|
||
|
|
bool stateCacheInvalidationEnable = false;
|
||
|
|
bool genericMediaStateClear = false;
|
||
|
|
bool hdcPipelineFlush = false;
|
||
|
|
};
|
||
|
|
} // namespace NEO
|