From b88e19af6961f6c180afee7f9c26a5ba1f91facf Mon Sep 17 00:00:00 2001
From: Sebastian Pape <pape@vr.rwth-aachen.de>
Date: Mon, 26 Aug 2024 17:42:43 +0200
Subject: [PATCH] Debugging: Testing if cluster events are executed async on
 all machines or sync, by disabling the dasher rendering on receive as it is
 the only part that takes time on the receiving side

---
 Source/DasherVR/Private/SDasherWidget.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Source/DasherVR/Private/SDasherWidget.cpp b/Source/DasherVR/Private/SDasherWidget.cpp
index fa9f59f..4b3e216 100644
--- a/Source/DasherVR/Private/SDasherWidget.cpp
+++ b/Source/DasherVR/Private/SDasherWidget.cpp
@@ -158,7 +158,7 @@ void SDasherWidget::HandleClusterEvent(const FDisplayClusterClusterEventBinary&
         FMemory::Memcpy(&CursorPosition.x, Event.EventData.GetData() + sizeof(currentTime), sizeof(CursorPosition.x));
         FMemory::Memcpy(&CursorPosition.y, Event.EventData.GetData() + sizeof(currentTime) + sizeof(CursorPosition.x), sizeof(CursorPosition.y));
 
-        DasherMainInterface->Tick(static_cast<unsigned long>(currentTime * 1000.0));
+        //DasherMainInterface->Tick(static_cast<unsigned long>(currentTime * 1000.0));
 	    break;
     }
 }
-- 
GitLab