mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
Related-To: NEO-5546 Resolves: NEO-5561 Signed-off-by: Maciej Dziuban <maciej.dziuban@intel.com>
23 lines
752 B
C++
23 lines
752 B
C++
/*
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/blit_commands_helper.h"
|
|
|
|
namespace NEO {
|
|
|
|
BlitOperationResult BlitHelper::blitMemoryToAllocation(const Device &device, GraphicsAllocation *memory, size_t offset, const void *hostPtr,
|
|
Vec3<size_t> size) {
|
|
return BlitOperationResult::Unsupported;
|
|
}
|
|
|
|
BlitOperationResult BlitHelper::blitMemoryToAllocationBanks(const Device &device, GraphicsAllocation *memory, size_t offset, const void *hostPtr,
|
|
Vec3<size_t> size, DeviceBitfield memoryBanks) {
|
|
return BlitOperationResult::Unsupported;
|
|
}
|
|
|
|
} // namespace NEO
|