]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
zone: Print only memstats with the memstats command. Fixes dependence on the renderer...
authorcloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 5 Oct 2020 18:03:43 +0000 (18:03 +0000)
committercloudwalk <cloudwalk@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 5 Oct 2020 18:03:43 +0000 (18:03 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12993 d7cf8633-e32d-0410-b094-e92efae38249

zone.c

diff --git a/zone.c b/zone.c
index bba4ea3627f5e77d6d5889121e1ca10e4b423edb..8657a476ae37647262fa5bd27be042214207908e 100644 (file)
--- 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 <windows.h>
 #include <winbase.h>
@@ -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();
 }