- Rename remaining hw_sections*.* files to hw_sections.*.

This commit is contained in:
Mitchell Richters 2021-12-16 16:10:59 +11:00 committed by Christoph Oelckers
parent 520412075f
commit 95d60deecd
9 changed files with 8 additions and 10 deletions

View file

@ -1058,7 +1058,7 @@ set (PCH_SOURCES
core/rendering/hw_models.cpp
core/rendering/hw_voxels.cpp
core/rendering/hw_palmanager.cpp
core/rendering/hw_sections2.cpp
core/rendering/hw_sections.cpp
core/rendering/scene/hw_clipper.cpp
core/rendering/scene/hw_walls.cpp
core/rendering/scene/hw_flats.cpp

View file

@ -45,7 +45,7 @@ Modifications for JonoF's port by Jonathon Fowler (jf@jonof.id.au)
#include "v_draw.h"
#include "sectorgeometry.h"
#include "gamefuncs.h"
#include "hw_sections2.h"
#include "hw_sections.h"
#include "coreactor.h"
CVAR(Bool, am_followplayer, true, CVAR_ARCHIVE)
CVAR(Bool, am_rotate, true, CVAR_ARCHIVE)

View file

@ -488,7 +488,7 @@ void engineLoadBoard(const char* filename, int flags, vec3_t* pos, int16_t* ang,
md4once(buffer.Data(), buffer.Size(), md4);
G_LoadMapHack(filename, md4, sprites);
setWallSectors();
hw_CreateSections2();
hw_CreateSections();
sectionGeometry.SetSize(sections.Size());

View file

@ -692,7 +692,7 @@ static void ConstructSections(TArray<sectionbuildsector>& builders)
//
//==========================================================================
void hw_CreateSections2()
void hw_CreateSections()
{
bugged.Clear();
sectionArena.FreeAll();

View file

@ -52,7 +52,7 @@ struct Section
extern TArray<Section> sections;
extern TArrayView<TArrayView<Section*>> sectionsPerSector;
void hw_CreateSections2();
void hw_CreateSections();
using Outline = TArray<TArray<vec2_t>>;
using Point = std::pair<float, float>;
using FOutline = std::vector<std::vector<Point>>; // Data type was chosen so it can be passed directly into Earcut.

View file

@ -1,2 +0,0 @@
#include "hw_sections.h"

View file

@ -724,7 +724,7 @@ void SerializeMap(FSerializer& arc)
if (arc.isReading())
{
setWallSectors();
hw_CreateSections2();
hw_CreateSections();
sectionGeometry.SetSize(sections.Size());
}
}

View file

@ -40,7 +40,7 @@
#include "gamefuncs.h"
#include "texturemanager.h"
#include "earcut.hpp"
#include "hw_sections2.h"
#include "hw_sections.h"
#include "tesselator.h"
SectionGeometry sectionGeometry;

View file

@ -723,7 +723,7 @@ void dbLoadMap(const char* pPath, int* pX, int* pY, int* pZ, short* pAngle, sect
}
setWallSectors();
hw_CreateSections2();
hw_CreateSections();
sectionGeometry.SetSize(sections.Size());
wallbackup = wall;
sectorbackup = sector;