Unblacklist tst_qrhi renderToTextureSampleWithSeparateTextureAndSampler

Unblacklist test function by skipping it with Android with Vulkan.

Fixes: QTQAINFRA-6335
Pick-to: 6.8
Change-Id: I2ee093542f09f68044baa044b697a09af066fcd8
Reviewed-by: Rami Potinkara <rami.potinkara@qt.io>
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Reviewed-by: Lauri Pohjanheimo <lauri.pohjanheimo@qt.io>
(cherry picked from commit 83a4128ecbc260231b942f811b34fbe7595b14bc)
This commit is contained in:
Konsta Alajärvi 2025-01-17 08:16:50 +02:00
parent 4c1aef25ce
commit fd15b2178a
2 changed files with 6 additions and 2 deletions

View File

@ -11,8 +11,6 @@ android
[renderToTextureTextureArray]
android
# Ditto
[renderToTextureSampleWithSeparateTextureAndSampler]
android
[renderToFloatTexture]
android
[renderToRgb10Texture]

View File

@ -2324,6 +2324,12 @@ void tst_QRhi::renderToTextureSampleWithSeparateTextureAndSampler()
QFETCH(QRhi::Implementation, impl);
QFETCH(QRhiInitParams *, initParams);
#ifdef Q_OS_ANDROID
if (impl == QRhi::Vulkan) {
QSKIP("This function fails with Vulkan on Android, see QTQAINFRA-6926 for more info.");
}
#endif
QScopedPointer<QRhi> rhi(QRhi::create(impl, initParams, QRhi::Flags(), nullptr));
if (!rhi)
QSKIP("QRhi could not be created, skipping testing rendering");