rtcSetSceneBuildQuality
- Provided by: libembree-dev (Version: 3.12.2+dfsg-1)
- Source: embree
- Report a bug
rtcSetSceneBuildQuality - sets the build quality for
the scene
#include <embree3/rtcore.h>
void rtcSetSceneBuildQuality(
RTCScene scene,
enum RTCBuildQuality quality
);
The rtcSetSceneBuildQuality function sets the build quality (quality argument) for the specified scene (scene argument). Possible values for the build quality are:
Selecting a higher build quality results in better rendering performance but slower scene commit times. The default build quality for a scene is RTC_BUILD_QUALITY_MEDIUM.
On failure an error code is set that can be queried using rtcGetDeviceError.
[rtcSetGeometryBuildQuality]