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
- Asset Database warning is being logged continuously when creating a script in an embedded package
- The Scene is marked as dirty when navigating Hierarchy by using arrow keys
- Build process only shows Initializing when building for Android
- TileMap Palette preview flickers when scaled
- Shader Graph Blackboard "plus" sign is not centered within the button
Add comment