Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
6.3.0 Beta1
-
None
-
-
9a7e55dcbe (qt/qtbase/dev) 9a7e55dcbe (qt/tqtc-qtbase/dev) ad9623db7b (qt/qtbase/6.3) ad9623db7b (qt/tqtc-qtbase/6.3)
Description
PASS : tst_QRhi::renderToTextureSrbReuse(OpenGL)
PASS : tst_QRhi::renderToTextureIndexedDraw(Null)
PASS : tst_QRhi::renderToTextureIndexedDraw(OpenGL)
QCRITICAL: tst_QRhi::renderToWindowSimple(Null) Unsupported surfaceType(0), exiting.
This happens because webOS doesn't support raster pipeline (QSurface::RasterSurface value is 0):
QPlatformWindow *WebOSIntegration::createPlatformWindow(QWindow *window) const
{
// If one of conditions below is not satisfied,
// we should abort further initialization right away
// rather than trying a fallback which may lead an unexpected result.
// Note that abort() doesn't work properly as well for some reason,
// thus we call ::exit() instead to terminate the process gracefully.
if ((window->surfaceType() != QWindow::OpenGLSurface &&
window->surfaceType() != QWindow::RasterGLSurface &&
window->surfaceType() != QWindow::VulkanSurface))
{ qCritical("Unsupported surfaceType(%d), exiting.", window->surfaceType()); ::exit(1); }Attachments
Issue Links
- mentioned in
-
Page Loading...