| 205 | } |
| 206 | |
| 207 | void destroy_command_queue(cl_command_queue p) |
| 208 | { |
| 209 | if (p) |
| 210 | { |
| 211 | cl_serializer serializer(this); |
| 212 | |
| 213 | clReleaseCommandQueue(p); |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | bool init_program(const char* pSrc, size_t src_size) |
| 218 | { |
no outgoing calls
no test coverage detected