From 0ad3a417d87f1bb768b0d8c73a61c77cd21ce9e3 Mon Sep 17 00:00:00 2001 From: Anselme Date: Mon, 9 Oct 2017 11:58:27 +0200 Subject: [PATCH] added missing getter --- src/deferredpipeline.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/deferredpipeline.h b/src/deferredpipeline.h index c7554fc..8e93450 100644 --- a/src/deferredpipeline.h +++ b/src/deferredpipeline.h @@ -91,6 +91,7 @@ public: glm::vec4 pick(int x, int y); void toggleDebugGui() { m_debugGuiEnabled = !m_debugGuiEnabled; } + bool isDebugGuiVisible() { return m_debugGuiEnabled; } }; #endif // DEFERREDPIPELINE_H