summaryrefslogtreecommitdiffstats
path: root/src/client/qwaylandscreen_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/qwaylandscreen_p.h')
-rw-r--r--src/client/qwaylandscreen_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/client/qwaylandscreen_p.h b/src/client/qwaylandscreen_p.h
index 674e1a913..37c35cfff 100644
--- a/src/client/qwaylandscreen_p.h
+++ b/src/client/qwaylandscreen_p.h
@@ -116,21 +116,21 @@ private:
void output_done() override;
int m_outputId;
- QWaylandDisplay *mWaylandDisplay;
+ QWaylandDisplay *mWaylandDisplay = nullptr;
QString mManufacturer;
QString mModel;
QRect mGeometry;
- int mScale;
- int mDepth;
- int mRefreshRate;
- int mTransform;
- QImage::Format mFormat;
+ int mScale = 1;
+ int mDepth = 32;
+ int mRefreshRate = 60000;
+ int mTransform = -1;
+ QImage::Format mFormat = QImage::Format_ARGB32_Premultiplied;
QSize mPhysicalSize;
QString mOutputName;
- Qt::ScreenOrientation m_orientation;
+ Qt::ScreenOrientation m_orientation = Qt::PrimaryOrientation;
#if QT_CONFIG(cursor)
- QWaylandCursor *mWaylandCursor;
+ QWaylandCursor *mWaylandCursor = nullptr;
#endif
};