From 0eb7058b473069a04cde60a800dfd04148c0c8b1 Mon Sep 17 00:00:00 2001
|
From: Yann E. MORIN <yann.morin.1998@free.fr>
|
Date: Sat, 14 Dec 2020 21:15:17 +0100
|
Subject: [PATCH] plugins/eglfs/gbm: don't FTBFS when EGLNativeDisplayType is not a pointer
|
|
On some platforms, EGLNativeDisplayType is not a pointer, but some kind
|
of integer, like an int (e.g. TI's SGX) or an unsigned int. In those
|
cases, the build breaks with:
|
|
qeglfskmsgbmintegration.cpp: In member function ‘virtual void* QEglFSKmsGbmIntegration::createDisplay(EGLNativeDisplayType)’:
|
qeglfskmsgbmintegration.cpp:83:60: error: invalid conversion from ‘EGLNativeDisplayType’ {aka ‘int’} to ‘void*’ [-fpermissive]
|
83 | display = getPlatformDisplay(EGL_PLATFORM_GBM_KHR, nativeDisplay, nullptr);
|
| ^~~~~~~~~~~~~
|
| |
|
| EGLNativeDisplayType {aka int}
|
|
We fix that by casting nativeDisplay to void* as expected by
|
getPlatformDisplay().
|
|
We can do that, because usually, nativeDisplay is already a pointer, and
|
thus this cast is a no-op. When it is not already a pointer, we either
|
don't care because the code path will not be taken at runtime, or the
|
integer really is an opaque handle to some internal, low-level memory
|
management, much like a void* is an pointer to an opaque memory type...
|
|
It is to be noted, though, that in some ABIs (like x32), the size of a
|
nativeDisplay that is not already a pointer, might be bigger than that
|
of a pointer. There is not much we can do here anyway, since there would
|
be no way to fit that in a void* to begin with, and the build will still
|
fail for those situations. Those types of ABIs are far frome being
|
widespread, the most prominent one, x32, even being retired...
|
|
To be noted further: a more usual solution (as suggested in QTBUG-72567
|
or in Gerrit:248270) would be to first cast to a qintptr or a quintptr,
|
before finally casting to a void*. However, casting to either (resp.)
|
qintptr or quintptr first, risk the case that nativeDisplay is of the other
|
kind of signedness, (resp.) unsigned or signed, which would also cause
|
some compile-time breakage.
|
|
Finally, if nativeDisplay is something that is not an int-like, and that
|
can't be cast into a void*, this would be hugely weird, so much so, that
|
we do not even attempt to catter for that case.
|
|
Fixes: QTBUG-72567
|
Inspired-by: https://codereview.qt-project.org/c/qt/qtbase/+/248270
|
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
|
---
|
|
diff --git a/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.cpp b/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.cpp
|
index d495a8d..059a580 100644
|
--- a/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.cpp
|
+++ b/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmintegration.cpp
|
@@ -80,7 +80,9 @@
|
}
|
|
if (getPlatformDisplay) {
|
- display = getPlatformDisplay(EGL_PLATFORM_GBM_KHR, nativeDisplay, nullptr);
|
+ // EGLNativeDisplayType may be int on some platforms but those
|
+ // won't hit this path. Have to keep it compiling nonetheless.
|
+ display = getPlatformDisplay(EGL_PLATFORM_GBM_KHR, reinterpret_cast<void *>(nativeDisplay), nullptr);
|
} else {
|
qCDebug(qLcEglfsKmsDebug, "No eglGetPlatformDisplay for GBM, falling back to eglGetDisplay");
|
display = eglGetDisplay(nativeDisplay);
|