Init comit

This commit is contained in:
Gigaslav
2025-05-21 21:20:08 +03:00
parent c59edfa1ce
commit 9a283535e7
5961 changed files with 2343666 additions and 0 deletions

51
utils/vrad/origface.cpp Normal file
View File

@@ -0,0 +1,51 @@
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================//
#include "vrad.h"
bool bOrigFacesTouched[MAX_MAP_FACES];
//-----------------------------------------------------------------------------
// Pupose: clear (reset) the bOrigFacesTouched list -- parellels the original
// face list allowing an original face to only be processed once in
// pairing edges!
//-----------------------------------------------------------------------------
void ResetOrigFacesTouched( void )
{
for( int i = 0; i < MAX_MAP_FACES; i++ )
{
bOrigFacesTouched[i] = false;
}
}
//-----------------------------------------------------------------------------
// Purpose: mark an original faces as touched (dirty)
// Input: index - index of the original face touched
//-----------------------------------------------------------------------------
void SetOrigFaceTouched( int index )
{
bOrigFacesTouched[index] = true;
}
//-----------------------------------------------------------------------------
// Purpose: return whether or not an original face has been touched
// Input: index - index of the original face touched
// Output: true/false
//-----------------------------------------------------------------------------
bool IsOrigFaceTouched( int index )
{
return bOrigFacesTouched[index];
}