Merge pull request #12232 from ColinSORourke/BlitShaderDefault

Correct TextureBlit Shader Documentation - Default Blend Mode
This commit is contained in:
Matthew
2026-08-03 18:39:01 -04:00
committed by GitHub

View File

@@ -18,19 +18,19 @@ which runs for every pixel of the source texture inside the rect given to
Render modes
------------
+---------------------------------+----------------------------------------------------------------------+
| Render mode | Description |
+=================================+======================================================================+
| **blend_mix** | Mix blend mode (alpha is transparency), default. |
+---------------------------------+----------------------------------------------------------------------+
| **blend_add** | Additive blend mode. |
+---------------------------------+----------------------------------------------------------------------+
| **blend_sub** | Subtractive blend mode. |
+---------------------------------+----------------------------------------------------------------------+
| **blend_mul** | Multiplicative blend mode. |
+---------------------------------+----------------------------------------------------------------------+
| **blend_disabled** | Disable blending, values (including alpha) are written as-is. |
+---------------------------------+----------------------------------------------------------------------+
+---------------------------------+-------------------------------------------------------------------------+
| Render mode | Description |
+=================================+=========================================================================+
| **blend_disabled** | Disable blending, values (including alpha) are written as-is. Default. |
+---------------------------------+-------------------------------------------------------------------------+
| **blend_mix** | Mix blend mode (alpha is transparency). |
+---------------------------------+-------------------------------------------------------------------------+
| **blend_add** | Additive blend mode. |
+---------------------------------+-------------------------------------------------------------------------+
| **blend_sub** | Subtractive blend mode. |
+---------------------------------+-------------------------------------------------------------------------+
| **blend_mul** | Multiplicative blend mode. |
+---------------------------------+-------------------------------------------------------------------------+
.. note::