mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
Remove unused queue_wallcommand
This commit is contained in:
parent
78415461b9
commit
6512068005
1 changed files with 0 additions and 13 deletions
|
@ -1314,19 +1314,6 @@ DWORD vlinec1_rgba()
|
|||
return dc_texturefrac + dc_count * dc_iscale;
|
||||
}
|
||||
|
||||
template<typename NearestSimple, typename Nearest, typename LinearSimple, typename Linear>
|
||||
void queue_wallcommand()
|
||||
{
|
||||
if (bufplce2[0] == nullptr && dc_shade_constants.simple_shade)
|
||||
DrawerCommandQueue::QueueCommand<NearestSimple>();
|
||||
else if (bufplce2[0] == nullptr)
|
||||
DrawerCommandQueue::QueueCommand<Nearest>();
|
||||
else if (dc_shade_constants.simple_shade)
|
||||
DrawerCommandQueue::QueueCommand<LinearSimple>();
|
||||
else
|
||||
DrawerCommandQueue::QueueCommand<Linear>();
|
||||
}
|
||||
|
||||
void vlinec4_rgba()
|
||||
{
|
||||
DrawerCommandQueue::QueueCommand<DrawWall4LLVMCommand>();
|
||||
|
|
Loading…
Reference in a new issue