From 671e13c9c9744c80bec4f8cf98a9d698faed9a81 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Fri, 31 May 2024 18:58:32 +0400 Subject: [PATCH] Fix build --- submodules/TelegramCallsUI/Sources/VideoRenderingContext.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/TelegramCallsUI/Sources/VideoRenderingContext.swift b/submodules/TelegramCallsUI/Sources/VideoRenderingContext.swift index 8ea5045fed..59256f13e7 100644 --- a/submodules/TelegramCallsUI/Sources/VideoRenderingContext.swift +++ b/submodules/TelegramCallsUI/Sources/VideoRenderingContext.swift @@ -45,7 +45,7 @@ class VideoRenderingContext { return SampleBufferVideoRenderingView(input: input) #else if #available(iOS 13.0, *), !forceSampleBufferDisplayLayer { - return MetalVideoRenderingView(renderingContext: self.metalContext, input: input, blur: blur) + return MetalVideoRenderingView(renderingContext: self.metalContext, input: input, blur: false) } else { return SampleBufferVideoRenderingView(input: input) }