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
- [Android] Stage information is not logged when Log Shader Compilation is enabled
- [Vulkan] The memory allocation increases rapidly when there are multiple (three or more) Real-Time Reflection Probes in the Scene
- [macOS] Library folder of the opened project can be deleted which leads to the crash
- “Default Scene” dropdown field contains a spelling mistake “Default Builtin”
- Editor crashes on PPtr<Mesh> after adding Text Mesh and Cloth Components to the same GameObject
Add comment