Restore support for alphaBlendingFlag value gdEffectAlphaBlend

master
Nathanael Jones 2014-09-03 22:11:29 +00:00
parent 31ff666946
commit 08eb6ee8e9
1 changed files with 1 additions and 0 deletions

View File

@ -1066,6 +1066,7 @@ BGD_DECLARE(void) gdImageSetPixel (gdImagePtr im, int x, int y, int color)
case gdEffectReplace:
im->tpixels[y][x] = color;
break;
case gdEffectAlphaBlend:
case gdEffectNormal:
im->tpixels[y][x] = gdAlphaBlend(im->tpixels[y][x], color);
break;