From a09e518f6589fff7789ad7224badf24593240711 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Fri, 1 Jul 2022 09:25:29 +0200 Subject: rhi: Make it possible to query the backend name beforehand The goal is to make it possible to implement QSGRhiSupport::backendName() in Qt Quick with just a single line: return QString::fromUtf8(QRhi::backendName(m_rhiBackend)); instead of duplicating the strings and the logic. Similarly, QBackingStoreRhiSupport can now drop its apiName() helper entirely. Change-Id: Ia8cbb1f1243539ed4d7a98e71dcc2ed56b017e40 Reviewed-by: Qt CI Bot Reviewed-by: Andy Nichols --- src/gui/rhi/qrhi_p.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/gui/rhi/qrhi_p.h') diff --git a/src/gui/rhi/qrhi_p.h b/src/gui/rhi/qrhi_p.h index f825866585..6e95e4542b 100644 --- a/src/gui/rhi/qrhi_p.h +++ b/src/gui/rhi/qrhi_p.h @@ -1701,6 +1701,7 @@ public: Implementation backend() const; const char *backendName() const; + static const char *backendName(Implementation impl); QRhiDriverInfo driverInfo() const; QThread *thread() const; -- cgit v1.2.3