search for: option_async_copy

Displaying 6 results from an estimated 6 matches for "option_async_copy".

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 Jun 30
3
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...WARNING, + "DRI3 on EXA initialization failed\n"); + return FALSE; + } } else free(buf); #endif diff --git a/src/nv_const.h b/src/nv_const.h index f1b4e9b..df1e398 100644 --- a/src/nv_const.h +++ b/src/nv_const.h @@ -18,6 +18,7 @@ typedef enum { OPTION_SWAP_LIMIT, OPTION_ASYNC_COPY, OPTION_ACCELMETHOD, + OPTION_DRI3, } NVOpts; @@ -34,6 +35,7 @@ static const OptionInfoRec NVOptions[] = { { OPTION_SWAP_LIMIT, "SwapLimit", OPTV_INTEGER, {0}, FALSE }, { OPTION_ASYNC_COPY, "AsyncUTSDFS", OPTV_BOOLEAN, {0}, FALSE }, { OPTION_ACCELMETH...
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...else >> free(buf); >> #endif >> diff --git a/src/nv_const.h b/src/nv_const.h >> index f1b4e9b..df1e398 100644 >> --- a/src/nv_const.h >> +++ b/src/nv_const.h >> @@ -18,6 +18,7 @@ typedef enum { >> OPTION_SWAP_LIMIT, >> OPTION_ASYNC_COPY, >> OPTION_ACCELMETHOD, >> + OPTION_DRI3, >> } NVOpts; >> >> >> @@ -34,6 +35,7 @@ static const OptionInfoRec NVOptions[] = { >> { OPTION_SWAP_LIMIT, "SwapLimit", OPTV_INTEGER, {0}, FALSE }, >> { OPTION_ASYNC_COP...
2015 Jul 04
2
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...f >>>> diff --git a/src/nv_const.h b/src/nv_const.h >>>> index f1b4e9b..df1e398 100644 >>>> --- a/src/nv_const.h >>>> +++ b/src/nv_const.h >>>> @@ -18,6 +18,7 @@ typedef enum { >>>> OPTION_SWAP_LIMIT, >>>> OPTION_ASYNC_COPY, >>>> OPTION_ACCELMETHOD, >>>> + OPTION_DRI3, >>>> } NVOpts; >>>> >>>> >>>> @@ -34,6 +35,7 @@ static const OptionInfoRec NVOptions[] = { >>>> { OPTION_SWAP_LIMIT, "SwapLimit", OPTV_I...
2015 Jul 14
3
[PATCH] Add Option "DRI3" to allow to disable DRI3 under EXA.
...rc/nv_const.h >>>>>> index f1b4e9b..df1e398 100644 >>>>>> --- a/src/nv_const.h >>>>>> +++ b/src/nv_const.h >>>>>> @@ -18,6 +18,7 @@ typedef enum { >>>>>> OPTION_SWAP_LIMIT, >>>>>> OPTION_ASYNC_COPY, >>>>>> OPTION_ACCELMETHOD, >>>>>> + OPTION_DRI3, >>>>>> } NVOpts; >>>>>> >>>>>> >>>>>> @@ -34,6 +35,7 @@ static const OptionInfoRec NVOptions[] = { >>>>>>...
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
..._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, &pNv->glx_vblank)) @@...