We've just examined the shaders you've shared, and noticed that the Unity sample is for the Fixed Tessellation Type:
- Code: Select all
#pragma surface surf BlinnPhong addshadow fullforwardshadows vertex:disp tessellate:tessFixed nolightmap
Which is currently working on Mac, and the same applies for the ASE shaders that have its Type set to Fixed as well, since we use Unity's own implementation of this technique.
The ASE shader you've sent, however, has its Tessellation Type set to Edge Length ( not Fixed like the Unity Shader ), which breaks both on the Unity Sample and ASE authored shaders:
- Code: Select all
return UnityEdgeLengthBasedTess (v0.vertex, v1.vertex, v2.vertex, _EdgeLength);
Setting the ASE sample you've sent to Tessellation Type - Fixed, will make it work in the same way as Unity's own.

We've double-checked and
Unity's own Edge Length sample also breaks, just to clear any doubts.
Also, please note that, unlike the Shaded Mode, the Wireframe Shading Mode in the Scene View seems to be broken on Mac, and it won't display the correct preview.
Unfortunately, there's nothing we can do on our end regarding the Tessellation issues on Mac since, as I've previously mentioned, we use Unity's Tessellation technique, which seems to still has some issues that they need to fix on their side.
Please let us know if you have any further questions, thank you!