summaryrefslogtreecommitdiffstats
path: root/src/gui/rhi/qrhi_p.h
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2020-06-22 11:44:14 +0200
committerJarek Kobus <jaroslaw.kobus@qt.io>2020-06-29 19:19:47 +0200
commit9fa3cf15c8500fba5bbb861f1925160815ae2afd (patch)
treef779e08446bf302803b27130cf4c92fe46ba68b6 /src/gui/rhi/qrhi_p.h
parentc70c4e42665eb34e677fc51a49552c9af3f58d7a (diff)
Use QList instead of QVector in gui
Applied to headers only. Source file to be changed separately. Task-number: QTBUG-84469 Change-Id: Ic08a899321eaffc46b8461aaee3dbaa4d2c727a9 Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
Diffstat (limited to 'src/gui/rhi/qrhi_p.h')
-rw-r--r--src/gui/rhi/qrhi_p.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/rhi/qrhi_p.h b/src/gui/rhi/qrhi_p.h
index 12fd3c46c2..c46aeb3618 100644
--- a/src/gui/rhi/qrhi_p.h
+++ b/src/gui/rhi/qrhi_p.h
@@ -51,7 +51,7 @@
#include <QtGui/qtguiglobal.h>
#include <QSize>
#include <QMatrix4x4>
-#include <QVector>
+#include <QList>
#include <QVarLengthArray>
#include <QThread>
#include <QColor>
@@ -1535,7 +1535,7 @@ public:
QRhiResourceUpdateBatch *nextResourceUpdateBatch();
- QVector<int> supportedSampleCounts() const;
+ QList<int> supportedSampleCounts() const;
int ubufAlignment() const;
int ubufAligned(int v) const;