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
- Any small change in UI Builder Inspector refreshes Editor Inspector
- Inaccurate Box Collider boundaries on a rotated child Cube when the parent GameObject Scale is non-uniform
- [Android] "SHADOWS_SCREEN" set as shader Keyword when no "_ShadowMapTexture" is bound leads to freeze on a build on some Mali GPU devices
- The global scene list is overridden in a project built with command line when the Override Global Scene List setting is disabled in the build profile
- [Linux] AutoLocale log is logged when opening a project
Add comment