Search Issue Tracker
Fixed in 2018.2.X
Votes
3
Found in
5.3.2p3
Issue ID
772449
Regression
No
[OSX] D3DCompiler produces incorrect bytecode on Mac (Wodka issue? - need d3dcompiler 10.0.10011.0)
Repro steps:
1) Open the project and TestShader.shader in it
2) In the frag function notice line 54: "fixed c = 5.0xx"
2) Select the TestShader in it and compile for OpenGLCore and OpenGLES30
3) Open the compiled code
4) Notice in the fragment main() of gles3 subshader:
t10_0 = vs_TEXCOORD0.x * vs_TEXCOORD0.x;
SV_Target0.xyz = vec3(t10_0) * vec3 (5.0,5.0,5.0);
5) Scroll down to fragment main() of glcore subshader and notice:
SV_Target0.xyz = vs_TEXCOORD0.xxx * vec3 (25.0,25.0,25.0);
Expected result: OpenGLCore compiler squares variable x and not the number 5
Actual: 5 is squared instead of x
Workaround: Use pow(x,2) or use another variable which will store the square value of x*x
Reproduced in: 5.4.0b7; 5.3.2p4; 5.2.3p3
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- "Shader warning in 'Hidden/Light2D': implicit truncation of vector type" is thrown when building Universal 2D template
- AI Assistant breaks compilation of packages using System.Runtime.CompilerServices.Unsafe via auto-referencing
- Unity Hub checks the "Documentation" module by default on the 6.4 and 6.5 streams despite that it was unchecked with the previous installs
- Shortcut that toggles between Dopesheet and Curves Views in the Animation Window's Timeline is mislabed
- Property List Items Overlap onto the Property List's top edge when scrolling through a long Property List
Add comment