backends/drm: fix build with HAVE_GBM_BO_GET_FD_FOR_PLANE=0

master
Xaver Hugl 2 years ago
parent 000f3d839f
commit b522bbc8fc

@ -168,7 +168,7 @@ bool EglGbmLayerSurface::createGbmSurface(const QSize &size, uint32_t format, co
if (!allowModifiers) {
#else
// modifiers have to be disabled with multi-gpu if gbm_bo_get_fd_for_plane is not available
if (!allowModifiers || m_pipeline->gpu() != m_eglBackend->gpu()) {
if (!allowModifiers || m_gpu != m_eglBackend->gpu()) {
#endif
int flags = GBM_BO_USE_RENDERING;
if (m_gpu == m_eglBackend->gpu()) {

Loading…
Cancel
Save