In my XNA project I use non-processed images and draw them with BlendState.NonPremultiplied
so they look normal around the edges. But when I use non-white color (Color.FromNonPremultiplied(12, 34, 56, 78)
) in SpriteBatch.Draw
method, it doesn't tint the sprite as it would if the BlendState
was set to default.
How do I achieve the same tinting as default blendstate allows without switching to it?