search for: wfbpictureinit

Displaying 3 results from an estimated 3 matches for "wfbpictureinit".

2019 Jan 21
2
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
Fixes warning with xserver 1.20 and gcc 8.2: nv_driver.c:1443:9: warning: implicit declaration of function ‘wfbScreenInit’; did you mean ‘fbScreenInit’? [-Wimplicit-function-declaration] ret = wfbScreenInit(pScreen, FBStart, pScrn->virtualX, ^~~~~~~~~~~~~ fbScreenInit (See xserver 706e6d9cd074da606016ed4ecff51e9c2a822087) Signed-off-by: Rhys Kidd <rhyskidd at
2019 Jan 23
0
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
This causes nouveau_drv.so to not be loadable due to a missing wfbPictureInit. I'm not 100% sure what causes it -- it happens at runtime in the middle of probe, and I don't have wfb enabled. Either way, I'm going to revert this until we get a better idea of what's going on. On Sun, Jan 20, 2019 at 7:20 PM Rhys Kidd <rhyskidd at gmail.com> wrote: > &...
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...pNv->wfb_pixmaps[i].tiled = false; + break; + } +} diff --git a/src/nv_driver.c b/src/nv_driver.c index d7e8025..4c6b691 100644 --- a/src/nv_driver.c +++ b/src/nv_driver.c @@ -157,6 +157,12 @@ static const char *fbSymbols[] = { NULL }; +static const char *wfbSymbols[] = { + "wfbPictureInit", + "wfbScreenInit", + NULL +}; + static const char *exaSymbols[] = { "exaDriverInit", "exaOffscreenInit", @@ -285,7 +291,7 @@ nouveauSetup(pointer module, pointer opts, int *errmaj, int *errmin) * Tell the loader about symbols from other modu...