Search Issue Tracker
By Design
Votes
0
Found in
2018.2.2f1
Issue ID
1069414
Regression
No
[iOS] [Metal] RenderTexture produce colored mosaic instead of expected texture
Reproduction steps:
1. Open the attached project.
2. Play the 'SampleScene' in the Editor to see the Expected behavior.
3. Build and run this scene to an iOS device.
Actual behavior (Screenshots attached):
- The texture will look like a colored mosaic.
Reproduced with:
iOS Metal
iPhone 7 iOS 11.0, iPhone 7+ iOS 11.1.1
2017.4.9f1, 2018.1.9f1, 2018.2.3f1, 2018.3.0a8
Not reproducible with:
iOS GLES
Editor Metal
Comments (1)
-
Khakionion
Oct 11, 2018 07:11
If you’re using DiscardContents(), remember that it discards *both* color and depth. So if your shader misses "ZTest off" you get "random" depth values for depth test and keep "random" color values from color buffer when the depth test fails. If you add "ZTest off" to your shader then it should work.
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Out-of-bounds memory access with multiple CanvasRenderers under a Canvas when using Mesh API
- Inspector tries to access file after it was deleted when the file was locked in Inspector window
- Changing Transform values in Search window Inspector loses focus while dragging and stopping mouse without releasing dragging action
- Saving changes on the dirty VFX Graph during the Play mode throws "The referenced script (Unknown) on this Behaviour is missing!" warnings
- VFX Graph Debug Info overlaps the "Initialize" block debug info by default
Resolution Note (2018.3.X):
Ztest is something you never use for "blit" shaders. Just add "ZTest off" to your shader (near ZWrite Off) and it will work.