• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H22-Feb-2020-16,72812,553

doc/H03-May-2022-2,0491,578

m4/H22-Feb-2020-9,1468,266

man/H03-May-2022-806686

src/H03-May-2022-9,8567,073

tests/H03-May-2022-1,5591,366

tools/H22-Feb-2020-690667

COPYINGH A D22-Feb-20201.3 KiB3126

ChangeLogH A D22-Feb-2020268.4 KiB7,4225,123

INSTALLH A D22-Feb-202015.4 KiB371288

Makefile.amH A D22-Feb-20201.8 KiB116102

Makefile.inH A D03-May-202247.5 KiB1,3961,260

NEWSH A D22-Feb-202024.8 KiB599497

README.mdH A D22-Feb-20201.4 KiB4227

aclocal.m4H A D22-Feb-2020131.9 KiB3,6433,333

autogen.shH A D22-Feb-2020209 159

check-pc-requiresH A D22-Feb-20201.1 KiB7166

configureH A D22-Feb-2020671.5 KiB23,61219,383

configure.acH A D22-Feb-202011 KiB356315

xcb-composite.pc.inH A D22-Feb-2020258 1210

xcb-damage.pc.inH A D22-Feb-2020249 1210

xcb-dpms.pc.inH A D22-Feb-2020232 1210

xcb-dri2.pc.inH A D22-Feb-2020232 1210

xcb-dri3.pc.inH A D22-Feb-2020232 1210

xcb-ge.pc.inH A D22-Feb-2020246 1210

xcb-glx.pc.inH A D22-Feb-2020229 1210

xcb-present.pc.inH A D22-Feb-2020271 1210

xcb-randr.pc.inH A D22-Feb-2020246 1210

xcb-record.pc.inH A D22-Feb-2020238 1210

xcb-render.pc.inH A D22-Feb-2020238 1210

xcb-res.pc.inH A D22-Feb-2020236 1210

xcb-screensaver.pc.inH A D22-Feb-2020253 1210

xcb-shape.pc.inH A D22-Feb-2020235 1210

xcb-shm.pc.inH A D22-Feb-2020229 1210

xcb-sync.pc.inH A D22-Feb-2020232 1210

xcb-xevie.pc.inH A D22-Feb-2020235 1210

xcb-xf86dri.pc.inH A D22-Feb-2020249 1210

xcb-xfixes.pc.inH A D22-Feb-2020259 1210

xcb-xinerama.pc.inH A D22-Feb-2020244 1210

xcb-xinput.pc.inH A D22-Feb-2020264 1210

xcb-xkb.pc.inH A D22-Feb-2020249 1210

xcb-xprint.pc.inH A D22-Feb-2020238 1210

xcb-xselinux.pc.inH A D22-Feb-2020242 1210

xcb-xtest.pc.inH A D22-Feb-2020235 1210

xcb-xv.pc.inH A D22-Feb-2020234 1210

xcb-xvmc.pc.inH A D22-Feb-2020239 1210

xcb.pc.inH A D22-Feb-2020286 1412

README.md

1About libxcb
2============
3
4libxcb provides an interface to the X Window System protocol, which
5replaces the traditional Xlib interface. It has several advantages over
6Xlib, including:
7- size: small, simple library, and lower memory footprint
8- latency hiding: batch several requests and wait for the replies later
9- direct protocol access: interface and protocol correspond exactly
10- proven thread support: transparently access XCB from multiple threads
11- easy extension implementation: interfaces auto-generated from XML-XCB
12
13Xlib also uses XCB as a transport layer, allowing software to make
14requests and receive responses with both, which eases porting to XCB.
15However, client programs, libraries, and toolkits will gain the most
16benefit from a native XCB port.
17
18More information about xcb is available from our website:
19
20  https://xcb.freedesktop.org/
21
22Please report any issues you find to the freedesktop.org bug tracker at:
23
24  https://gitlab.freedesktop.org/xorg/lib/libxcb/issues
25
26Discussion about XCB occurs on the XCB mailing list:
27
28  https://lists.freedesktop.org/mailman/listinfo/xcb
29
30You can obtain the latest development versions of XCB using GIT from
31the libxcb code repository at:
32
33  https://gitlab.freedesktop.org/xorg/lib/libxcb
34
35  For anonymous checkouts, use:
36
37    git clone https://gitlab.freedesktop.org/xorg/lib/libxcb.git
38
39  For developers, use:
40
41    git clone git@gitlab.freedesktop.org:xorg/lib/libxcb.git
42