From c9d1d4c33c4d2f0f4fd13b225f6d7d39e7093401 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Thu, 7 Jul 2022 13:07:32 +0200 Subject: [PATCH] rhi: Fix a manual test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ...that uses the old name after a recent change in the name of a function. Change-Id: Ife36fbb0c5d28b350cb1cfc48625528a205af8f9 Reviewed-by: Christian Strømme --- tests/manual/rhi/triquadcube/triquadcube.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/rhi/triquadcube/triquadcube.cpp b/tests/manual/rhi/triquadcube/triquadcube.cpp index f89f0753af3..81e6247680e 100644 --- a/tests/manual/rhi/triquadcube/triquadcube.cpp +++ b/tests/manual/rhi/triquadcube/triquadcube.cpp @@ -134,7 +134,7 @@ void Window::customInit() qDebug("MaxVertexOutputs: %d", m_r->resourceLimit(QRhi::MaxVertexOutputs)); // With Vulkan at least we should see some details from the memory allocator. - qDebug() << m_r->graphicsMemoryAllocationStatistics(); + qDebug() << m_r->statistics(); // Every two seconds try printing an average of the gpu frame times. d.gpuFrameTimePrintTimer.start();