diff --git a/radiant/camera/CamWnd.cpp b/radiant/camera/CamWnd.cpp index f0fe08b152..58d2c990f1 100644 --- a/radiant/camera/CamWnd.cpp +++ b/radiant/camera/CamWnd.cpp @@ -895,13 +895,14 @@ void CamWnd::Cam_Draw() glEnd(); } - glRasterPos3f(1.0f, static_cast(_camera.height) - 1.0f, 0.0f); - - GlobalOpenGL().drawString(_renderStats.getStatString()); - - glRasterPos3f(1.0f, static_cast(_camera.height) - 11.0f, 0.0f); - - GlobalOpenGL().drawString(render::View::getCullStats()); + // Render the stats and timing text. This may include culling stats in + // debug builds. + glRasterPos3f(4.0f, static_cast(_camera.height) - 4.0f, 0.0f); + std::string statString = render::View::getCullStats(); + if (!statString.empty()) + statString += " | "; + statString += _renderStats.getStatString(); + GlobalOpenGL().drawString(statString); drawTime(); diff --git a/radiant/render/OpenGLModule.cpp b/radiant/render/OpenGLModule.cpp index 58294f59e9..7d13129a89 100644 --- a/radiant/render/OpenGLModule.cpp +++ b/radiant/render/OpenGLModule.cpp @@ -78,7 +78,7 @@ void OpenGLModule::sharedContextCreated() } // Initialise the font before firing the extension initialised signal - _font.reset(new wxutil::GLFont(wxutil::GLFont::FONT_SANS, 12)); + _font.reset(new wxutil::GLFont(wxutil::GLFont::FONT_SANS, 14)); // This call will automatically realise the render system GlobalRenderSystem().extensionsInitialised();