#include "../include/embree4/rtcore_config.h"
#define EMBREE_FILTER_FUNCTION
#define EMBREE_GEOMETRY_TRIANGLE
#define EMBREE_RAY_PACKETS
#define EMBREE_CURVE_SELF_INTERSECTION_AVOIDANCE_FACTOR …
#define EMBREE_DISC_POINT_SELF_INTERSECTION_AVOIDANCE
#if defined(EMBREE_GEOMETRY_TRIANGLE)
#define IF_ENABLED_TRIS(x) …
#else
#define IF_ENABLED_TRIS …
#endif
#if defined(EMBREE_GEOMETRY_QUAD)
#define IF_ENABLED_QUADS …
#else
#define IF_ENABLED_QUADS(x) …
#endif
#if defined(EMBREE_GEOMETRY_CURVE) || defined(EMBREE_GEOMETRY_POINT)
#define IF_ENABLED_CURVES_OR_POINTS …
#else
#define IF_ENABLED_CURVES_OR_POINTS(x) …
#endif
#if defined(EMBREE_GEOMETRY_CURVE)
#define IF_ENABLED_CURVES …
#else
#define IF_ENABLED_CURVES(x) …
#endif
#if defined(EMBREE_GEOMETRY_POINT)
#define IF_ENABLED_POINTS …
#else
#define IF_ENABLED_POINTS(x) …
#endif
#if defined(EMBREE_GEOMETRY_SUBDIVISION)
#define IF_ENABLED_SUBDIV …
#else
#define IF_ENABLED_SUBDIV(x) …
#endif
#if defined(EMBREE_GEOMETRY_USER)
#define IF_ENABLED_USER …
#else
#define IF_ENABLED_USER(x) …
#endif
#if defined(EMBREE_GEOMETRY_INSTANCE)
#define IF_ENABLED_INSTANCE …
#else
#define IF_ENABLED_INSTANCE(x) …
#endif
#if defined(EMBREE_GEOMETRY_INSTANCE_ARRAY)
#define IF_ENABLED_INSTANCE_ARRAY …
#else
#define IF_ENABLED_INSTANCE_ARRAY(x) …
#endif
#if defined(EMBREE_GEOMETRY_GRID)
#define IF_ENABLED_GRIDS …
#else
#define IF_ENABLED_GRIDS(x) …
#endif