Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ Removes `enablePerformanceV2` option and makes this the default. The app start d

### Fixes

Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
- Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
- Fix rendering method for fast view rendering (#6360)

## 8.56.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import UIKit
let scale = (view as? UIWindow ?? view.window)?.screen.scale ?? 1
let image = SentryGraphicsImageRenderer(size: view.bounds.size, scale: scale).image { context in
if enableFastViewRendering {
view.layer.draw(in: context.cgContext)
view.layer.render(in: context.cgContext)
} else {
view.drawHierarchy(in: view.bounds, afterScreenUpdates: false)
}
Expand Down
Loading