Displaying 5 results from an estimated 5 matches for "xf86cursorresetcursor".
2019 Jan 19
0
[PATCH xf86-video-nouveau] Check for xf86CursorResetCursor()
...| 6 ++++++
src/drmmode_display.c | 4 ++++
2 files changed, 10 insertions(+)
diff --git a/configure.ac b/configure.ac
index 0b01d3e..56a971f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -127,6 +127,12 @@ AC_SUBST([DRIVER_NAME])
XORG_MANPAGE_SECTIONS
XORG_RELEASE_VERSION
+AC_CHECK_DECL(xf86CursorResetCursor,
+ [AC_DEFINE(HAVE_XF86_CURSOR_RESET_CURSOR, 1,
+ [Have xf86CursorResetCursor API])], [],
+ [#include <xorg-server.h>
+ #include <xf86Cursor.h>])
+
AC_CHECK_HEADERS([list.h],
[have_list_h="yes"], [have_lis...
2019 Jan 21
18
[PATCH xf86-video-nouveau 00/17] autotools configuration cleanups
Series of cleanups to autotools build config files to utilize the available
xorg-server macros, defaults and more closely match other modern Xorg drivers.
Notable improvements:
- gitignore fully covers potential build artifacts
- Simplify logic given stated minimum required version of xorg-server 1.8
- Remove use of deprecated, outdated or no longer required macros
- Utilize xorg macros where
2019 Jan 29
0
[ANNOUNCE] xf86-video-nouveau 1.0.16
...present: rotated crtc's work fine
Revert "wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER"
update known chipsets list
Bump version to 1.0.16
Mario Kleiner (1):
Fix colormap handling at screen depth 30. (v2)
Rhys Kidd (27):
Check for xf86CursorResetCursor()
xv: Silence build warning regarding const qualifier
wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
xv: Avoid shadowed declaration of 'int i' in NVPutImage
xv: Avoid shadowed declaration of 'int ret' in NVPutImage
wfb: Remove declaration...
2016 Apr 07
0
[ANNOUNCE] xf86-video-ati 7.7.0
...: Clear drmmode->fb_id before calling set_mode_major for unflip
present: Return rotated CRTCs from radeon_present_get_crtc
Factor out HW cursor checking code into drmmode_can_use_hw_cursor
Don't try DRI2/Present flipping while the HW cursor can't be used
Check for xf86CursorResetCursor
TearFree can only work with acceleration
DRI3 only works with acceleration
Use radeon_alloc_pixmap_bo for allocating scanout BOs
Fix build against older versions of xserver
Require xserver 1.9 or newer
Call RADEONBlockHandler_KMS before setting initial modes...
2016 Apr 07
0
[ANNOUNCE] xf86-video-amdgpu 1.1.0
...lip
present: Return rotated CRTCs from amdgpu_present_get_crtc
Call AMDGPUBlockHandler_KMS before setting initial modes
Factor out HW cursor checking code into drmmode_can_use_hw_cursor
Don't try DRI2/Present flipping while the HW cursor can't be used
Check for xf86CursorResetCursor
DRI3 only works with acceleration
Fix build against older versions of xserver
Require xserver 1.9 or newer
Revert "Use render node for DRI3 if available"
DRI3: Refuse to open DRM file descriptor for ssh clients
Identify DRM event queue entries by sequen...