Unblacklist tst_qrhi renderToTextureSampleWithSeparateTextureAndSampler

Unblacklist test function by skipping it with Android with Vulkan.

Fixes: QTQAINFRA-6335
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 fd15b2178a3468bf1fcd04b79467e1400ec6c8d3)
This commit is contained in:
Konsta Alajärvi 2025-01-17 08:16:50 +02:00
parent 05d247e10e
commit e8a71279c6
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -2322,6 +2322,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");