backend/drm: fix wrong type for get_cursor_format return values
These are bools but should be pointers.
This commit is contained in:
parent
c55f70c8b7
commit
55ac7e335a
|
@ -944,11 +944,11 @@ static const struct wlr_drm_format_set *drm_connector_get_cursor_formats(
|
||||||
}
|
}
|
||||||
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
struct wlr_drm_connector *conn = get_drm_connector_from_output(output);
|
||||||
if (!conn->crtc) {
|
if (!conn->crtc) {
|
||||||
return false;
|
return NULL;
|
||||||
}
|
}
|
||||||
struct wlr_drm_plane *plane = conn->crtc->cursor;
|
struct wlr_drm_plane *plane = conn->crtc->cursor;
|
||||||
if (!plane) {
|
if (!plane) {
|
||||||
return false;
|
return NULL;
|
||||||
}
|
}
|
||||||
if (conn->backend->parent) {
|
if (conn->backend->parent) {
|
||||||
return &conn->backend->mgpu_formats;
|
return &conn->backend->mgpu_formats;
|
||||||
|
|
Loading…
Reference in New Issue