mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
Fix some typos
This commit is contained in:
parent
af330e1c41
commit
0083c3c5f0
2 changed files with 8 additions and 8 deletions
|
@ -1836,7 +1836,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -1900,7 +1900,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanMaskedPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanMaskedPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -1965,7 +1965,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanTranslucentPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanTranslucentPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -2028,7 +2028,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanMaskedTranslucentPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanMaskedTranslucentPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -2105,7 +2105,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanAddClampPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanAddClampPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -2174,7 +2174,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void DrawSpanMaskedAddClampPalCommand::Execute(DrawerThread *thread)
|
void DrawSpanMaskedAddClampPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
dsfixed_t xfrac;
|
dsfixed_t xfrac;
|
||||||
|
@ -2257,7 +2257,7 @@ namespace swrenderer
|
||||||
|
|
||||||
void FillSpanPalCommand::Execute(DrawerThread *thread)
|
void FillSpanPalCommand::Execute(DrawerThread *thread)
|
||||||
{
|
{
|
||||||
if (thread->skipped_by_thread(_y))
|
if (thread->line_skipped_by_thread(_y))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
memset(ylookup[_y] + _x1 + _destorg, _color, _x2 - _x1 + 1);
|
memset(ylookup[_y] + _x1 + _destorg, _color, _x2 - _x1 + 1);
|
||||||
|
|
|
@ -279,7 +279,7 @@ namespace swrenderer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void Execute(DrawerThread *thread) override;
|
void Execute(DrawerThread *thread) override;
|
||||||
FString DebugInfo() override { return "FillColumnHorizPalCommand"; }
|
FString DebugInfo() override { return "DrawColumnHorizPalCommand"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
class FillColumnHorizPalCommand : public PalColumnHorizCommand
|
class FillColumnHorizPalCommand : public PalColumnHorizCommand
|
||||||
|
|
Loading…
Reference in a new issue