search for: xf86returnoptvalbool

Displaying 8 results from an estimated 8 matches for "xf86returnoptvalbool".

2015 Jun 30
3
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...reenInit(SCREEN_INIT_ARGS_DECL) return FALSE; } else if (pNv->AccelMethod == EXA) { - if (!nouveau_dri3_screen_init(pScreen)) + /* Default to DRI3/Present on XOrg >= 1.16.3, DRI2 on older + * servers, as older servers have DRI3/Present bugs affecting + * nouveau. + */ + ret = xf86ReturnOptValBool(pNv->Options, OPTION_DRI3, + XORG_VERSION_CURRENT >= + XORG_VERSION_NUMERIC(1,16,3,0,0)); + if (ret && !nouveau_dri3_screen_init(pScreen)) return FALSE; if (!nouveau_exa_init(pScreen)) -- 1.9.1
2008 May 22
0
[ANNOUNCE] xorg-server 1.4.99.902
...15160: quirk Proview AY765C James Cloos (1): Prevent the -wm command line option from causing a SEGV Jesse Barnes (1): Fail CRTC configuration if !vtSema Jordan Crouse (1): xf86: Change AutoConfig driver for PCI ID 022:2091 to 'geode' Julien Cristau (4): exa: use xf86ReturnOptValBool instead of xf86IsOptionSet xaa: use xf86ReturnOptValBool instead of xf86IsOptionSet Fix the clock_gettime check for glibc-based non-Linux systems kdrive: allow disabling Composite Keith Packard (2): XkbCopyKeymap was mangling doodads and overlays Empty the borderClip...
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
..._dri3_screen_init(pScreen)) >> + /* Default to DRI3/Present on XOrg >= 1.16.3, DRI2 on older >> + * servers, as older servers have DRI3/Present bugs affecting >> + * nouveau. >> + */ >> + ret = xf86ReturnOptValBool(pNv->Options, OPTION_DRI3, >> + XORG_VERSION_CURRENT >= >> + XORG_VERSION_NUMERIC(1,16,3,0,0)); >> + if (ret && !nouveau_dri3_screen_init(pScreen)) >>...
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 +++
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...> + /* Default to DRI3/Present on XOrg >= 1.16.3, DRI2 on older >>>> + * servers, as older servers have DRI3/Present bugs affecting >>>> + * nouveau. >>>> + */ >>>> + ret = xf86ReturnOptValBool(pNv->Options, OPTION_DRI3, >>>> + XORG_VERSION_CURRENT >= >>>> + XORG_VERSION_NUMERIC(1,16,3,0,0)); >>>> + if (ret && !nouveau_dri3_screen_init(pScreen))...
2019 Oct 12
0
[PATCH xf86-video-nouveau] nv4/exa: tiling is unsupported pre-nv10, reduce alignment requirements
...be it depends on the caller) */ bpp = round_up_pow2(format ? format : pDraw->depth); diff --git a/src/nv_driver.c b/src/nv_driver.c index 42eb9db..a63674c 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -1082,7 +1082,8 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) pNv->wfb_enabled = xf86ReturnOptValBool( pNv->Options, OPTION_WFB, FALSE); - pNv->tiled_scanout = TRUE; + if (pNv->Architecture >= NV_ARCH_10) + pNv->tiled_scanout = TRUE; } pNv->ce_enabled = -- 2.21.0
2015 Jul 14
3
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...to DRI3/Present on XOrg >= 1.16.3, DRI2 on older >>>>>> + * servers, as older servers have DRI3/Present bugs affecting >>>>>> + * nouveau. >>>>>> + */ >>>>>> + ret = xf86ReturnOptValBool(pNv->Options, OPTION_DRI3, >>>>>> + XORG_VERSION_CURRENT >= >>>>>> + XORG_VERSION_NUMERIC(1,16,3,0,0)); >>>>>> + if (ret && !nouveau_dr...
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
...+ if (xwl_screen) { + if (!xwl_screen_pre_init(pScrn, xwl_screen, 0, &xwl_driver)) { + NVPreInitFail("Failed to initialise xwayland\n"); + } + } + from = X_DEFAULT; pNv->HWCursor = TRUE; @@ -813,7 +917,7 @@ NVPreInit(ScrnInfoPtr pScrn, int flags) pNv->ce_enabled = xf86ReturnOptValBool(pNv->Options, OPTION_ASYNC_COPY, FALSE); - if (!pNv->NoAccel && pNv->dev->chipset >= 0x11) { + if (!pNv->NoAccel && pNv->dev->chipset >= 0x11 && !xwl_screen) { from = X_DEFAULT; if (xf86GetOptValBool(pNv->Options, OPTION_GLX_VBLANK,...