| 77 | |
| 78 | |
| 79 | __forceinline void init_Ray(Ray &ray, |
| 80 | const embree::Vec3fa& org, |
| 81 | const embree::Vec3fa& dir, |
| 82 | float tnear = 0.0f, |
| 83 | float tfar = embree::inf, |
| 84 | float time = 0.0f, |
| 85 | int mask = -1, |
| 86 | unsigned int geomID = RTC_INVALID_GEOMETRY_ID, |
| 87 | unsigned int primID = RTC_INVALID_GEOMETRY_ID) |
| 88 | { |
| 89 | ray = Ray(org,dir,tnear,tfar,time,mask,geomID,primID); |
| 90 | } |
| 91 | |
| 92 | typedef Ray Ray1; |
| 93 |
no test coverage detected