- removed a few unused definitions.

This commit is contained in:
Christoph Oelckers 2017-02-07 10:55:59 +01:00
commit 4ca69f10c7
4 changed files with 3 additions and 25 deletions

View file

@ -103,7 +103,7 @@ double GetAlpha(int type, double alpha)
switch (type)
{
case STYLEALPHA_Zero: return 0;
case STYLEALPHA_One: return OPAQUE;
case STYLEALPHA_One: return 1.;
case STYLEALPHA_Src: return alpha;
case STYLEALPHA_InvSrc: return 1. - alpha;
default: return 0;