| 3094 | } |
| 3095 | |
| 3096 | VECMATH_FINLINE vec4f v_byte_to_float ( uint32_t x ) |
| 3097 | { |
| 3098 | vec4i y = v_cvt_byte_vec4i(x); |
| 3099 | return v_cvt_vec4f(y); |
| 3100 | } |
| 3101 | |
| 3102 | VECTORCALL VECMATH_INLINE int v_test_triangle_sphere_intersection(vec3f A, vec3f B, vec3f C, vec4f sph_c, vec4f sph_r2_x) |
| 3103 | { |
no test coverage detected