.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "rtcForwardOccluded1/Ex" "3" "" "" "Embree Ray Tracing Kernels 4" .hy .SS NAME .IP .nf \f[C] rtcForwardOccluded1/Ex - forwards a single ray to new scene from user geometry callback \f[R] .fi .SS SYNOPSIS .IP .nf \f[C] #include void rtcForwardOccluded1( const struct RTCOccludedFunctionNArguments* args, RTCScene scene, struct RTCRay* ray, unsigned int instID ); void rtcForwardOccluded1( const struct RTCOccludedFunctionNArguments* args, RTCScene scene, struct RTCRay* ray, unsigned int instID, unsigned int instPrimID ); \f[R] .fi .SS DESCRIPTION .PP The \f[C]rtcForwardOccluded1\f[R] and \f[C]rtcForwardOccluded1Ex\f[R] functions forward the traversal of a transformed ray (\f[C]ray\f[R] argument) into a scene (\f[C]scene\f[R] argument) from a user geometry callback. The function can only get invoked from a user geometry callback for a ray traversal initiated with the \f[C]rtcOccluded1\f[R] function. The callback arguments structure of the callback invokation has to get passed to the ray forwarding (\f[C]args\f[R] argument). The user geometry callback should instantly terminate after invoking the \f[C]rtcForwardOccluded1/Ex\f[R] function. .PP Only the ray origin and ray direction members of the ray argument are used for forwarding, all additional ray properties are inherited from the initial ray traversal invokation of \f[C]rtcOccluded1\f[R]. .PP The implementation of the \f[C]rtcForwardOccluded1\f[R] function recursively continues the ray traversal into the specified scene and pushes the provided instance ID (\f[C]instID\f[R] argument) to the instance ID stack. Hit information is updated into the ray structure passed to the original \f[C]rtcOccluded1\f[R] invokation. .PP This function can get used to implement user defined instancing using user geometries, e.g.\ by transforming the ray in a special way, and/or selecting between different scenes to instantiate. .PP For user defined instance arrays, the \f[C]rtcForwardIntersect1Ex\f[R] variant has an additional \f[C]instPrimID\f[R] argument which is pushed to the instance primitive ID stack. Instance primitive IDs identify which instance of an instance array was hit. .PP When using Embree on the CPU it is possible to recursively invoke \f[C]rtcOccluded1\f[R] directly from a user geometry callback. However, when SYCL is used, recursively tracing rays is not directly supported, and the \f[C]rtcForwardOccluded1/Ex\f[R] function must be used. .PP The ray structure must be aligned to 16 bytes. .SS EXIT STATUS .PP For performance reasons this function does not do any error checks, thus will not set any error flags on failure. .SS SEE ALSO .PP [rtcOccluded1], [RTCRay]