1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 20:16:10 +08:00

First version of the SOurce SDK 2013

This commit is contained in:
Joe Ludwig
2013-06-26 15:22:04 -07:00
commit e7d6f4c174
3682 changed files with 1624327 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];
}