From 16ad5f0cc870510fcf62221b15cae1accd4a0fb6 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 5 Apr 2021 21:53:19 +0200 Subject: [PATCH] - fixed sky rendering in palette emulation mode. The sky dome drawer cannot work with indexed textures, but since they are fullbright anyway we can just temporarily disable it. --- source/core/rendering/scene/hw_skyportal.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/core/rendering/scene/hw_skyportal.cpp b/source/core/rendering/scene/hw_skyportal.cpp index 22865de75..0d0e7260b 100644 --- a/source/core/rendering/scene/hw_skyportal.cpp +++ b/source/core/rendering/scene/hw_skyportal.cpp @@ -34,6 +34,8 @@ //----------------------------------------------------------------------------- void HWSkyPortal::DrawContents(HWDrawInfo *di, FRenderState &state) { + int indexed = hw_int_useindexedcolortextures; + hw_int_useindexedcolortextures = false; // this code does not work with indexed textures. bool drawBoth = false; auto &vp = di->Viewpoint; @@ -101,6 +103,7 @@ void HWSkyPortal::DrawContents(HWDrawInfo *di, FRenderState &state) //di->lightmode = oldlightmode; state.SetDepthClamp(oldClamp); -} + hw_int_useindexedcolortextures = indexed; + } const char *HWSkyPortal::GetName() { return "Sky"; }