ifdef mouse wayland impl

This commit is contained in:
vaxerski 2023-04-20 23:05:13 +01:00
parent 5c8992bafc
commit bab0e7b65f
2 changed files with 10 additions and 4 deletions

View File

@ -4,19 +4,21 @@
using namespace WallpaperEngine::Input;
CMouseInput::CMouseInput (GLFWwindow* window) : position (), m_mousePosition (), m_window (window) {}
#ifdef ENABLE_WAYLAND
CMouseInput::CMouseInput(WallpaperEngine::Render::Drivers::CWaylandOpenGLDriver* driver) {
waylandDriver = driver;
}
#endif
void CMouseInput::update ()
{
if (!m_window) {
#ifdef ENABLE_WAYLAND
if (!waylandDriver || !waylandDriver->lastLSInFocus)
return;
this->position = waylandDriver->lastLSInFocus->mousePos;
#endif
return;
}

View File

@ -1,6 +1,8 @@
#pragma once
#ifdef ENABLE_WAYLAND
#include "../Render/Drivers/CWaylandOpenGLDriver.h"
#endif
#include <glm/vec2.hpp>
#include "GLFW/glfw3.h"
@ -15,9 +17,9 @@ namespace WallpaperEngine::Input
{
public:
explicit CMouseInput(GLFWwindow* window);
#ifdef ENABLE_WAYLAND
explicit CMouseInput(WallpaperEngine::Render::Drivers::CWaylandOpenGLDriver* driver);
#endif
/**
* Takes current mouse position and updates it
@ -40,10 +42,12 @@ namespace WallpaperEngine::Input
*/
glm::dvec2 m_mousePosition;
#ifdef ENABLE_WAYLAND
/**
* Wayland: Driver
*/
WallpaperEngine::Render::Drivers::CWaylandOpenGLDriver* waylandDriver = nullptr;
#endif
};
}