2020-07-10 23:04:42 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/helpers/blit_commands_helper.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
2020-09-15 21:45:26 +08:00
|
|
|
BlitOperationResult BlitHelper::blitMemoryToAllocation(const Device &device, GraphicsAllocation *memory, size_t offset, const void *hostPtr,
|
2020-07-10 23:04:42 +08:00
|
|
|
Vec3<size_t> size) {
|
|
|
|
return BlitOperationResult::Unsupported;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NEO
|