Merged R_DrawMaskedColumnHoriz into R_DrawMaskedColumn
This commit is contained in:
parent
2a0ab96341
commit
366d494b18
6 changed files with 49 additions and 128 deletions
|
|
@ -310,7 +310,7 @@ void DCanvas::DrawTextureParms(FTexture *img, DrawParms &parms)
|
|||
else
|
||||
pixels = img->GetColumn(frac >> FRACBITS, spanptr);
|
||||
|
||||
R_DrawMaskedColumn(pixels, spans);
|
||||
R_DrawMaskedColumn(pixels, spans, false);
|
||||
dc_x++;
|
||||
frac += xiscale_i;
|
||||
}
|
||||
|
|
@ -325,7 +325,7 @@ void DCanvas::DrawTextureParms(FTexture *img, DrawParms &parms)
|
|||
else
|
||||
pixels = img->GetColumn(frac >> FRACBITS, spanptr);
|
||||
|
||||
R_DrawMaskedColumnHoriz(pixels, spans);
|
||||
R_DrawMaskedColumn(pixels, spans, true);
|
||||
dc_x++;
|
||||
frac += xiscale_i;
|
||||
}
|
||||
|
|
@ -339,7 +339,7 @@ void DCanvas::DrawTextureParms(FTexture *img, DrawParms &parms)
|
|||
else
|
||||
pixels = img->GetColumn(frac >> FRACBITS, spanptr);
|
||||
|
||||
R_DrawMaskedColumn(pixels, spans);
|
||||
R_DrawMaskedColumn(pixels, spans, false);
|
||||
dc_x++;
|
||||
frac += xiscale_i;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue