wlroots-hyprland/include/backend/drm
Simon Ser 0817c52a21 backend/drm: get rid of BO handle table
The BO handle table exists to avoid double-closing a BO handle,
which aren't reference-counted by the kernel. But if we can
guarantee that there is only ever a single ref for each BO handle,
then we don't need the BO handle table anymore.

This is possible if we create the handle right before the ADDFB2
IOCTL, and close the handle right after. The handles are very
short-lived and we don't need to track their lifetime.

Because of multi-planar FBs, we need to be a bit careful: some
FB planes might share the same handle. But with a small check, it's
easy to avoid double-closing the same handle (which wouldn't be a
big deal anyways).

There's one gotcha though: drmModeSetCursor2 takes a BO handle as
input. Saving the handles until drmModeSetCursor2 time would require
us to track BO handle lifetimes, so we wouldn't be able to get rid
of the BO handle table. As a workaround, use drmModeGetFB to turn the
FB ID back to a BO handle, call drmModeSetCursor2 and then immediately
close the BO handle. The overhead should be minimal since these IOCTLs
are pretty cheap.

Closes: https://github.com/swaywm/wlroots/issues/3164
2021-10-29 11:38:37 +02:00
..
cvt.h backend/drm: add support for custom modes 2019-10-27 10:46:47 -04:00
drm.h backend/drm: get rid of BO handle table 2021-10-29 11:38:37 +02:00
iface.h backend/drm: introduce wlr_drm_connector_state 2021-09-07 11:18:18 +02:00
properties.h backend/drm: add support for panel orientation 2021-09-21 11:40:37 -06:00
renderer.h backend/drm: get rid of BO handle table 2021-10-29 11:38:37 +02:00
util.h backend/drm: get rid of BO handle table 2021-10-29 11:38:37 +02:00