--Bug fixes

-ETA time was wrong with incremental final renders after waiting for a period of time.

--Code changes
 -Small change to prevent parsing error when using tbb on some systems.
This commit is contained in:
Person
2020-04-09 15:41:49 -07:00
parent d2893010f0
commit b9ce48f649
2 changed files with 8 additions and 5 deletions

View File

@ -66,9 +66,11 @@
#include "libxml2/libxml/parser.h"
#endif
//Intel's Threading Building Blocks is what's used for all threading.
#include <tbb/parallel_for.h>
#include <tbb/task_scheduler_init.h>
#if !defined(Q_MOC_RUN)
//Intel's Threading Building Blocks is what's used for all threading.
#include <tbb/parallel_for.h>
#include <tbb/task_scheduler_init.h>
#endif
#define GLM_FORCE_RADIANS 1
#define GLM_ENABLE_EXPERIMENTAL 1