etnaviv: fix renderonly check in etna_resource_alloc
When the driver hasn't been initialized via renderonly, screen->ro will be NULL. This fixes a crash when passing USE_SCANOUT to etnaviv when it's missing renderonly. Signed-off-by: Simon Ser <contact@emersion.fr> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com> Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12074>
This commit is contained in:
@@ -272,7 +272,7 @@ etna_resource_alloc(struct pipe_screen *pscreen, unsigned layout,
|
|||||||
|
|
||||||
size = setup_miptree(rsc, paddingX, paddingY, msaa_xscale, msaa_yscale);
|
size = setup_miptree(rsc, paddingX, paddingY, msaa_xscale, msaa_yscale);
|
||||||
|
|
||||||
if (unlikely(templat->bind & PIPE_BIND_SCANOUT) && screen->ro->kms_fd >= 0) {
|
if (unlikely(templat->bind & PIPE_BIND_SCANOUT) && screen->ro) {
|
||||||
struct pipe_resource scanout_templat = *templat;
|
struct pipe_resource scanout_templat = *templat;
|
||||||
struct winsys_handle handle;
|
struct winsys_handle handle;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user