Files
compute-runtime/opencl/source/context/context_extra.cpp
kamdiedrich fa8e720f9e Reorganization directory structure [1/n]
Change-Id: Id1a94577437a4826a32411869f516fec20314ec0
2020-02-22 21:56:09 +01:00

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