[][src]Function fermium::SDL_ComposeCustomBlendMode

pub unsafe extern "C" fn SDL_ComposeCustomBlendMode(
    srcColorFactor: Type,
    dstColorFactor: Type,
    colorOperation: Type,
    srcAlphaFactor: Type,
    dstAlphaFactor: Type,
    alphaOperation: Type
) -> Type

\brief Create a custom blend mode, which may or may not be supported by a given renderer

\param srcColorFactor \param dstColorFactor \param colorOperation \param srcAlphaFactor \param dstAlphaFactor \param alphaOperation

The result of the blend mode operation will be: dstRGB = dstRGB * dstColorFactor colorOperation srcRGB * srcColorFactor and dstA = dstA * dstAlphaFactor alphaOperation srcA * srcAlphaFactor