BlendMode Structure

SFML.Net

BlendMode Structure
Blending modes for drawing

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public struct BlendMode : IEquatable<BlendMode>
Public Structure BlendMode
	Implements IEquatable(Of BlendMode)
public value class BlendMode : IEquatable<BlendMode>
[<SealedAttribute>]
type BlendMode =  
    struct
        interface IEquatable<BlendMode>
    end

The BlendMode type exposes the following members.

Constructors
  NameDescription
Public methodBlendMode(BlendModeFactor, BlendModeFactor)
Construct the blend mode given the factors and equation
Public methodBlendMode(BlendModeFactor, BlendModeFactor, BlendModeEquation)
Construct the blend mode given the factors and equation
Public methodBlendMode(BlendModeFactor, BlendModeFactor, BlendModeEquation, BlendModeFactor, BlendModeFactor, BlendModeEquation)
Construct the blend mode given the factors and equation
Top
Methods
  NameDescription
Public methodEquals(Object)
Compare blend mode and object and checks if they are equal
(Overrides ValueTypeEquals(Object).)
Public methodEquals(BlendMode)
Compare two blend modes and checks if they are equal
Public methodGetHashCode
Provide a integer describing the object
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Compare two blend modes and checks if they are equal
Public operatorStatic memberInequality
Compare two blend modes and checks if they are not equal
Top
Fields
  NameDescription
Public fieldStatic memberAdd
Add source to dest
Public fieldStatic memberAlpha
Blend source and dest according to dest alpha
Public fieldAlphaDstFactor
Destination blending factor for the alpha channel
Public fieldAlphaEquation
Blending equation for the alpha channel
Public fieldAlphaSrcFactor
Source blending factor for the alpha channel
Public fieldColorDstFactor
Destination blending factor for the color channels
Public fieldColorEquation
Blending equation for the color channels
Public fieldColorSrcFactor
Source blending factor for the color channels
Public fieldStatic memberMultiply
Multiply source and dest
Public fieldStatic memberNone
Overwrite dest with source
Top
See Also