Skip to content

Commit

Permalink
Fix BlendMode.Blend source alpha factor
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Oct 9, 2023
1 parent 7d60a7d commit b8fa49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aardvark.Rendering/Pipeline/Modes/BlendMode.fs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ type BlendMode =
static member Blend =
{ Enabled = true
SourceColorFactor = BlendFactor.SourceAlpha
SourceAlphaFactor = BlendFactor.SourceAlpha
SourceAlphaFactor = BlendFactor.One
DestinationColorFactor = BlendFactor.InvSourceAlpha
DestinationAlphaFactor = BlendFactor.InvSourceAlpha
ColorOperation = BlendOperation.Add
Expand Down

0 comments on commit b8fa49c

Please sign in to comment.