Search Issue Tracker
Duplicate
Votes
0
Found in
2021.2.0b3
Issue ID
1351290
Regression
No
[RTX] Dispatching RTX rays causes immediate crash with a closesthit shader in scene
The same issue as in case 1351303 regarding max_recursion_depth that has a value of 1 in the raytrace shader even though the maximum number of recursion in the closest hit shader is 8. Changing the max_recursion_depth to a larger value like 31 will avoid the crash. Please note that currently DXR will allow a max_recursion_depth of 31 (hardware limitation). If there are more than 31 TraceRay recursive calls the GPU will crash.
PlanarProjectionTracingShader.raytrace
#pragma max_recursion_depth 1;
Common.cginc
static const uint gMaxDepth = 8;
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Big chunk of "Untracked" memory in the Memory Profiler screenshot when a custom .obj file is loaded while in Play Mode
- Video contains artifacts when played in the Video Preview section in the Inspector Window
- UI Toolkit Slider "Fill" option doesn't invert when "Inverted" option is selected
- The Random Value option in the Set Attribute Block gets disabled and the "B"/"Max" value lost when upgrading to Unity 6
- Crash in ParallelSortExtensions::ParallelSort
Add comment