- removed the unused BaseBlend* variables and the testblend CCMD.

When this was still working it was software rendering only anyway so no real loss here.
This commit is contained in:
Christoph Oelckers 2022-11-08 11:46:13 +01:00
commit 706d465781
4 changed files with 0 additions and 54 deletions

View file

@ -1058,18 +1058,6 @@ void R_SetupFrame (FRenderViewpoint &viewpoint, FViewWindow &viewwindow, AActor
if (R_OldBlend != newblend)
{
R_OldBlend = newblend;
if (APART(newblend))
{
BaseBlendR = RPART(newblend);
BaseBlendG = GPART(newblend);
BaseBlendB = BPART(newblend);
BaseBlendA = APART(newblend) / 255.f;
}
else
{
BaseBlendR = BaseBlendG = BaseBlendB = 0;
BaseBlendA = 0.f;
}
}
validcount++;