什么是决心附件?
What is a resolve attachment?
Vulkan 规范说:
Resolve Attachment
A subpass attachment point, or image view, that is the target of a multisample resolve operation
from the corresponding color attachment at the end of the subpass.
我能得到一个更通俗易懂的关于什么是 Resolve Attachment 的描述吗?
解析多样本图像
在解析期间,对应于源中每个像素位置的样本在写入目标之前被转换为单个样本。如果源格式为 floating-point 或规范化类型,则每个像素的样本值将以 implementation-dependent 方式解析。如果源格式是整数类型,则为每个像素选择单个样本的值。
使用解析附件,您可以“缩减”图像。我认为这比在 renderpass 之后发出 vkCmdResolveImage
更有效。
Vulkan 规范说:
Resolve Attachment
A subpass attachment point, or image view, that is the target of a multisample resolve operation from the corresponding color attachment at the end of the subpass.
我能得到一个更通俗易懂的关于什么是 Resolve Attachment 的描述吗?
解析多样本图像
在解析期间,对应于源中每个像素位置的样本在写入目标之前被转换为单个样本。如果源格式为 floating-point 或规范化类型,则每个像素的样本值将以 implementation-dependent 方式解析。如果源格式是整数类型,则为每个像素选择单个样本的值。
使用解析附件,您可以“缩减”图像。我认为这比在 renderpass 之后发出 vkCmdResolveImage
更有效。