alphaBlendMV

Alpha-blending with per pixel + fix master value alpha. value controls the overall alpha through extra multiplications on the alpha extracted from the pixels. 3 operator.

  1. void alphaBlendMV(uint* src, uint* dest, size_t length, V value)
  2. void alphaBlendMV(uint* src, uint* dest, uint* dest0, size_t length, V value)
  3. void alphaBlendMV(uint* src, uint* dest, size_t length, M* mask, V value)
  4. void alphaBlendMV(uint* src, uint* dest, uint* dest0, size_t length, M* mask, V value)
    @nogc pure nothrow
    void
    alphaBlendMV
    (
    V
    M
    )
    (
    uint* src
    ,
    uint* dest
    ,
    uint* dest0
    ,
    size_t length
    ,
    M* mask
    ,)

Meta