mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Change-Id: Ic4b3af368a734109188dcd725f1fcf8c17fbb59e Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
17 lines
313 B
C++
17 lines
313 B
C++
/*
|
|
* Copyright (C) 2018 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/context/context.h"
|
|
|
|
namespace OCLRT {
|
|
|
|
cl_int Context::processExtraProperties(cl_context_properties propertyType, cl_context_properties propertyValue) {
|
|
return CL_INVALID_PROPERTY;
|
|
}
|
|
|
|
} // namespace OCLRT
|