2018-11-13 17:23:12 +08:00
|
|
|
/*
|
2019-03-26 18:59:46 +08:00
|
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
2018-11-13 17:23:12 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-04-16 21:42:23 +08:00
|
|
|
#include "runtime/command_stream/command_stream_receiver.h"
|
2018-11-13 17:23:12 +08:00
|
|
|
#include "runtime/context/context.h"
|
2019-04-16 21:42:23 +08:00
|
|
|
#include "runtime/mem_obj/mem_obj.h"
|
2018-11-13 17:23:12 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2018-11-13 17:23:12 +08:00
|
|
|
|
|
|
|
cl_int Context::processExtraProperties(cl_context_properties propertyType, cl_context_properties propertyValue) {
|
|
|
|
return CL_INVALID_PROPERTY;
|
|
|
|
}
|
|
|
|
|
2019-04-16 21:42:23 +08:00
|
|
|
CommandStreamReceiver *Context::getCommandStreamReceiverForBlitOperation(MemObj &memObj) const {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|