mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Rename remaining hw_sections*.*
files to hw_sections.*
.
This commit is contained in:
parent
520412075f
commit
95d60deecd
9 changed files with 8 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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());
|
||||
|
||||
|
||||
|
|
|
@ -692,7 +692,7 @@ static void ConstructSections(TArray<sectionbuildsector>& builders)
|
|||
//
|
||||
//==========================================================================
|
||||
|
||||
void hw_CreateSections2()
|
||||
void hw_CreateSections()
|
||||
{
|
||||
bugged.Clear();
|
||||
sectionArena.FreeAll();
|
|
@ -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.
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
#include "hw_sections.h"
|
||||
|
|
@ -724,7 +724,7 @@ void SerializeMap(FSerializer& arc)
|
|||
if (arc.isReading())
|
||||
{
|
||||
setWallSectors();
|
||||
hw_CreateSections2();
|
||||
hw_CreateSections();
|
||||
sectionGeometry.SetSize(sections.Size());
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue