mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-01 13:56:06 -04:00
Code changes:
--Fix include paths for openexr on Mac. --Use static_partitioner in all parallel_for() calls.
This commit is contained in:
@ -59,12 +59,18 @@
|
||||
|
||||
//Exr
|
||||
#ifdef _WIN32
|
||||
#define OPENEXR_DLL 1
|
||||
#define OPENEXR_DLL 1
|
||||
#endif
|
||||
|
||||
#include <ImfRgbaFile.h>
|
||||
#include <ImfStringAttribute.h>
|
||||
#include <half.h>
|
||||
#ifdef __APPLE__
|
||||
#include <OpenEXR/ImfRgbaFile.h>
|
||||
#include <OpenEXR/ImfStringAttribute.h>
|
||||
#include <OpenEXR/half.h>
|
||||
#else
|
||||
#include <ImfRgbaFile.h>
|
||||
#include <ImfStringAttribute.h>
|
||||
#include <half.h>
|
||||
#endif
|
||||
|
||||
using namespace Imf;
|
||||
using namespace Imath;
|
||||
|
Reference in New Issue
Block a user