Strictly speaking, the problem has nothing to do with QRhi. What is special with the eglfs' backingstore is that it creates a QRhiTexture and then pulls out the OpenGL texture ID via nativeTexture() right afterwards. In this setup there is nothing that would ensure glTexParameteri is called to override the silly default of OpenGL. Normally this cannot happen because once the QRhiTexture is used for sampling purposes together with a QRhiSampler, all necessary state gets updated. Starting from Qt 6.4, with the QRhi-based backingstore composition changes, the special case where we create QRhiTextures just to get the underlying OpenGL texture got introduced. Ideally the eglfs side should provide its in MIN/MAG filter state, but in the meantime, to be more robust, always set a MIN filter already in QRhiTexture::create(). For most textures this will get changed afterwards. Change-Id: I305cdbb5576b977887b85a15b72455bb3ae430c4 Pick-to: 6.7 6.6 6.5 Fixes: QTBUG-123551 Reviewed-by: Karim Pinter <karim.pinter@qt.io> Reviewed-by: Andy Nichols <andy.nichols@qt.io> (cherry picked from commit 88aa5250d58900653192c45e41f182ec88474e38) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
…
Description
Languages
C++
84.3%
HTML
4.9%
C
3.9%
CMake
3.6%
Objective-C++
2%
Other
0.8%