mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
to guarantee that all subblt got complete for previous copy affect xe hpg temporary changes under flag ForceDummyBlitWa Related-To: NEO-7450 Signed-off-by: Cencelewska, Katarzyna <katarzyna.cencelewska@intel.com>
16 lines
335 B
C++
16 lines
335 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/command_container/command_encoder.h"
|
|
|
|
namespace NEO {
|
|
template <typename GfxFamily>
|
|
struct MockEncodeMiFlushDW : EncodeMiFlushDW<GfxFamily> {
|
|
using EncodeMiFlushDW<GfxFamily>::getWaSize;
|
|
};
|
|
} // namespace NEO
|