mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
Add support for gl_multithread while gl_meshcache is active
Stop building geometry for lines that have a portal (when gl_meshcache is active)
This commit is contained in:
parent
256dd8fa3d
commit
f8f9cf707b
2 changed files with 35 additions and 18 deletions
|
@ -142,10 +142,6 @@ void HWDrawInfo::WorkerThread()
|
|||
|
||||
case RenderJob::WallJob:
|
||||
{
|
||||
HWWall wall;
|
||||
SetupWall.Clock();
|
||||
wall.sub = job->sub;
|
||||
|
||||
front = hw_FakeFlat(drawctx, job->sub->sector, in_area, false);
|
||||
auto seg = job->seg;
|
||||
auto backsector = seg->backsector;
|
||||
|
@ -173,9 +169,23 @@ void HWDrawInfo::WorkerThread()
|
|||
}
|
||||
else back = nullptr;
|
||||
|
||||
wall.Process(this, state, job->seg, front, back);
|
||||
rendered_lines++;
|
||||
SetupWall.Unclock();
|
||||
if (MeshBSP)
|
||||
{
|
||||
SetupWall.Clock();
|
||||
HWPortalWall portalwall;
|
||||
portalwall.Process(this, state, job->seg, front, back);
|
||||
rendered_lines++;
|
||||
SetupWall.Unclock();
|
||||
}
|
||||
else
|
||||
{
|
||||
HWWall wall;
|
||||
SetupWall.Clock();
|
||||
wall.sub = job->sub;
|
||||
wall.Process(this, state, job->seg, front, back);
|
||||
rendered_lines++;
|
||||
SetupWall.Unclock();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -743,17 +753,20 @@ void HWDrawInfo::DoSubsector(subsector_t * sub, FRenderState& state)
|
|||
{
|
||||
srf |= SSRF_PROCESSED;
|
||||
|
||||
if (multithread)
|
||||
if (!MeshBSP)
|
||||
{
|
||||
jobQueue.AddJob(RenderJob::FlatJob, sub);
|
||||
}
|
||||
else if (!MeshBSP)
|
||||
{
|
||||
HWFlat flat;
|
||||
flat.section = sub->section;
|
||||
SetupFlat.Clock();
|
||||
flat.ProcessSector(this, state, fakesector);
|
||||
SetupFlat.Unclock();
|
||||
if (multithread)
|
||||
{
|
||||
jobQueue.AddJob(RenderJob::FlatJob, sub);
|
||||
}
|
||||
else
|
||||
{
|
||||
HWFlat flat;
|
||||
flat.section = sub->section;
|
||||
SetupFlat.Clock();
|
||||
flat.ProcessSector(this, state, fakesector);
|
||||
SetupFlat.Unclock();
|
||||
}
|
||||
}
|
||||
}
|
||||
// mark subsector as processed - but mark for rendering only if it has an actual area.
|
||||
|
@ -854,7 +867,7 @@ void HWDrawInfo::RenderBSP(void *node, bool drawpsprites, FRenderState& state)
|
|||
validcount++; // used for processing sidedefs only once by the renderer.
|
||||
|
||||
MeshBSP = gl_meshcache;
|
||||
multithread = gl_multithread && !MeshBSP;
|
||||
multithread = gl_multithread;
|
||||
if (multithread)
|
||||
{
|
||||
jobQueue.ReleaseAll();
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#include "hw_renderstate.h"
|
||||
#include "hw_skydome.h"
|
||||
|
||||
EXTERN_CVAR(Bool, gl_meshcache);
|
||||
|
||||
void SetGlowPlanes(FRenderState &state, const secplane_t& top, const secplane_t& bottom)
|
||||
{
|
||||
|
@ -492,6 +493,9 @@ const char HWWall::passflag[] = {
|
|||
//==========================================================================
|
||||
void HWWall::PutWall(HWDrawInfo *di, FRenderState& state, bool translucent)
|
||||
{
|
||||
if (gl_meshcache && !di->MeshBuilding) // Don't draw walls when only collecting portals
|
||||
return;
|
||||
|
||||
if (texture && texture->GetTranslucency() && passflag[type] == 2)
|
||||
{
|
||||
translucent = true;
|
||||
|
|
Loading…
Reference in a new issue