Search Issue Tracker
By Design
Votes
0
Found in
2017.2.0f3
Issue ID
960241
Regression
No
[ShaderCompiler] Inline constant and property behave differently in pow
See comparison of frag functions in BrokenShader.shader and SensibleBehavior.shader. Something seems to be wrong with the way the shader compiler deals with float properties in pow.
_FloatProperty.xxx behaves like float3(1,0,0), but _FloatInline.xxx behaves, as expected, like float3(1,1,1).
Repro steps:
1. Open attached project and Scene.unity
2. Notice difference between left and right sphere
3. Compare shaders
Reproduced in 5.6.4.0f1 and 2017.2.0f3
--
Update: Closing as by design. Explanation:
The root cause seems to be that components of in.normal can be negative and pow(a,b) is not well defined for a < 0. The inline version is saved by the fact that b is known at compile time so the compiler can optimize pow(a,1) into just a.
You can observe this by changing the inline constant to 1.00001 instead of 1, thus disabling the optimization. When b is not known at compile time, the compiler has no other choice than actually performing the pow and the problem is observed.
In general, you should not be calling pow(a,b) with negative a.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Texture Import Warnings are obscured by other Terrain Layer options in the Inspector
- Burst Inspector middle divider is jittering when resized with the Burst Inspector window docked
- JsonConvert conversion fails trying to call GetCallbackMethodsForType when [OnDeserialized] is used in a class
- Different text alignment in the column header in Entities "System" window
- Objects with Universal Render Pipeline/Particles/Lit shader are always lit up when changing their Rendering Layer Mask
Add comment