From 11dec6fc0fe1d2e95ae63b555dff2450b57e9c99 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 17 Aug 2020 22:09:15 -0400 Subject: [PATCH] Avoids a redundant clear. --- OSBindings/Mac/Clock Signal/ScanTarget/CSScanTarget.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OSBindings/Mac/Clock Signal/ScanTarget/CSScanTarget.mm b/OSBindings/Mac/Clock Signal/ScanTarget/CSScanTarget.mm index ed73e99f9..6a049b065 100644 --- a/OSBindings/Mac/Clock Signal/ScanTarget/CSScanTarget.mm +++ b/OSBindings/Mac/Clock Signal/ScanTarget/CSScanTarget.mm @@ -448,6 +448,9 @@ using BufferingScanTarget = Outputs::Display::BufferingScanTarget; - (void)drawInMTKView:(nonnull MTKView *)view { // Schedule a copy from the current framebuffer to the view; blitting is unavailable as the target is a framebuffer texture. id commandBuffer = [_commandQueue commandBuffer]; + + // Every pixel will be drawn, so don't clear or reload. + view.currentRenderPassDescriptor.colorAttachments[0].loadAction = MTLLoadActionDontCare; id encoder = [commandBuffer renderCommandEncoderWithDescriptor:view.currentRenderPassDescriptor]; [encoder setRenderPipelineState:_copyPipeline];