You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
even though in this case the error isn't fatal and execution continues normally in release builds.
BASISU_OPENCL_ASSERT_ON_ANY_ERRORS is hardcoded to 1 further up top so can't be disabled. The CPU device fallback should either not call ocl_error_printf() or BASISU_OPENCL_ASSERT_ON_ANY_ERRORS should be overridable, e.g.:
When the OpenCL backend falls back from GPU to CPU device, the following line causes an assert:
basis_universal/encoder/basisu_opencl.cpp
Line 111 in 6775d33
ocl_error_printf()
contains the following:even though in this case the error isn't fatal and execution continues normally in release builds.
BASISU_OPENCL_ASSERT_ON_ANY_ERRORS
is hardcoded to 1 further up top so can't be disabled. The CPU device fallback should either not callocl_error_printf()
orBASISU_OPENCL_ASSERT_ON_ANY_ERRORS
should be overridable, e.g.:The text was updated successfully, but these errors were encountered: