Add drawer commands for pal mode

This commit is contained in:
Magnus Norddahl 2016-12-05 10:44:24 +01:00
commit dfbd7fd2ad
6 changed files with 795 additions and 71 deletions

113
src/r_drawt_pal.cpp Normal file
View file

@ -0,0 +1,113 @@
#include "templates.h"
#include "doomtype.h"
#include "doomdef.h"
#include "r_defs.h"
#include "r_draw.h"
#include "r_main.h"
#include "r_things.h"
#include "v_video.h"
#include "r_draw_pal.h"
namespace swrenderer
{
PalRtCommand::PalRtCommand(int hx, int sx, int yl, int yh)
{
}
void FillColumnHorizPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1CopyPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1PalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4PalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1TranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4TranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1AddPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4AddPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1AddTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4AddTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1ShadedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4ShadedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1AddClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4AddClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1AddClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4AddClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1SubClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4SubClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1SubClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4SubClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1RevSubClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4RevSubClampPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt1RevSubClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
void DrawColumnRt4RevSubClampTranslatedPalCommand::Execute(DrawerThread *thread)
{
}
}