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