Skip to content

Commit

Permalink
Clarify PAQ behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmusnv committed Oct 24, 2024
1 parent 7a63102 commit d8f95b4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion proposals/NNNN-shader-execution-reordering.md
Original file line number Diff line number Diff line change
Expand Up @@ -644,14 +644,18 @@ caller -> anyhit -> (closesthit|miss) -> caller

With `HitObject`, control is returned to the caller after
`HitObject::TraceRay` completed and hence caller is inserted between anyhit
and (closesthit|miss):
and (closesthit|miss).

The flow for `HitObject::TraceRay` is:

```C++
caller -> anyhit -> caller
^ |
|__|
```

The flow for `HitObject::Invoke` is:

```C++
caller -> (closesthit|miss) -> caller
```
Expand Down

0 comments on commit d8f95b4

Please sign in to comment.