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
- “Remove Unused Overrides” available on not loaded Scene and throws “ArgumentException: The scene is not loaded” warning
- Adaptive Probe Volume occlusion edge is calculated incorrectly when viewing probes near geometry edges
- Sampling a texture using an HLSL file throws shader errors and the code does not compile
- "Graphics.CopyTexture called with null source texture" error when Base Camera of an Overlay Camera is removed with DX11 Graphics API and Compatibility Mode enabled
- WebGL sends wrong value with large numbers when SendMessage function is used
Add comment