Search Issue Tracker
By Design
Votes
0
Found in
2019.4
2020.3
2020.3.15f2c1
2021.1
2021.2
2022.1
Issue ID
1358948
Regression
No
[iOS] MSAA setting of the Camera is ignored when MSAA is enabled in the Quality settings
Reproduction steps:
1. Open the attached project "MSAA.zip"
2. Build and Deploy the Scene "SampleScene" to an iOS device
3. Capture the GPU frame and inspect the type of textures (See attached screenshots MSAA_Enabled.png and MSAA_Enabled_Alternate.png to see what to look at)
Expected result: MSAA is disabled
Actual result: MSAA is enabled
Reproducible with: 2019.4.29f1, 2020.3.17f1, 2021.1.18f1, 2021.2.0b9, 2022.1.0a5
Reproduced with:
iPhone 7 (iOS 12.3.1)
iPhone 12 Mini (iOS 14.1)
Could not test with:
iPhone 6 (iOS 12.4.8) (GPU Frame Capture fails)
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
- Incorrect initial target position when the Skinning Editor's "Depth" parameter is adjusted on a bone which is set as the "Effector" parameter on the "Limb Solver 2D" Component
- The order of activation for Water Deformers and Foam Generators will cause water artefacts in the Player
- Crash on `anonymous namespace'::PrepareTreesAndWriteWindParamsJobData::Execute when entering Play mode on a specific project
- [Linux] Crash on 'PPtr<RuntimeAnimatorController>::operator RuntimeAnimatorController*() const' when saving a new animation file
- Crash on CachedWriter::Write when building a specific project with a default runtime TSS
Resolution Note (2022.1.X):
In this case Quality Settings MSAA Setting controls the backbuffer sample count of the application and even if there is a single camera with MSAA disabled, it will still create multisampled backbuffer. Application assumes it's going to be used if it's enabled and recreating it would be pretty expensive. If there are multiple cameras in the scene, and one of them has MSAA for it disabled - all of the rendering done for that camera will be without MSAA.
So to sum it up - the final target will depend on the quality settings (at least on iOS)