x11: Remove unused field in EglOnXBackend
This commit is contained in:
parent
4dd9b0f15b
commit
b81f16fbd5
2 changed files with 0 additions and 3 deletions
|
@ -31,7 +31,6 @@ EglOnXBackend::EglOnXBackend(Display *display)
|
||||||
, m_connection(connection())
|
, m_connection(connection())
|
||||||
, m_x11Display(display)
|
, m_x11Display(display)
|
||||||
, m_rootWindow(rootWindow())
|
, m_rootWindow(rootWindow())
|
||||||
, m_x11ScreenNumber(kwinApp()->x11ScreenNumber())
|
|
||||||
{
|
{
|
||||||
// Egl is always direct rendering
|
// Egl is always direct rendering
|
||||||
setIsDirectRendering(true);
|
setIsDirectRendering(true);
|
||||||
|
@ -44,7 +43,6 @@ EglOnXBackend::EglOnXBackend(xcb_connection_t *connection, Display *display, xcb
|
||||||
, m_connection(connection)
|
, m_connection(connection)
|
||||||
, m_x11Display(display)
|
, m_x11Display(display)
|
||||||
, m_rootWindow(rootWindow)
|
, m_rootWindow(rootWindow)
|
||||||
, m_x11ScreenNumber(screenNumber)
|
|
||||||
, m_renderingWindow(renderingWindow)
|
, m_renderingWindow(renderingWindow)
|
||||||
{
|
{
|
||||||
// Egl is always direct rendering
|
// Egl is always direct rendering
|
||||||
|
|
|
@ -60,7 +60,6 @@ private:
|
||||||
xcb_connection_t *m_connection;
|
xcb_connection_t *m_connection;
|
||||||
Display *m_x11Display;
|
Display *m_x11Display;
|
||||||
xcb_window_t m_rootWindow;
|
xcb_window_t m_rootWindow;
|
||||||
int m_x11ScreenNumber;
|
|
||||||
xcb_window_t m_renderingWindow = XCB_WINDOW_NONE;
|
xcb_window_t m_renderingWindow = XCB_WINDOW_NONE;
|
||||||
bool m_havePlatformBase = false;
|
bool m_havePlatformBase = false;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue