search for: wfbscreeninit

Displaying 4 results from an estimated 4 matches for "wfbscreeninit".

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 gmail.com> --- src/nv_incl...
2019 Jan 23
0
[PATCH xf86-video-nouveau] wfb: Fix missing init function decls behind FB_ACCESS_WRAPPER
...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: > > 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...
2023 Jul 19
0
[ANNOUNCE] xwayland 23.1.99.901 (aka Xwayland 23.2.0 rc1)
...Check XDG_RUNTIME_DIR before fallback to /tmp/ Austin Shafer (2): Add DRM platform for BSD Add libdrm 2.4.109 requirement Benno Schulenberg (1): xkbUtils: use existing symbol names instead of deleted deprecated ones Florian Weimer (1): fb: Declare wfbFinishScreenInit, wfbScreenInit for !FB_ACCESS_WRAPPER Izumi Tsutsui (1): Revert "fb: Remove even/odd tile slow-pathing" Jessica Clarke (4): xwayland: Avoid gratuitous round trip through event_id xwayland: Pass vblank pointer itself to xwl_present_flip xwayland: Stop relying on event_id bei...
2009 Mar 08
4
[PATCH 1/5] nv50: implement wfb
...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 modules that this module * might...