Files
compute-runtime/shared/source/helpers/definitions/pipe_control_args.h
2021-12-09 13:00:10 +01:00

19 lines
383 B
C++

/*
* Copyright (C) 2020-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "shared/source/helpers/definitions/pipe_control_args_base.h"
namespace NEO {
struct HardwareInfo;
struct PipeControlArgs : PipeControlArgsBase {
PipeControlArgs() = default;
PipeControlArgs(bool dcFlush) : PipeControlArgsBase(dcFlush) {}
};
} // namespace NEO