File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Sources/Swift/Core/Tools/ViewCapture Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1414
1515### Fixes
1616
17- Fixes warnings about minimum OS version being lower than Xcode supported version (#5591 )
17+ - Fixes warnings about minimum OS version being lower than Xcode supported version (#5591 )
18+ - Fix rendering method for fast view rendering (#6360 )
1819
1920## 8.56.2
2021
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import UIKit
1515 let scale = ( view as? UIWindow ?? view. window) ? . screen. scale ?? 1
1616 let image = SentryGraphicsImageRenderer ( size: view. bounds. size, scale: scale) . image { context in
1717 if enableFastViewRendering {
18- view. layer. draw ( in: context. cgContext)
18+ view. layer. render ( in: context. cgContext)
1919 } else {
2020 view. drawHierarchy ( in: view. bounds, afterScreenUpdates: false )
2121 }
You can’t perform that action at this time.
0 commit comments