From: cloudwalk Date: Mon, 5 Oct 2020 18:03:43 +0000 (+0000) Subject: zone: Print only memstats with the memstats command. Fixes dependence on the renderer... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=56b6e01c983ab9bf2ddd564902463e32b6d37199;p=xonotic%2Fdarkplaces.git zone: Print only memstats with the memstats command. Fixes dependence on the renderer to compile zone.c git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12993 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/zone.c b/zone.c index bba4ea36..8657a476 100644 --- a/zone.c +++ b/zone.c @@ -21,9 +21,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "darkplaces.h" -void R_TextureStats_Print(qbool, qbool, qbool); -void GL_Mesh_ListVBOs(qbool); - #ifdef WIN32 #include #include @@ -866,8 +863,6 @@ static void MemList_f(cmd_state_t *cmd) static void MemStats_f(cmd_state_t *cmd) { Mem_CheckSentinelsGlobal(); - R_TextureStats_Print(false, false, true); - GL_Mesh_ListVBOs(false); Mem_PrintStats(); }