summaryrefslogtreecommitdiffstats
path: root/src/Render.cpp
diff options
context:
space:
mode:
authorLaG1924 <12997935+LaG1924@users.noreply.github.com>2019-01-27 11:10:15 +0100
committerLaG1924 <12997935+LaG1924@users.noreply.github.com>2019-01-27 11:10:15 +0100
commitda3df2fca7a55ae7ca8342816623bd9cb4d5f33b (patch)
treeef25c742afca6962647aa055f02548ce43f4c472 /src/Render.cpp
parentAdded const-keyword to World (diff)
downloadAltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar.gz
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar.bz2
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar.lz
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar.xz
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.tar.zst
AltCraft-da3df2fca7a55ae7ca8342816623bd9cb4d5f33b.zip
Diffstat (limited to 'src/Render.cpp')
-rw-r--r--src/Render.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Render.cpp b/src/Render.cpp
index a081dbb..cf108e4 100644
--- a/src/Render.cpp
+++ b/src/Render.cpp
@@ -399,6 +399,10 @@ void Render::RenderGui() {
"Culled sections: %d",
(int) DebugInfo::renderSections - world->culledSections);
+ ImGui::Text(
+ "Rendered faces: %d",
+ (int)DebugInfo::renderFaces);
+
ImGui::Text(
"Player pos: %.1f %.1f %.1f OnGround=%d",
playerPtr->pos.x,