| 262 | } |
| 263 | |
| 264 | cl_program OCLWrapper::clCreateProgramWithBinary(cl_context context, cl_uint num_devices, |
| 265 | const cl_device_id* device_list, |
| 266 | const size_t* lengths, |
| 267 | const unsigned char** binaries, |
| 268 | cl_int* binary_status, cl_int* errcode_ret) { |
| 269 | return ::clCreateProgramWithBinary(context, num_devices, device_list, lengths, binaries, |
| 270 | binary_status, errcode_ret); |
| 271 | } |
| 272 | |
| 273 | cl_int OCLWrapper::clRetainProgram(cl_program program) { return ::clRetainProgram(program); } |
| 274 |
no test coverage detected