search for: leavevt

Displaying 11 results from an estimated 11 matches for "leavevt".

2019 Oct 15
0
[ANNOUNCE] xf86-video-ati 19.1.0
...i2: Re-use previous CRTC when possible if pick_best_crtc returns NULL Remove dri2_drawable_crtc parameter consider_disabled present: Check that we can get a KMS FB for flipping Don't disable page flipping completely with SW cursor Don't set up black scanout buffer if LeaveVT is called from CloseScreen Don't unreference FBs of pixmaps from different screens in LeaveVT Bump version for 19.1.0 release git tag: xf86-video-ati-19.1.0 https://xorg.freedesktop.org/archive/individual/driver/xf86-video-ati-19.1.0.tar.bz2 MD5: 6e49d3c2839582af415ceded76e626e6...
2019 Oct 11
0
[ANNOUNCE] xf86-video-amdgpu 19.1.0
...om wayland/ci-templates present: Also check pixmap pitch in check_flip with current xserver present: Don't check pixmap pitch in check_flip with current DC present: Don't check pixmap pitch in check_flip with non-DC >= 3.34 Don't set up black scanout buffer if LeaveVT is called from CloseScreen Don't unreference FBs of pixmaps from different screens in LeaveVT Bump version for the 19.1.0 release git tag: xf86-video-amdgpu-19.1.0 https://xorg.freedesktop.org/archive/individual/driver/xf86-video-amdgpu-19.1.0.tar.bz2 MD5: 55ad19b858e186a2cf4e91e...
2017 Sep 08
0
[ANNOUNCE] xf86-video-amdgpu 1.4.0
...se reference counting for tracking KMS framebuffer lifetimes Improve AMDGPUPreInitAccel_KMS log messages Increase reference count of FB assigned to drmmode_crtc->flip_pending Improve drmmode_fb_reference debugging code Only call drmmode_scanout_free for non-GPU screens in LeaveVT Use drmmode_crtc->scanout_id instead of 0 to check for scanout buffer If a TearFree flip fails, fall back to non-TearFree operation Add AC_CONFIG_MACRO_DIRS([m4]) to configure.ac Makefile.am: Set ACLOCAL_AMFLAGS = -I m4 autogen.sh: Pass -f to autoreconf Only h...
2017 Sep 08
0
[ANNOUNCE] xf86-video-ati 7.10.0
...unting for tracking KMS framebuffer lifetimes Simplify tracking of PRIME scanout pixmap Remove unused struct members from drmmode_display.h Update URLs Include xf86Pci.h for DRICreatePCIBusID with xserver Git master Only call drmmode_scanout_free for non-GPU screens in LeaveVT Increase reference count of FB assigned to drmmode_crtc->flip_pending Improve drmmode_fb_reference debugging code Use pRADEONEnt->fd exclusively for the DRM file descriptor Use drmmode_crtc->scanout_id instead of 0 to check for scanout buffer If a TearFree fli...
2012 Nov 01
5
[PATCH 0/4] nouveau: xserver 1.13 compat fixes
Here are a few patches adding some missing functions in NvPlatformProbe, which iirc is being used as of xserver 1.13 First patch adds a nouveau_kernel_mode_enabled helper, similar to xf86-video-radeon Second and third use the function in Nv{Pci,Platform}Probe And last one ensures we can still use ZaphodHead and relative head positioning via xorg.conf The coding style may be a bit off, despite my
2018 Mar 02
0
[ANNOUNCE] xf86-video-amdgpu 18.0.0
...dual drmmode_crtc_funcs Michel Dänzer (20): Post-release version bump Fix VT switching with ShadowFB Bail if there's a problem with ShadowFB Free pAMDGPUEnt memory in AMDGPUFreeRec Free memory returned by xf86GetEntityInfo Call TimerFree for timer created in LeaveVT Always call drmModeFreeProperty after drmModeGetProperty Use correct ScrnInfoPtr in redisplay_dirty Add amdgpu_dirty_src_drawable helper Move cursor related ScreenInit calls into AMDGPUCursorInit_KMS Keep track of how many SW cursors are visible on each screen Fi...
2018 Mar 06
0
[ANNOUNCE] xf86-video-ati 18.0.0
...adowFB Post-release version bump Bail if there's a problem with ShadowFB Unreference pixmap's FB with EXA as well in radeon_set_pixmap_bo Free pRADEONEnt memory in RADEONFreeRec Free memory returned by xf86GetEntityInfo Call TimerFree for timer created in LeaveVT Always call drmModeFreeProperty after drmModeGetProperty Use correct ScrnInfoPtr in redisplay_dirty Add radeon_dirty_src_drawable helper Move cursor related ScreenInit calls into RADEONCursorInit_KMS Keep track of how many SW cursors are visible on each screen Al...
2012 May 23
1
[PATCH (nouveau)] Add xwayland support
...rn) + if (!pScrn) { +#ifdef XORG_WAYLAND + xwl_screen_destroy(xwl_screen); +#endif return FALSE; + } pScrn->driverVersion = NV_VERSION; pScrn->driverName = NV_DRIVER_NAME; @@ -288,6 +346,10 @@ NVPciProbe(DriverPtr drv, int entity_num, struct pci_device *pci_dev, pScrn->LeaveVT = NVLeaveVT; pScrn->FreeScreen = NVFreeScreen; +#ifdef XORG_WAYLAND + pScrn->driverPrivate = xwl_screen; +#endif + xf86SetEntitySharable(entity_num); pEnt = xf86GetEntityInfo(entity_num); @@ -376,6 +438,11 @@ NVFlushCallback(CallbackListPtr *list, pointer user_data...
2007 Mar 27
0
[ANNOUNCE] xf86-video-ati-6.6.191
...mode and fast writes unchanged. radeon: Advertise 2D engine limits to EXA when we're not using the 3D engine. radeon: Fix build warnings. atimisc: Fix strict aliasing violation flagged by -Wall. radeon: Make sure 3D clients will re-upload textures to video RAM after LeaveVT. radeon: Disable CP line acceleration on RV280s. radeon: Minor BlockHandler cleanups. radeon: Unify code to release the CP. radeon: Only sync to hardware when really necessary with EXA. Fix advertised minimum minor version of the DRI module. Roland Scheidegger:...
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
...NULL, NULL, NULL); - if (!pScrn) + if (!pScrn) { + xwl_screen_destroy(xwl_screen); return FALSE; + } pScrn->driverVersion = NV_VERSION; pScrn->driverName = NV_DRIVER_NAME; @@ -287,6 +331,8 @@ NVPciProbe(DriverPtr drv, int entity_num, struct pci_device *pci_dev, pScrn->LeaveVT = NVLeaveVT; pScrn->FreeScreen = NVFreeScreen; + pScrn->driverPrivate = xwl_screen; + xf86SetEntitySharable(entity_num); pEnt = xf86GetEntityInfo(entity_num); @@ -333,7 +379,11 @@ NVEnterVT(VT_FUNC_ARGS_DECL) xf86DrvMsg(pScrn->scrnIndex, X_INFO, "NVEnte...
2007 Aug 23
0
[ANNOUNCE] xf86-video-ati 6.7.191
...sfer mode and fast writes unchanged. radeon: Advertise 2D engine limits to EXA when we're not using the 3D engine. radeon: Fix build warnings. atimisc: Fix strict aliasing violation flagged by -Wall. radeon: Make sure 3D clients will re-upload textures to video RAM after LeaveVT. radeon: Disable CP line acceleration on RV280s. radeon: Minor BlockHandler cleanups. radeon: Unify code to release the CP. radeon: Only sync to hardware when really necessary with EXA. Fix advertised minimum minor version of the DRI module. radeon: Fix typo....