mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
Refactor MemorySynchronizationCommands class
Related-To: NEO-4338 Change-Id: Id0ae9c73293fd99f53fccc11a69ca14fa9a6d119 Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
committed by
sys_ocldev
parent
4bf503da12
commit
b2210fa5bb
16
shared/source/helpers/definitions/pipe_control_args.h
Normal file
16
shared/source/helpers/definitions/pipe_control_args.h
Normal file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* 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
|
||||
Reference in New Issue
Block a user