Unblacklist tst_qrhi renderToTextureArray

Try to unblacklist renderToTextureArray test on android

Fixes: QTQAINFRA-6334
Pick-to: 6.8
Change-Id: I59c914b66645dc30e7f1a34f9aefc7fb66e95a67
Reviewed-by: Rami Potinkara <rami.potinkara@qt.io>
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
(cherry picked from commit a34b5d60e010a0dfd451b1d6fff6798bdedc61b4)
This commit is contained in:
Konsta Alajärvi 2024-12-12 09:38:57 +02:00
parent a234b472d7
commit 9239e7cdef
2 changed files with 7 additions and 4 deletions

View File

@ -4,10 +4,6 @@ android
# QTBUG-92211
[renderPassDescriptorCompatibility]
android
# Same here, GLES 3.0 features seem hopeless
[renderToTextureTextureArray]
android
# Ditto
[renderToFloatTexture]
android
[tessellation vulkan]

View File

@ -2079,6 +2079,13 @@ void tst_QRhi::renderToTextureTextureArray()
QFETCH(QRhi::Implementation, impl);
QFETCH(QRhiInitParams *, initParams);
#ifdef Q_OS_ANDROID
if (impl == QRhi::OpenGLES2) {
QSKIP("This test fails with OpenGLES software rendering on Android emulators, "
"see QTBUG-132934.");
}
#endif
QScopedPointer<QRhi> rhi(QRhi::create(impl, initParams, QRhi::Flags(), nullptr));
if (!rhi)
QSKIP("QRhi could not be created, skipping testing rendering");