search for: xwl_window

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

Did you mean: fl_window
2012 Jul 04
0
[PATCH] Add xwayland support (v2)
...rces; + if (pNv->xwl_screen) + xwl_screen_init(pNv->xwl_screen, pScreen); + drmmode_fbcon_copy(pScreen); if (!NVEnterVT(VT_FUNC_ARGS(0))) return FALSE; @@ -418,6 +481,25 @@ NVCreateScreenResources(ScreenPtr pScreen) return TRUE; } +static int nouveau_create_window_buffer(struct xwl_window *xwl_window, + PixmapPtr pixmap) +{ + uint32_t name; + struct nouveau_bo *bo; + + bo = nouveau_pixmap_bo(pixmap); + if (bo == NULL || nouveau_bo_name_get(bo, &name) != 0) + return BadDrawable; + + return xwl_create_window_buffer_drm(xwl_window, pixmap, name); +} + +static struct xwl_driver...
2012 May 23
1
[PATCH (nouveau)] Add xwayland support
...xwl_screen_init(pNv->xwl_screen, pScreen); +#endif + drmmode_fbcon_copy(pScreen); if (!NVEnterVT(pScrn->scrnIndex, 0)) return FALSE; @@ -425,6 +502,27 @@ NVCreateScreenResources(ScreenPtr pScreen) return TRUE; } +#ifdef XORG_WAYLAND +static int nouveau_create_window_buffer(struct xwl_window *xwl_window, + PixmapPtr pixmap) +{ + uint32_t name; + struct nouveau_bo *bo; + + bo = nouveau_pixmap_bo(pixmap); + if (bo == NULL || nouveau_bo_name_get(bo, &name) != 0) + return BadDrawable; + + return xwl_create_window_buffer_drm(xwl_window, pixmap, name); +} + +static struct xwl_driver...
2019 Feb 26
0
[ANNOUNCE] xorg-server 1.20.4
...Plug leaks in xwl_present_sync_callback xwayland: Use xwl_present_reset_timer in xwl_present_timer_callback xwayland: Rename xwl_present_events_notify to xwl_present_msc_bump xwayland: Complete "synchronous" Present flips from xwl_present_msc_bump xwayland: Replace xwl_window::present_window with ::present_flipped xwayland: Add xwl_present_unrealize_window xwayland: Don't need xwl_window anymore in xwl_present_queue_vblank xwayland: Don't take buffer release queue into account for frame timer glamor: Check that storage format is compatibl...
2018 Apr 24
0
[ANNOUNCE] xorg-server 1.19.99.905
...dri3: Fix dri3_buffers_from_pixmap request. modesetting: Only use modifiers on kms drivers which do support them. Matt Turner (1): modesetting: Move GBM code inside #ifdef GLAMOR_HAS_GBM Olivier Fourdan (3): xwayland: Fix build without glamor xwayland: avoid using freed xwl_window on unrealize xwayland: Clean up all frame callbacks Thomas Klausner (1): sdksyms: Cope with __pid_t and __uint32_t git tag: xorg-server-1.19.99.905 https://xorg.freedesktop.org/archive/individual/xserver/xorg-server-1.19.99.905.tar.bz2 MD5: 9be2bf4bc611789b61fa1073810f1030 xorg-ser...
2024 May 15
0
[ANNOUNCE] xwayland 24.1.0
...e on device_scroll_discrete Olivier Fourdan (4): xwayland: Restore the ResizeWindow handler xwayland: Handle rootful resize in ResizeWindow xwayland: Move XRandR emulation to the ResizeWindow hook Bump version to 24.1.0 Vlad Zahorodnii (1): xwayland: Use correct xwl_window lookup function in xwl_set_shape git tag: xwayland-24.1.0 https://xorg.freedesktop.org/archive/individual/xserver/xwayland-24.1.0.tar.xz SHA256: bef21c4f18807a4ed571c4e2df60ab63b5466bbd502ecceb2485b892ab76dcc2 xwayland-24.1.0.tar.xz SHA512: 7592609ad112652cb870761f938f280802d7d3b4bbc82acc7bf741a...
2016 Oct 28
0
[ANNOUNCE] xorg-server 1.18.99.902
...xwayland: Split up device class init/release into functions xwayland: Move pointer button initialization into helper xwayland: Dispatch pointer motion events on wl_pointer.frame if possible xwayland: Set unaccelerated pointer motion delta if available xwayland: Put getting a xwl_window from a Window in a helper xwayland: Bind pointer constraints global xwayland: Translate a pointer grab with confineTo to pointer confinement xwayland: Add pointer warp emulator Keith Packard (9): os: Ready clients with pending output aren't flushed, so set NewOutputPend...