summaryrefslogtreecommitdiffstatshomepage
path: root/bgfx/effects/default/blit.json
diff options
context:
space:
mode:
Diffstat (limited to 'bgfx/effects/default/blit.json')
-rw-r--r--bgfx/effects/default/blit.json21
1 files changed, 0 insertions, 21 deletions
diff --git a/bgfx/effects/default/blit.json b/bgfx/effects/default/blit.json
index ed957e812b3..a3c21f4c964 100644
--- a/bgfx/effects/default/blit.json
+++ b/bgfx/effects/default/blit.json
@@ -6,27 +6,6 @@
//
//============================================================
{
- // blend (required): The blend state for this effect.
- "blend": {
- // equation (optional): What equation to perform on the source and destination blend values.
- // values: "add", "sub", "revSub", "min", "max"
- // default: "add"
- //
- // "subtract" and "revSubtract" are provided as aliases for "sub" and "revSub"
- "equation": "add",
-
- // blend function parameters (optional): What factors to use in the blend function when calculating the final pixel.
- // values: "0", "1", "srccolor", "1-srccolor", "dstcolor", "1-dstcolor", "srcalpha", "1-srcalpha", "dstalpha", "1-dstalpha"
- // defaults (srcColor, srcAlpha): "1"
- // defaults (dstColor, dstAlpha): "0"
- //
- // "zero", "one", "invsrccolor", "invdstcolor", "invsrcalpha", and "invdstalpha" are provided as aliases for "0", "1", "1-srccolor", "1-dstcolor", "1-srcalpha", and "1-dstalpha"
- "srcColor": "srcalpha",
- "dstColor": "1-srcalpha",
- "srcAlpha": "srcalpha",
- "dstAlpha": "1-srcalpha"
- },
-
// depth (required): The depth state for this effect.
"depth": {
// function (optional): The depth function to use when drawing.