このページでは

ColorAttachment QML Type

pass のカラーアタッチメントを定義します

Import Statement: import QtQuick3D
Since: Qt 6.11
Inherits:

Command

詳細説明

ColorAttachment 型は、RenderPass のカラーアタッチメントを指定するために使用されます。 name プロパティは、レンダーパス内でアタッチメントを識別するために使用されます。AugmentMaterial モードが使用されている場合、名前はフラグメントシェーダーのname 出力として公開されます。

RenderPass {
    // Define a render target texture
    RenderPassTexture {
        id: colorTexture
        format: RenderPassTexture.RGBA16F
    }

    commands: [
        // Define a color attachment using the texture
        ColorAttachment {
            name: "color0"
            target: colorTexture
        }
    ]
}

RenderPassTextureも参照してください

© 2026 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.