Displaying 6 results from an estimated 6 matches for "nouveau_present".
2014 Jun 21
0
[PATCH 2/2] present: build only when glamor is enabled
nouveau_present_flip_exec references glamor_fd_from_pixmap,
which do not exist when glamor is disabled
Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com>
---
src/nouveau_present.c | 2 +-
src/nouveau_present.h | 6 +++++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/nouveau_p...
2019 Jan 23
0
[PATCH] present: rotated crtc's work fine
The "pick best" logic takes rotation into account. However flipping a
rotated CRTC can't work, so we disable that.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
At first blush, this seems to make DRI3 function reasonably with rotated
CRTCs
src/nouveau_present.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/src/nouveau_present.c b/src/nouveau_present.c
index ebd5fcf..936475e 100644
--- a/src/nouveau_present.c
+++ b/src/nouveau_present.c
@@ -46,9 +46,6 @@ nouveau_present_crtc(WindowPtr window)
if (!crtc)
return NULL;
- if...
2019 Oct 13
0
[PATCH xf86-video-nouveau] dri2, present: move in pixmap before getting addresses
...-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
This fixes some crashes on a NV5 with 32MB VRAM + xfwm4 --vblank=present,
however the failure modes (e.g. pixmap doesn't have backing) can happen
anywhere I believe, just much less likely.
src/nouveau_dri2.c | 18 +++++++++++++++---
src/nouveau_present.c | 15 ++++++++++++++-
2 files changed, 29 insertions(+), 4 deletions(-)
diff --git a/src/nouveau_dri2.c b/src/nouveau_dri2.c
index ce0a573..8c29eca 100644
--- a/src/nouveau_dri2.c
+++ b/src/nouveau_dri2.c
@@ -248,9 +248,13 @@ static uint64_t dri2_sequence;
static Bool
update_front(DrawablePtr...
2020 Aug 16
1
[PATCH 1/2] drmmode: make event handler leave a note that there are stuck events
We don't really expect to have too many events in the queue. If there
are, then the algorithm we use isn't appropriate. Add a warning when the
queue gets very long, as it's an indication of something having gone
wrong.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/drmmode_display.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git
2017 Mar 04
0
[DDX PATCH] Consider CRTCs disabled when DPMS is off
...ess something on the keyboard. Chances are the
monitor will come back on, but the display remains black until the
next time the X server is restarted.
Signed-off-by: Lyude <lyude at redhat.com>
---
src/drmmode_display.c | 14 ++++++++++++--
src/nouveau_dri2.c | 14 +++++++++-----
src/nouveau_present.c | 6 +++---
src/nouveau_xv.c | 2 +-
src/nv_proto.h | 1 +
5 files changed, 26 insertions(+), 11 deletions(-)
diff --git a/src/drmmode_display.c b/src/drmmode_display.c
index b6c9bb9..dd9fa27 100644
--- a/src/drmmode_display.c
+++ b/src/drmmode_display.c
@@ -65,6 +65,7 @@ typedef...
2015 Jul 29
3
[PATCH 1/2] present: Fixup return type of nouveau_present_init()
Make it a Bool consistently, as declared in header.
Reported-by: Ilia Mirkin <imirkin at alum.mit.edu>
Signed-off-by: Mario Kleiner <mario.kleiner.de at gmail.com>
---
src/nouveau_present.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/nouveau_present.c b/src/nouveau_present.c
index 4de1e6e..699a58d 100644
--- a/src/nouveau_present.c
+++ b/src/nouveau_present.c
@@ -293,7 +293,7 @@ nouveau_present_fini(ScreenPtr screen)
}
}
-int
+Bool
nouveau_prese...