drm: Drop wrong assert

It blows out on nvidia proving my assumption was wrong back then
This commit is contained in:
Aleix Pol 2022-06-21 15:56:58 +02:00 committed by Aleix Pol Gonzalez
parent 7b933abc0f
commit 1112c29eb4

View file

@ -84,7 +84,6 @@ inline gbm_bo *createGbmBo(gbm_device *device, const QSize &size, quint32 format
size.height(), size.height(),
format, format,
flags); flags);
Q_ASSERT(!bo || gbm_bo_get_modifier(bo) == DRM_FORMAT_MOD_INVALID);
} }
return bo; return bo;
} }