mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
Change-Id: I181e09d0356718c25162efdddede39b13399ed3b Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
18 lines
444 B
C++
18 lines
444 B
C++
/*
|
|
* Copyright (C) 2020 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;
|
|
}
|
|
|
|
} // namespace NEO
|