We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06ec955 commit f190801Copy full SHA for f190801
docs/notes/bugfix-13535.md
@@ -0,0 +1 @@
1
+# Threaded rendering crash
engine/src/sysunxthreads.cpp
@@ -361,10 +361,11 @@ uint32_t MCThreadGetNumberOfCores()
361
//return (uint32_t) sysconf(_SC_NPROCESSORS_CONF);
362
363
// SN-2014-08-26: [[ Bug 13264 ]] Android multi-core won't draw images without a bit of rework
364
-#ifdef _ANDROID_MOBILE
365
- return 1;
366
-#else
+ // SN-2014-10-14: [[ Bug 13535 ]] Multithread rendering de-activated for now.
+#ifdef _MULTI_THREAD_RENDERING_
367
return (uint32_t) sysconf(_SC_NPROCESSORS_ONLN);
+#else
368
+ return 1;
369
#endif
370
}
371
0 commit comments