Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +1 |
if (!gbm_bo_ &&
Comment on fallback as to why?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
std::vector<uint64_t> modifiers;
all this code and naming is a bit ugly. I understand why it looks this way because vector vs single value.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[Ozone/Wayland]gbm_pixmap_wayland fallback to implicit modifier
linux_dmabuf extension specifies that DRM_FORMAT_MOD_INVALID is allowed
for server to indicate support for implicit modifier.
wlroots-based compositor such as sway appears to always announce
MOD_INVALID and MOD_LINEAR. However, in reality some hardware driver
does not render to MOD_LINEAR, so we need to perform this fallback. As
long as the device selection matches the compositor, driver should know
about the modifiers internally.
Add MOD_INVALID to the list to indicate implicit modifier support.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |