Displaying 1 result from an estimated 1 matches for "69421e1".
Did you mean:
642151
2020 Jul 18
1
[PATCH 1/2] drmmode: fix screen resize without acceleration
...t there to be EXA wrapping around the
pixmap now, which is not there without accel.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/drmmode_display.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index 89927a4..69421e1 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -1561,7 +1561,7 @@ drmmode_xf86crtc_resize(ScrnInfoPtr scrn, int width, int height)
}
ppix = screen->GetScreenPixmap(screen);
- if (pNv->AccelMethod >= NONE)
+ if (pNv->AccelMethod > NONE)
nouveau_bo_ref(pNv-&...