mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
17 lines
356 B
C
17 lines
356 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2020 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include "shared/source/helpers/definitions/pipe_control_args_base.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
struct PipeControlArgs : PipeControlArgsBase {
|
||
|
|
PipeControlArgs() = default;
|
||
|
|
PipeControlArgs(bool dcFlush) : PipeControlArgsBase(dcFlush) {}
|
||
|
|
};
|
||
|
|
} // namespace NEO
|