From 63d721390447437d4d251d5bb09d3c8f50845e92 Mon Sep 17 00:00:00 2001 From: slangbot <186143334+slangbot@users.noreply.github.com> Date: Thu, 3 Jul 2025 00:33:41 +0000 Subject: [PATCH] format code --- source/slang/slang-emit-metal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/slang/slang-emit-metal.cpp b/source/slang/slang-emit-metal.cpp index c65c58d658e..9232fc95dbb 100644 --- a/source/slang/slang-emit-metal.cpp +++ b/source/slang/slang-emit-metal.cpp @@ -138,8 +138,8 @@ void MetalSourceEmitter::_emitHLSLTextureType(IRTextureTypeBase* texType) { case SLANG_RESOURCE_ACCESS_READ: { - // Metal does not support access::sample for texture buffers and multisampled textures, so we need to emit - // access::read instead. + // Metal does not support access::sample for texture buffers and multisampled textures, + // so we need to emit access::read instead. if (texType->GetBaseShape() == SLANG_TEXTURE_BUFFER || texType->isMultisample()) m_writer->emit("access::read"); else