| 41 | RTCFilterFunctionN sphereFilterFuncPtr = nullptr; |
| 42 | |
| 43 | inline void pushInstanceId(RTCRayQueryContext* ctx, unsigned int id) |
| 44 | { |
| 45 | #if RTC_MAX_INSTANCE_LEVEL_COUNT > 1 |
| 46 | ctx->instID[ctx->instStackSize++] = id; |
| 47 | #else |
| 48 | ctx->instID[0] = id; |
| 49 | #endif |
| 50 | } |
| 51 | |
| 52 | inline void popInstanceId(RTCRayQueryContext* ctx) |
| 53 | { |
no outgoing calls
no test coverage detected