mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
23 lines
572 B
C++
23 lines
572 B
C++
/*
|
|
* Copyright (C) 2018-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/command_stream/command_stream_receiver.h"
|
|
|
|
#include "context/context.h"
|
|
#include "mem_obj/mem_obj.h"
|
|
|
|
namespace NEO {
|
|
|
|
cl_int Context::processExtraProperties(cl_context_properties propertyType, cl_context_properties propertyValue) {
|
|
return CL_INVALID_PROPERTY;
|
|
}
|
|
|
|
BlitOperationResult Context::blitMemoryToAllocation(MemObj &memObj, GraphicsAllocation *memory, void *hostPtr, size_t size) const {
|
|
return BlitOperationResult::Unsupported;
|
|
}
|
|
} // namespace NEO
|