// Copyright 2009-2021 Intel Corporation // SPDX-License-Identifier: Apache-2.0 #pragma once #include "coneline_intersector.h" #include "intersector_epilog.h" namespace embree { namespace isa { template struct ConeCurveMiIntersector1 { typedef LineMi Primitive; typedef CurvePrecalculations1 Precalculations; static __forceinline void intersect(const Precalculations& pre, RayHit& ray, IntersectContext* context, const Primitive& line) { STAT3(normal.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom); const vbool valid = line.valid(); ConeCurveIntersector1::intersect(valid,ray,context,geom,pre,v0,v1,cL,cR,Intersect1EpilogM(ray,context,line.geomID(),line.primID())); } static __forceinline bool occluded(const Precalculations& pre, Ray& ray, IntersectContext* context, const Primitive& line) { STAT3(shadow.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom); const vbool valid = line.valid(); return ConeCurveIntersector1::intersect(valid,ray,context,geom,pre,v0,v1,cL,cR,Occluded1EpilogM(ray,context,line.geomID(),line.primID())); return false; } static __forceinline bool pointQuery(PointQuery* query, PointQueryContext* context, const Primitive& line) { return PrimitivePointQuery1::pointQuery(query, context, line); } }; template struct ConeCurveMiMBIntersector1 { typedef LineMi Primitive; typedef CurvePrecalculations1 Precalculations; static __forceinline void intersect(const Precalculations& pre, RayHit& ray, IntersectContext* context, const Primitive& line) { STAT3(normal.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom,ray.time()); const vbool valid = line.valid(); ConeCurveIntersector1::intersect(valid,ray,context,geom,pre,v0,v1,cL,cR,Intersect1EpilogM(ray,context,line.geomID(),line.primID())); } static __forceinline bool occluded(const Precalculations& pre, Ray& ray, IntersectContext* context, const Primitive& line) { STAT3(shadow.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom,ray.time()); const vbool valid = line.valid(); return ConeCurveIntersector1::intersect(valid,ray,context,geom,pre,v0,v1,cL,cR,Occluded1EpilogM(ray,context,line.geomID(),line.primID())); return false; } static __forceinline bool pointQuery(PointQuery* query, PointQueryContext* context, const Primitive& line) { return PrimitivePointQuery1::pointQuery(query, context, line); } }; template struct ConeCurveMiIntersectorK { typedef LineMi Primitive; typedef CurvePrecalculationsK Precalculations; static __forceinline void intersect(const Precalculations& pre, RayHitK& ray, size_t k, IntersectContext* context, const Primitive& line) { STAT3(normal.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom); const vbool valid = line.valid(); ConeCurveIntersectorK::intersect(valid,ray,k,context,geom,pre,v0,v1,cL,cR,Intersect1KEpilogM(ray,k,context,line.geomID(),line.primID())); } static __forceinline bool occluded(const Precalculations& pre, RayK& ray, size_t k, IntersectContext* context, const Primitive& line) { STAT3(shadow.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom); const vbool valid = line.valid(); return ConeCurveIntersectorK::intersect(valid,ray,k,context,geom,pre,v0,v1,cL,cR,Occluded1KEpilogM(ray,k,context,line.geomID(),line.primID())); } }; template struct ConeCurveMiMBIntersectorK { typedef LineMi Primitive; typedef CurvePrecalculationsK Precalculations; static __forceinline void intersect(const Precalculations& pre, RayHitK& ray, size_t k, IntersectContext* context, const Primitive& line) { STAT3(normal.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom,ray.time()[k]); const vbool valid = line.valid(); ConeCurveIntersectorK::intersect(valid,ray,k,context,geom,pre,v0,v1,cL,cR,Intersect1KEpilogM(ray,k,context,line.geomID(),line.primID())); } static __forceinline bool occluded(const Precalculations& pre, RayK& ray, size_t k, IntersectContext* context, const Primitive& line) { STAT3(shadow.trav_prims,1,1,1); const LineSegments* geom = context->scene->get(line.geomID()); Vec4vf v0,v1; vbool cL,cR; line.gather(v0,v1,cL,cR,geom,ray.time()[k]); const vbool valid = line.valid(); return ConeCurveIntersectorK::intersect(valid,ray,k,context,geom,pre,v0,v1,cL,cR,Occluded1KEpilogM(ray,k,context,line.geomID(),line.primID())); } }; } }