search for: driverpriv

Displaying 12 results from an estimated 12 matches for "driverpriv".

Did you mean: driver_priv
2012 May 23
1
[PATCH (nouveau)] Add xwayland support
...Scrn->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, pointer call_data) if (pScrn->vtSema && !pNv->NoAccel) nouveau_pushbuf_kick(pNv->pushbu...
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
...eturn 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, "NVEnterVT is called.\n"); - ret = drmSetMaster(pNv->dev->fd); + if (pNv->xwl_scree...
2016 Jul 19
0
[ANNOUNCE] xorg-server 1.18.4
...ndrew Eikum (1): shm: Also censor images returned by ShmGetImage Chris Wilson (2): present: Improve scaling of vblank handler present: Fix presentation of flips out of order Dave Airlie (6): randr/provider: only allow slave gpu to be offload sources. modesetting: set driverPrivate to NULL after closing fd. xf86Crtc: don't set the root window property on slave GPUs. modesetting: set capabilities up after glamor and enable offload caps. glamor: add glamor_finish API modesetting: Implement 32->24 bpp conversion in shadow update Guilherme Quent...
2014 Feb 04
2
[PATCH 1/3] nv50: rework primid logic
...ask = info->in[i].mask; @@ -345,7 +343,6 @@ nv50_program_translate(struct nv50_program *prog, uint16_t chipset) prog->vp.clpd[0] = map_undef; prog->vp.clpd[1] = map_undef; prog->vp.psiz = map_undef; - prog->gp.primid = 0x80; prog->gp.has_layer = 0; info->driverPriv = prog; diff --git a/src/gallium/drivers/nouveau/nv50/nv50_program.h b/src/gallium/drivers/nouveau/nv50/nv50_program.h index 5b092bd..75de007 100644 --- a/src/gallium/drivers/nouveau/nv50/nv50_program.h +++ b/src/gallium/drivers/nouveau/nv50/nv50_program.h @@ -88,7 +88,6 @@ struct nv50_program {...
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...ec { unsigned point_x, point_y; unsigned width_in, width_out; unsigned height_in, height_out; + + /* Wfb related data. */ + struct { + PixmapPtr ppix; + bool used; + bool tiled; + unsigned long start; + unsigned long end; + } wfb_pixmaps[6]; } NVRec; #define NVPTR(p) ((NVPtr)((p)->driverPrivate)) -- 1.6.2
2013 Jul 22
0
[RFC PATCH] Support running nested in a Mir compositor
...n; +#define xorgMir 0 +#endif + #if XF86_CRTC_VERSION >= 5 #define NOUVEAU_PIXMAP_SHARING 1 #endif @@ -112,6 +120,8 @@ typedef struct _NVRec { PixmapPtr pspix, pmpix, pdpix; PicturePtr pspict, pmpict; Pixel fg_colour; + + xmir_screen *xmir; } NVRec; #define NVPTR(p) ((NVPtr)((p)->driverPrivate)) -- 1.8.3.2
2015 Nov 26
9
[mesa 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com> Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4016871..c02ee61 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ LIBDRM_RADEON_REQUIRED=2.4.56 LIBDRM_AMDGPU_REQUIRED=2.4.63 LIBDRM_INTEL_REQUIRED=2.4.61
2015 Dec 16
11
[mesa v3 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com> v2. forgot bump for non-gallium driver Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index b6680d0..965c6f7 100644 --- a/configure.ac +++ b/configure.ac @@ -72,8 +72,8 @@ LIBDRM_REQUIRED=2.4.60
2015 Nov 27
13
[mesa v2 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com> Signed-off-by: Ben Skeggs <bskeggs at redhat.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4016871..c02ee61 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ LIBDRM_RADEON_REQUIRED=2.4.56 LIBDRM_AMDGPU_REQUIRED=2.4.63 LIBDRM_INTEL_REQUIRED=2.4.61
2016 Sep 16
0
[ANNOUNCE] xorg-server 1.18.99.2
...slave outputs glamor: swizzle RED to 0 for alpha textures glamor: add glamor_finish API modesetting: add support for background none. modesetting: port clean start code from amdgpu. (v2) randr/provider: only allow slave gpu to be offload sources. modesetting: set driverPrivate to NULL after closing fd. xf86Crtc: don't set the root window property on slave GPUs. modesetting: set capabilities up after glamor and enable offload caps. modesetting: fix build with glamor disabled. prime: clean up slave bo properly. (v3) modesetting: Impleme...
2018 Feb 28
0
[ANNOUNCE] xserver 1.20 RC1
...st for the overflow bug in bigreqs. xkb: Print the xkbcomp path being executed when we fail to compile. Frank Binns (1): hw/xfree86: fix comment typo Giuseppe Bilotta (10): tests: Fix without-dtrace build dix/window: fix typos xkb: initialize tsyms Xephyr: free driverPrivates on Fini randr: ProcRRGetOutputInfo: initialize memory glx: free fbconfigs on destroy randr: rrGetScreenResources: initialize memory randr: always realloc crtcs and outputs randr: free crtc->outputs on destroy rrmonitor: allocate using the correct type Han...
2008 Mar 06
0
[ANNOUNCE] xorg-server 1.4.99.901
...ch uses LaunchServices to find Modified X11 plist to use x11-exec fixed bug in x11-exec that prevent icon from showing up we need to link against CoreServices, not ApplicationServices clarified debug message to indicate that we're sleeping Ben Skeggs (1): exa: set driverPriv to NULL before it might get used later with garbage Bernardo Innocenti (2): Include stddef.h for size_t. exa: make the prototype for exaGetPixmapFirstPixel() public Blair Sadewitz (1): Autoconfiguration of wsmouse for NetBSD. Brian (2): regenerated, adds GL_MAX_3D_TEXTURE...