mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-21 06:46:46 -04:00
Merge branch 'display_tiling_clean_new' into 'master'
Draft: Display Tiling for DRM backend See merge request wlroots/wlroots!3344
This commit is contained in:
commit
5e9f77f4ff
11 changed files with 333 additions and 8 deletions
|
|
@ -1272,6 +1272,12 @@ void scan_drm_connectors(struct wlr_drm_backend *drm,
|
|||
parse_edid(wlr_conn, edid_len, edid);
|
||||
free(edid);
|
||||
|
||||
size_t tile_len = 0;
|
||||
uint8_t *tile = get_drm_prop_blob(drm->fd,
|
||||
wlr_conn->id, wlr_conn->props.tile, &tile_len);
|
||||
parse_tile(wlr_conn, tile_len, tile);
|
||||
free(tile);
|
||||
|
||||
char *subconnector = NULL;
|
||||
if (wlr_conn->props.subconnector) {
|
||||
subconnector = get_drm_prop_enum(drm->fd,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue