.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "rtcSetGeometryEnableFilterFunctionFromArguments" "3" "" "" "Embree Ray Tracing Kernels 4" .hy .SS NAME .IP .nf \f[C] rtcSetGeometryEnableFilterFunctionFromArguments - enables argument filter functions for the geometry \f[R] .fi .SS SYNOPSIS .IP .nf \f[C] #include void rtcSetGeometryEnableFilterFunctionFromArguments( RTCGeometry geometry, bool enable); \f[R] .fi .SS DESCRIPTION .PP This function enables invokation the filter function passed through \f[C]RTCIntersectArguments\f[R] or \f[C]RTCOccludedArguments\f[R] to the intersect and occluded queries. If enable is true the argument filter function invokation is enabled for the geometry or disabled otherwise. By default the invokation of the argument filter function is disabled for some geometry. .PP The argument filter function invokation can also get enforced for each geometry by using the \f[C]RTC_RAY_QUERY_FLAG_INVOKE_ARGUMENT_FILTER\f[R] ray query flag that can get passed to \f[C]rtcIntersect\f[R] and \f[C]rtcOccluded\f[R] functions. See Section [rtcInitIntersectArguments] and [rtcInitOccludedArguments] for more details. .PP In order to use the argument filter function for some scene, that feature additionally has to get enabled using the \f[C]RTC_SCENE_FLAG_FILTER_FUNCTION_IN_ARGUMENTS\f[R] scene flag. See Section [rtcSetSceneFlags] for more details. .SS EXIT STATUS .PP On failure an error code is set that can get queried using \f[C]rtcGetDeviceError\f[R]. .SS SEE ALSO .PP [rtcInitIntersectArguments], [rtcInitOccludedArguments], [rtcSetSceneFlags]