mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I59298030b4132a3ac95cc57d0608c8e6a350dafd Related-To: NEO-3020 Signed-off-by: Dunajski, Bartosz <bartosz.dunajski@intel.com>
22 lines
530 B
C++
22 lines
530 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
|
#include "runtime/context/context.h"
|
|
#include "runtime/mem_obj/mem_obj.h"
|
|
|
|
namespace NEO {
|
|
|
|
cl_int Context::processExtraProperties(cl_context_properties propertyType, cl_context_properties propertyValue) {
|
|
return CL_INVALID_PROPERTY;
|
|
}
|
|
|
|
CommandStreamReceiver *Context::getCommandStreamReceiverForBlitOperation(MemObj &memObj) const {
|
|
return nullptr;
|
|
}
|
|
} // namespace NEO
|