mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-23 04:22:27 +00:00
95 lines
2.4 KiB
C++
95 lines
2.4 KiB
C++
/*
|
|
===========================================================================
|
|
Copyright (C) 1999 - 2005, Id Software, Inc.
|
|
Copyright (C) 2000 - 2013, Raven Software, Inc.
|
|
Copyright (C) 2001 - 2013, Activision, Inc.
|
|
Copyright (C) 2013 - 2015, OpenJK contributors
|
|
|
|
This file is part of the OpenJK source code.
|
|
|
|
OpenJK is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 2 as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
===========================================================================
|
|
*/
|
|
|
|
// tr_subs.cpp - common function replacements for modular renderer
|
|
#include "tr_local.h"
|
|
|
|
void QDECL Com_Printf( const char *msg, ... )
|
|
{
|
|
va_list argptr;
|
|
char text[1024];
|
|
|
|
va_start(argptr, msg);
|
|
Q_vsnprintf(text, sizeof(text), msg, argptr);
|
|
va_end(argptr);
|
|
|
|
ri.Printf(PRINT_ALL, "%s", text);
|
|
}
|
|
|
|
void QDECL Com_OPrintf( const char *msg, ... )
|
|
{
|
|
va_list argptr;
|
|
char text[1024];
|
|
|
|
va_start(argptr, msg);
|
|
Q_vsnprintf(text, sizeof(text), msg, argptr);
|
|
va_end(argptr);
|
|
|
|
ri.OPrintf("%s", text);
|
|
}
|
|
|
|
void QDECL Com_Error( int level, const char *error, ... )
|
|
{
|
|
va_list argptr;
|
|
char text[1024];
|
|
|
|
va_start(argptr, error);
|
|
Q_vsnprintf(text, sizeof(text), error, argptr);
|
|
va_end(argptr);
|
|
|
|
ri.Error(level, "%s", text);
|
|
}
|
|
|
|
// HUNK
|
|
void *Hunk_AllocateTempMemory( int size ) {
|
|
return ri.Hunk_AllocateTempMemory( size );
|
|
}
|
|
|
|
void Hunk_FreeTempMemory( void *buf ) {
|
|
ri.Hunk_FreeTempMemory( buf );
|
|
}
|
|
|
|
void *Hunk_Alloc( int size, ha_pref preference ) {
|
|
return ri.Hunk_Alloc( size, preference );
|
|
}
|
|
|
|
int Hunk_MemoryRemaining( void ) {
|
|
return ri.Hunk_MemoryRemaining();
|
|
}
|
|
|
|
// ZONE
|
|
void *Z_Malloc( int iSize, memtag_t eTag, qboolean bZeroit, int iAlign ) {
|
|
return ri.Z_Malloc( iSize, eTag, bZeroit, iAlign );
|
|
}
|
|
|
|
void Z_Free( void *ptr ) {
|
|
ri.Z_Free( ptr );
|
|
}
|
|
|
|
int Z_MemSize( memtag_t eTag ) {
|
|
return ri.Z_MemSize( eTag );
|
|
}
|
|
|
|
void Z_MorphMallocTag( void *pvBuffer, memtag_t eDesiredTag ) {
|
|
ri.Z_MorphMallocTag( pvBuffer, eDesiredTag );
|
|
}
|