- Untested wipe refactor

# Conflicts:
#	src/gl/renderer/gl_renderer.cpp
#	src/gl/system/gl_wipe.cpp
#	src/hwrenderer/scene/hw_attributebuffer.cpp
This commit is contained in:
Christoph Oelckers 2018-08-28 15:11:35 +02:00
commit 9af01c4667
11 changed files with 363 additions and 517 deletions

View file

@ -320,9 +320,9 @@ void DFrameBuffer::SetVSync (bool vsync)
//
//==========================================================================
bool DFrameBuffer::WipeStartScreen(int type)
FTexture *DFrameBuffer::WipeStartScreen()
{
return false;
return nullptr;
}
//==========================================================================
@ -334,8 +334,9 @@ bool DFrameBuffer::WipeStartScreen(int type)
//
//==========================================================================
void DFrameBuffer::WipeEndScreen()
FTexture *DFrameBuffer::WipeEndScreen()
{
return nullptr;
}
//==========================================================================