initial commit, 4.5 stable
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
This commit is contained in:
85
thirdparty/embree/kernels/geometry/instance_array_intersector.h
vendored
Normal file
85
thirdparty/embree/kernels/geometry/instance_array_intersector.h
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
// Copyright 2009-2021 Intel Corporation
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "instance_array.h"
|
||||
#include "../common/ray.h"
|
||||
#include "../common/point_query.h"
|
||||
#include "../common/scene.h"
|
||||
|
||||
namespace embree
|
||||
{
|
||||
namespace isa
|
||||
{
|
||||
struct InstanceArrayIntersector1
|
||||
{
|
||||
typedef InstanceArrayPrimitive Primitive;
|
||||
|
||||
struct Precalculations {
|
||||
__forceinline Precalculations (const Ray& ray, const void *ptr) {}
|
||||
};
|
||||
|
||||
static void intersect(const Precalculations& pre, RayHit& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static bool occluded(const Precalculations& pre, Ray& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static bool pointQuery(PointQuery* query, PointQueryContext* context, const Primitive& prim);
|
||||
};
|
||||
|
||||
struct InstanceArrayIntersector1MB
|
||||
{
|
||||
typedef InstanceArrayPrimitive Primitive;
|
||||
|
||||
struct Precalculations {
|
||||
__forceinline Precalculations (const Ray& ray, const void *ptr) {}
|
||||
};
|
||||
|
||||
static void intersect(const Precalculations& pre, RayHit& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static bool occluded(const Precalculations& pre, Ray& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static bool pointQuery(PointQuery* query, PointQueryContext* context, const Primitive& prim);
|
||||
};
|
||||
|
||||
template<int K>
|
||||
struct InstanceArrayIntersectorK
|
||||
{
|
||||
typedef InstanceArrayPrimitive Primitive;
|
||||
|
||||
struct Precalculations {
|
||||
__forceinline Precalculations (const vbool<K>& valid, const RayK<K>& ray) {}
|
||||
};
|
||||
|
||||
static void intersect(const vbool<K>& valid_i, const Precalculations& pre, RayHitK<K>& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static vbool<K> occluded(const vbool<K>& valid_i, const Precalculations& pre, RayK<K>& ray, RayQueryContext* context, const Primitive& prim);
|
||||
|
||||
static __forceinline void intersect(Precalculations& pre, RayHitK<K>& ray, size_t k, RayQueryContext* context, const Primitive& prim) {
|
||||
intersect(vbool<K>(1<<int(k)),pre,ray,context,prim);
|
||||
}
|
||||
|
||||
static __forceinline bool occluded(Precalculations& pre, RayK<K>& ray, size_t k, RayQueryContext* context, const Primitive& prim) {
|
||||
occluded(vbool<K>(1<<int(k)),pre,ray,context,prim);
|
||||
return ray.tfar[k] < 0.0f;
|
||||
}
|
||||
};
|
||||
|
||||
template<int K>
|
||||
struct InstanceArrayIntersectorKMB
|
||||
{
|
||||
typedef InstanceArrayPrimitive Primitive;
|
||||
|
||||
struct Precalculations {
|
||||
__forceinline Precalculations (const vbool<K>& valid, const RayK<K>& ray) {}
|
||||
};
|
||||
|
||||
static void intersect(const vbool<K>& valid_i, const Precalculations& pre, RayHitK<K>& ray, RayQueryContext* context, const Primitive& prim);
|
||||
static vbool<K> occluded(const vbool<K>& valid_i, const Precalculations& pre, RayK<K>& ray, RayQueryContext* context, const Primitive& prim);
|
||||
|
||||
static __forceinline void intersect(Precalculations& pre, RayHitK<K>& ray, size_t k, RayQueryContext* context, const Primitive& prim) {
|
||||
intersect(vbool<K>(1<<int(k)),pre,ray,context,prim);
|
||||
}
|
||||
|
||||
static __forceinline bool occluded(Precalculations& pre, RayK<K>& ray, size_t k, RayQueryContext* context, const Primitive& prim) {
|
||||
occluded(vbool<K>(1<<int(k)),pre,ray,context,prim);
|
||||
return ray.tfar[k] < 0.0f;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user