Multi Window support in Rendering Manager and Display View

Important reshape of Rendering Manager to support creation of multiple output windows. The Display View is now designed to allow creating and manipulating output windows. Settings are incompatible with previous version.
This commit is contained in:
Bruno Herbelin
2023-02-26 23:04:38 +01:00
parent b11f6d5b3b
commit c3bb29182e
10 changed files with 961 additions and 684 deletions

View File

@@ -96,6 +96,8 @@ class GLFWwindow;
class Control
{
friend class RenderingWindow;
// Private Constructor
Control();
Control(Control const& copy) = delete;
@@ -151,6 +153,8 @@ protected:
void sendBatchStatus(const IpEndpointName& remoteEndpoint);
void sendOutputStatus(const IpEndpointName& remoteEndpoint);
static void keyboardCalback(GLFWwindow*, int, int, int, int);
private:
static void listen();
@@ -169,7 +173,6 @@ private:
int multitouch_active[INPUT_MULTITOUCH_COUNT];
glm::vec2 multitouch_values[INPUT_MULTITOUCH_COUNT];
static void keyboardCalback(GLFWwindow*, int, int, int, int);
};