Displaying 5 results from an estimated 5 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...
2024 Nov 08
0
[ANNOUNCE] xf86-video-nouveau 1.0.18
...use XNFalloc() instead of xnfalloc
use XNFcallocarray() instead of xnfcalloc macro
use dixDestroyPixmap() instead of direct driver call
Ilia Mirkin (1):
remove sarea.h usage
Matt Turner (1):
xf86-video-nouveau 1.0.18
S?rgio M. Basto (1):
Fix implicit declaration of wfbScreenInit
?ukasz Spintzyk (6):
nouveau: Rename functions that has origin from modesetting
nouveau: fixup driver for new X server ABI
nouveau: Remove consider_disabled from nouveau_pick_best_crtc
nouveau: Use randr_crtc_covering_drawable used in modesetting
nouveau: use modesett...
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...