We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cb4ea8 commit 409bc91Copy full SHA for 409bc91
src/Uno.UI.Runtime.Skia.AppleUIKit/UI/Xaml/Window/RootViewController.cs
@@ -31,6 +31,10 @@ namespace Uno.UI.Runtime.Skia.AppleUIKit;
31
32
internal class RootViewController : UINavigationController, IAppleUIKitXamlRootHost
33
{
34
+#if __TVOS__
35
+ private readonly SkiaRenderHelper.FpsHelper _fpsHelper = new();
36
+#endif
37
+
38
private SkiaCanvas? _skCanvasView;
39
private XamlRoot? _xamlRoot;
40
private UIView? _textInputLayer;
@@ -136,8 +140,6 @@ private void OnPaintSurfaceInner(SKSurface surface)
136
140
_picture,
137
141
SKColors.Transparent,
138
142
_fpsHelper);
139
-
- UpdateNativeClipping(_clipPath);
143
}
144
#endif
145
0 commit comments