summaryrefslogtreecommitdiffstats
path: root/doc/classes/RDPipelineColorBlendStateAttachment.xml
diff options
context:
space:
mode:
authorAllen Pestaluky <allenpestaluky@gmail.com>2023-05-26 10:50:35 -0400
committerAllen Pestaluky <allenpestaluky@gmail.com>2023-05-26 10:50:35 -0400
commit4e19f34856e9499735c1ed5c55c6b2a503ab9651 (patch)
tree160bcc29a74d2eec0e148bd4788b35b77b3611dc /doc/classes/RDPipelineColorBlendStateAttachment.xml
parentd984ad64d440320e40e85dbcb79b8e9240f75493 (diff)
downloadredot-engine-4e19f34856e9499735c1ed5c55c6b2a503ab9651.tar.gz
Changed Subtract blend mode of Forward+ and Mobile renderers to match behaviour of the Godot 3 and Compatibility renderers
The OpenGL implementation has used GL_FUNC_REVERSE_SUBTRACT for a long time, but the new RenderingDevice abstraction used by the Vulkan renderers had been mistakenly set to BLEND_OP_SUBTRACT instead of BLEND_OP_REVERSE_SUBTRACT. Fixes #77448
Diffstat (limited to 'doc/classes/RDPipelineColorBlendStateAttachment.xml')
-rw-r--r--doc/classes/RDPipelineColorBlendStateAttachment.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/RDPipelineColorBlendStateAttachment.xml b/doc/classes/RDPipelineColorBlendStateAttachment.xml
index 4892536814..783c8b1864 100644
--- a/doc/classes/RDPipelineColorBlendStateAttachment.xml
+++ b/doc/classes/RDPipelineColorBlendStateAttachment.xml
@@ -32,8 +32,8 @@
[codeblock]
var attachment = RDPipelineColorBlendStateAttachment.new()
attachment.enable_blend = true
- attachment.alpha_blend_op = RenderingDevice.BLEND_OP_SUBTRACT
- attachment.color_blend_op = RenderingDevice.BLEND_OP_SUBTRACT
+ attachment.alpha_blend_op = RenderingDevice.BLEND_OP_REVERSE_SUBTRACT
+ attachment.color_blend_op = RenderingDevice.BLEND_OP_REVERSE_SUBTRACT
attachment.src_color_blend_factor = RenderingDevice.BLEND_FACTOR_SRC_ALPHA
attachment.dst_color_blend_factor = RenderingDevice.BLEND_FACTOR_ONE
attachment.src_alpha_blend_factor = RenderingDevice.BLEND_FACTOR_SRC_ALPHA