summaryrefslogtreecommitdiffstats
path: root/examples/vulkan/hellovulkancubes/renderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/vulkan/hellovulkancubes/renderer.cpp')
-rw-r--r--examples/vulkan/hellovulkancubes/renderer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vulkan/hellovulkancubes/renderer.cpp b/examples/vulkan/hellovulkancubes/renderer.cpp
index da493de739..faf86bcbfc 100644
--- a/examples/vulkan/hellovulkancubes/renderer.cpp
+++ b/examples/vulkan/hellovulkancubes/renderer.cpp
@@ -96,7 +96,7 @@ Renderer::Renderer(VulkanWindow *w, int initialCount)
void Renderer::preInitResources()
{
- const QVector<int> sampleCounts = m_window->supportedSampleCounts();
+ const QList<int> sampleCounts = m_window->supportedSampleCounts();
if (DBG)
qDebug() << "Supported sample counts:" << sampleCounts;
if (sampleCounts.contains(4)) {