expose 2 new command-line options [--disable_cached_cl_kernels] [--load_cl_kernels_from_disk]
on Windows (_WIN32) debug output goes to BOTH console and Visual Studio output log window.
This commit is contained in:
@@ -27,9 +27,8 @@ void b3PrintfFuncDefault(const char* msg)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
OutputDebugStringA(msg);
|
||||
#else
|
||||
printf("%s",msg);
|
||||
#endif
|
||||
printf("%s",msg);
|
||||
|
||||
}
|
||||
|
||||
@@ -37,9 +36,9 @@ void b3WarningMessageFuncDefault(const char* msg)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
OutputDebugStringA(msg);
|
||||
#else
|
||||
printf("%s",msg);
|
||||
#endif
|
||||
printf("%s",msg);
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -48,9 +47,8 @@ void b3ErrorMessageFuncDefault(const char* msg)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
OutputDebugStringA(msg);
|
||||
#else
|
||||
printf("%s",msg);
|
||||
#endif
|
||||
printf("%s",msg);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user