mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
backend/drm: log drm_connector_alloc_crtc() failures
Helps figuring out why e.g. get_primary_formats fails.
This commit is contained in:
parent
5602fb1373
commit
1d64e12391
1 changed files with 5 additions and 1 deletions
|
@ -852,7 +852,11 @@ static bool drm_connector_alloc_crtc(struct wlr_drm_connector *conn) {
|
||||||
if (conn->crtc == NULL) {
|
if (conn->crtc == NULL) {
|
||||||
realloc_crtcs(conn->backend, conn);
|
realloc_crtcs(conn->backend, conn);
|
||||||
}
|
}
|
||||||
return conn->crtc != NULL;
|
bool ok = conn->crtc != NULL;
|
||||||
|
if (!ok) {
|
||||||
|
wlr_drm_conn_log(conn, WLR_DEBUG, "Failed to find free CRTC");
|
||||||
|
}
|
||||||
|
return ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct wlr_drm_mode *drm_mode_create(const drmModeModeInfo *modeinfo) {
|
static struct wlr_drm_mode *drm_mode_create(const drmModeModeInfo *modeinfo) {
|
||||||
|
|
Loading…
Reference in a new issue