r_speeds is no longer cheat-protected

This commit is contained in:
myT 2020-04-28 17:20:02 +02:00
parent 1994475982
commit 1cf28d87fe
2 changed files with 3 additions and 2 deletions

View file

@ -142,7 +142,8 @@ chg: r_textureMode <filter> (default: "best") is now latched and only supports 2
chg: removed the following CVars: r_measureOverdraw, r_nobind, r_showImages
chg: r_speeds 1 now reports more precise timings, V-Sync status, GPU time and the selected back-end
chg: r_speeds is no longer cheat-protected
it now also reports more precise timings, V-Sync status, GPU time and the selected back-end
chg: using the roundss SSE4.1 instruction for inlining floor and ceil syscalls when possible

View file

@ -428,7 +428,7 @@ static const cvarTableItem_t r_cvars[] =
{ &r_drawentities, "r_drawentities", "1", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "enables entity rendering" },
{ &r_nocull, "r_nocull", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "disables frustum culling" },
{ &r_novis, "r_novis", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "disables PVS usage" },
{ &r_speeds, "r_speeds", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "draws rendering performance counters" },
{ &r_speeds, "r_speeds", "0", CVAR_TEMP, CVART_BOOL, NULL, NULL, "draws rendering performance counters" },
{ &r_verbose, "r_verbose", "0", CVAR_TEMP, CVART_BOOL, NULL, NULL, "prints additional information" },
{ &r_debugSurface, "r_debugSurface", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "draws collision models" },
{ &r_showtris, "r_showtris", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "draws wireframe triangles" },