aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIcecream95 <[email protected]>2020-06-25 22:48:32 +1200
committerMarge Bot <[email protected]>2020-07-15 01:30:00 +0000
commitbedd4b44de3a5c4a06899a86eb8094e8877338d6 (patch)
tree35029eee362051f99fe5e4fb7d7c2c780a1a2fcc /src
parent7f9039f0a894f50499c59ce834f2657ac8633b8d (diff)
compiler: Add dual-source factors to blend_factor
Reviewed-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5620>
Diffstat (limited to 'src')
-rw-r--r--src/compiler/shader_enums.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/shader_enums.h b/src/compiler/shader_enums.h
index 11cd3b5b1da..440d853aec5 100644
--- a/src/compiler/shader_enums.h
+++ b/src/compiler/shader_enums.h
@@ -806,8 +806,10 @@ enum blend_factor
{
BLEND_FACTOR_ZERO,
BLEND_FACTOR_SRC_COLOR,
+ BLEND_FACTOR_SRC1_COLOR,
BLEND_FACTOR_DST_COLOR,
BLEND_FACTOR_SRC_ALPHA,
+ BLEND_FACTOR_SRC1_ALPHA,
BLEND_FACTOR_DST_ALPHA,
BLEND_FACTOR_CONSTANT_COLOR,
BLEND_FACTOR_CONSTANT_ALPHA,