mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
Fix r_clearbuffer color not being used
This commit is contained in:
parent
3e01039bbb
commit
302f59ea33
2 changed files with 9 additions and 3 deletions
|
@ -116,6 +116,8 @@ public:
|
|||
bool mDrawingScene2D = false;
|
||||
float mCameraExposure = 1.0f;
|
||||
|
||||
float mSceneClearColor[3];
|
||||
|
||||
FGLRenderer(OpenGLFrameBuffer *fb);
|
||||
~FGLRenderer() ;
|
||||
|
||||
|
|
|
@ -178,7 +178,7 @@ void FGLRenderer::Set3DViewport(bool mainview)
|
|||
// This is faster on newer hardware because it allows the GPU to skip
|
||||
// reading from slower memory where the full buffers are stored.
|
||||
glDisable(GL_SCISSOR_TEST);
|
||||
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
||||
glClearColor(mSceneClearColor[0], mSceneClearColor[1], mSceneClearColor[2], 1.0f);
|
||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT);
|
||||
|
||||
const auto &bounds = mSceneViewport;
|
||||
|
@ -775,6 +775,9 @@ void FGLRenderer::SetFixedColormap (player_t *player)
|
|||
sector_t * FGLRenderer::RenderViewpoint (AActor * camera, GL_IRECT * bounds, float fov, float ratio, float fovratio, bool mainview, bool toscreen)
|
||||
{
|
||||
sector_t * retval;
|
||||
mSceneClearColor[0] = 0.0f;
|
||||
mSceneClearColor[1] = 0.0f;
|
||||
mSceneClearColor[2] = 0.0f;
|
||||
R_SetupFrame (camera);
|
||||
SetViewArea();
|
||||
|
||||
|
@ -1251,8 +1254,9 @@ int FGLInterface::GetMaxViewPitch(bool down)
|
|||
void FGLInterface::ClearBuffer(int color)
|
||||
{
|
||||
PalEntry pe = GPalette.BaseColors[color];
|
||||
glClearColor(pe.r/255.f, pe.g/255.f, pe.b/255.f, 1.f);
|
||||
glClear(GL_COLOR_BUFFER_BIT);
|
||||
GLRenderer->mSceneClearColor[0] = pe.r / 255.f;
|
||||
GLRenderer->mSceneClearColor[1] = pe.g / 255.f;
|
||||
GLRenderer->mSceneClearColor[2] = pe.b / 255.f;
|
||||
}
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Reference in a new issue