pub enum RayQueryFunction {
Initialize {
acceleration_structure: Handle<Expression>,
descriptor: Handle<Expression>,
},
Proceed {
result: Handle<Expression>,
},
GenerateIntersection {
hit_t: Handle<Expression>,
},
ConfirmIntersection,
Terminate,
}
Expand description
An operation that a RayQuery
statement applies to its query
operand.
Variants§
Initialize
Initialize the RayQuery
object.
Fields
acceleration_structure: Handle<Expression>
The acceleration structure within which this query should search for hits.
The expression must be an AccelerationStructure
.
descriptor: Handle<Expression>
A struct of detailed parameters for the ray query.
This expression should have the struct type given in
SpecialTypes::ray_desc
. This is available in the WGSL
front end as the RayDesc
type.
Proceed
Start or continue the query given by the statement’s query
operand.
After executing this statement, the result
expression is a
Bool
scalar indicating whether there are more intersection
candidates to consider.
Fields
result: Handle<Expression>
GenerateIntersection
Add a candidate generated intersection to be included in the determination of the closest hit for a ray query.
Fields
hit_t: Handle<Expression>
ConfirmIntersection
Confirm a triangle intersection to be included in the determination of the closest hit for a ray query.
Terminate
Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for RayQueryFunction
impl<'arbitrary> Arbitrary<'arbitrary> for RayQueryFunction
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Self
from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Self
from the entirety of the given
unstructured data. Read moresource§impl Clone for RayQueryFunction
impl Clone for RayQueryFunction
source§fn clone(&self) -> RayQueryFunction
fn clone(&self) -> RayQueryFunction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RayQueryFunction
impl Debug for RayQueryFunction
source§impl<'de> Deserialize<'de> for RayQueryFunction
impl<'de> Deserialize<'de> for RayQueryFunction
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Auto Trait Implementations§
impl Freeze for RayQueryFunction
impl RefUnwindSafe for RayQueryFunction
impl Send for RayQueryFunction
impl Sync for RayQueryFunction
impl Unpin for RayQueryFunction
impl UnwindSafe for RayQueryFunction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)