We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a02ee commit 9d039c1Copy full SHA for 9d039c1
docs/api-specs/ray_tracing.md
@@ -125,8 +125,9 @@ rayQueryGenerateIntersection(hit_t: f32)
125
// - Commits a hit from triangular non-opaque geometry.
126
rayQueryConfirmIntersection()
127
128
-// - Aborts the query.
129
-rayQueryTerminate()
+// Aborts the query which is in progress, that is, the next `rayQueryProceed` is guaranteed to return `false`
+// and any call to `rayQueryGetCommittedIntersection` will return the closest committed result so far.
130
+rayQueryTerminate(rq: ptr<function, ray_query>)
131
132
// - Returns intersection details about a hit considered `Committed`.
133
rayQueryGetCommittedIntersection(rq: ptr<function, ray_query>) -> RayIntersection
0 commit comments