We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7a3ea7 + 66d6870 commit 5507b3aCopy full SHA for 5507b3a
servers/rendering/rendering_device.cpp
@@ -2907,6 +2907,8 @@ RID RenderingDevice::framebuffer_create(const Vector<RID> &p_texture_attachments
2907
2908
if (texture && texture->usage_flags & TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT) {
2909
pass.depth_attachment = i;
2910
+ } else if (texture && texture->usage_flags & TEXTURE_USAGE_VRS_ATTACHMENT_BIT) {
2911
+ // Prevent the VRS attachment from being added to the color_attachments.
2912
} else {
2913
if (texture && texture->is_resolve_buffer) {
2914
pass.resolve_attachments.push_back(i);
0 commit comments