Initial commit

This commit is contained in:
Eagle517
2025-02-17 23:17:30 -06:00
commit 7cad314c94
4726 changed files with 1145203 additions and 0 deletions

15
engine/util/safeDelete.h Executable file
View File

@@ -0,0 +1,15 @@
//-----------------------------------------------------------------------------
// Torque Shader Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
// Utility macros. We clobber to enforce our semantics!
#undef SAFE_DELETE
#define SAFE_DELETE(a) if( (a) != NULL ) delete (a); (a) = NULL;
#undef SAFE_DELETE_ARRAY
#define SAFE_DELETE_ARRAY(a) if( (a) != NULL ) delete [] (a); (a) = NULL;
#undef SAFE_FREE
#define SAFE_FREE(a) if( (a) != NULL ) dFree (a); (a) = NULL;