| 40 | #endif |
| 41 | |
| 42 | static void ocl_error_printf(const char* pFmt, ...) |
| 43 | { |
| 44 | va_list args; |
| 45 | va_start(args, pFmt); |
| 46 | error_vprintf(pFmt, args); |
| 47 | va_end(args); |
| 48 | |
| 49 | #if BASISU_OPENCL_ASSERT_ON_ANY_ERRORS |
| 50 | assert(0); |
| 51 | #endif |
| 52 | } |
| 53 | |
| 54 | class ocl |
| 55 | { |
no test coverage detected