Search Issue Tracker
Fixed in 5.2.0
Votes
0
Found in
5.0.1p3
Issue ID
693714
Regression
No
[Shaders][Metal] Incorrectly compiled metal shader, missing matrix type cast
At some points compiled metal code doesn't have matrix typecast function. For example, float3x3 -> half3x3.
Project Steps:
1. Open project "MetalCompile" (Attached by LukasC);
2. Open scene "Test".
3. Build & Run.
4. When xCode project starts, you should get some metal compilation errors.
Steps without building project:
1. Select shader "NewShader".
2. Click compile (Only for metal).
3. Goto line 2116, you should see smth like:
...
float3x3 tmpvar_29;
half3x3 tmpvar_30;
tmpvar_30[0].x = tmpvar_27.x;
tmpvar_30[0].y = tmpvar_28.x;
tmpvar_30[0].z = tmpvar_25.x;
tmpvar_30[1].x = tmpvar_27.y;
tmpvar_30[1].y = tmpvar_28.y;
tmpvar_30[1].z = tmpvar_25.y;
tmpvar_30[2].x = tmpvar_27.z;
tmpvar_30[2].y = tmpvar_28.z;
tmpvar_30[2].z = tmpvar_25.z;
tmpvar_29 = tmpvar_30;
...
4. You should notice that "tmpvar_29 = tmpvar_30" that this matrices are in different types.
In metal this type conversion requires cast, however opengles20 doesn't require it.
As I know unity generates metal shaders from openglES20 shaders, so this could explain why this bug happens.
But the strange thing is that, if you would use miss-matched matrix types normally in shader:
float3x3 mat1;
half3x3 mat2;
mat2 = mat1;
In metal it will be compiled correctly.
float3x3 mat1;
half3x3 mat2;
mat2 = _xlcast_half4x4(mat1);
So it means this bug is more complicated and caused by multiple factors.
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Nested Canvases with the same Order in Layer ignore Z position for render order when sharing parent Canvas
- ShaderGraph Material subasset loses texture reference when reimporting all assets while using a scripted importer
- Values changed on a prefab are not retained when entering Play Mode
- Shadow Caster 2D shadows partially disappear in specific spots when used with Composite Collider 2D in the Game view
- Hierarchy and Library parts in UI Builder are inaccessible when UI Builder window is resized and these elements no longer fit in the window
Add comment