From 7de25e3e5db4db522d710a737c76ddac4901b3df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Mon, 15 Aug 2016 02:04:10 +0200 Subject: [PATCH] Added missing text overlay to tesselation example. --- tessellation/tessellation.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tessellation/tessellation.cpp b/tessellation/tessellation.cpp index 158a1d94..ce682ec9 100644 --- a/tessellation/tessellation.cpp +++ b/tessellation/tessellation.cpp @@ -558,8 +558,10 @@ public: ss << std::setprecision(2) << std::fixed << uboTC.tessLevel; #if defined(__ANDROID__) textOverlay->addText("Tessellation level: " + ss.str() + " (Buttons L1/R1 to change)", 5.0f, 85.0f, VulkanTextOverlay::alignLeft); + textOverlay->addText("Press \"Button X\" to toggle splitscreen", 5.0f, 100.0f, VulkanTextOverlay::alignLeft); #else textOverlay->addText("Tessellation level: " + ss.str() + " (NUMPAD +/- to change)", 5.0f, 85.0f, VulkanTextOverlay::alignLeft); + textOverlay->addText("Press \"s\" to toggle splitscreen", 5.0f, 100.0f, VulkanTextOverlay::alignLeft); #endif }