| 88 | } |
| 89 | |
| 90 | cl_command_queue XCreateCommandQueue(cl_context context, cl_device_id device, cl_command_queue_properties properties, cl_int *errcode_ret) |
| 91 | { |
| 92 | XDEBG("XCreateCommandQueue(ctx: %p, dev: %p, prop: 0x%lx)", context, device, properties); |
| 93 | return CreateCommandQueue([&]() { |
| 94 | return Driver::CreateCommandQueue(context, device, properties, errcode_ret); |
| 95 | }); |
| 96 | } |
| 97 | |
| 98 | cl_command_queue XCreateCommandQueueWithProperties(cl_context context, cl_device_id device, const cl_queue_properties *properties, cl_int *errcode_ret) |
| 99 | { |
nothing calls this directly
no test coverage detected