| 481 | } |
| 482 | |
| 483 | RTC_SYCL_INDIRECTLY_CALLABLE void contextIntersectFunc(const RTCIntersectFunctionNArguments* args) |
| 484 | { |
| 485 | UserGeometryType* type = (UserGeometryType*) args->geometryUserPtr; |
| 486 | if (*type == USER_GEOMETRY_INSTANCE) instanceIntersectFunc(args); |
| 487 | else sphereIntersectFunc(args); |
| 488 | } |
| 489 | |
| 490 | RTC_SYCL_INDIRECTLY_CALLABLE void contextOccludedFunc(const RTCOccludedFunctionNArguments* args) |
| 491 | { |
nothing calls this directly
no test coverage detected