Texture.blendMode - multiple declarations

Function Texture.blendMode

Sets the texture's blend mode Modes include:

void blendMode (
  derelict.sdl2.internal.sdl_types.SDL_BlendMode blend
) @property;

SDL BLENDMODE NONE

no blending

SDL BLENDMODE BLEND

alpha blending

SDL BLENDMODE ADD

additive blending

SDL BLENDMODE MOD

color modulate

Function Texture.blendMode

Gets the texture's blend mode Modes include:

derelict.sdl2.internal.sdl_types.SDL_BlendMode* blendMode() @property;

SDL BLENDMODE NONE

no blending

SDL BLENDMODE BLEND

alpha blending

SDL BLENDMODE ADD

additive blending

SDL BLENDMODE MOD

color modulate