├── .appveyor.yml ├── .dir-locals.el ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci └── Dockerfile ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── Xext ├── Makefile.am ├── bigreq.c ├── dpms.c ├── dpmsproc.h ├── geext.c ├── geext.h ├── geint.h ├── hashtable.c ├── hashtable.h ├── meson.build ├── panoramiX.c ├── panoramiX.h ├── panoramiXSwap.c ├── panoramiXh.h ├── panoramiXprocs.c ├── panoramiXsrv.h ├── saver.c ├── security.c ├── securitysrv.h ├── shape.c ├── shm.c ├── shmint.h ├── sleepuntil.c ├── sleepuntil.h ├── sync.c ├── syncsdk.h ├── syncsrv.h ├── vidmode.c ├── xace.c ├── xace.h ├── xacestr.h ├── xcmisc.c ├── xf86bigfont.c ├── xf86bigfontsrv.h ├── xres.c ├── xselinux.h ├── xselinux_ext.c ├── xselinux_hooks.c ├── xselinux_label.c ├── xselinuxint.h ├── xtest.c ├── xvdisp.c ├── xvdisp.h ├── xvdix.h ├── xvmain.c ├── xvmc.c └── xvmcext.h ├── Xi ├── Makefile.am ├── allowev.c ├── allowev.h ├── chgdctl.c ├── chgdctl.h ├── chgfctl.c ├── chgfctl.h ├── chgkbd.c ├── chgkbd.h ├── chgkmap.c ├── chgkmap.h ├── chgprop.c ├── chgprop.h ├── chgptr.c ├── chgptr.h ├── closedev.c ├── closedev.h ├── devbell.c ├── devbell.h ├── exevents.c ├── exglobals.h ├── extinit.c ├── getbmap.c ├── getbmap.h ├── getdctl.c ├── getdctl.h ├── getfctl.c ├── getfctl.h ├── getfocus.c ├── getfocus.h ├── getkmap.c ├── getkmap.h ├── getmmap.c ├── getmmap.h ├── getprop.c ├── getprop.h ├── getselev.c ├── getselev.h ├── getvers.c ├── getvers.h ├── grabdev.c ├── grabdev.h ├── grabdevb.c ├── grabdevb.h ├── grabdevk.c ├── grabdevk.h ├── gtmotion.c ├── gtmotion.h ├── listdev.c ├── listdev.h ├── meson.build ├── opendev.c ├── opendev.h ├── queryst.c ├── queryst.h ├── selectev.c ├── selectev.h ├── sendexev.c ├── sendexev.h ├── setbmap.c ├── setbmap.h ├── setdval.c ├── setdval.h ├── setfocus.c ├── setfocus.h ├── setmmap.c ├── setmmap.h ├── setmode.c ├── setmode.h ├── stubs.c ├── ungrdev.c ├── ungrdev.h ├── ungrdevb.c ├── ungrdevb.h ├── ungrdevk.c ├── ungrdevk.h ├── xiallowev.c ├── xiallowev.h ├── xibarriers.c ├── xibarriers.h ├── xichangecursor.c ├── xichangecursor.h ├── xichangehierarchy.c ├── xichangehierarchy.h ├── xigetclientpointer.c ├── xigetclientpointer.h ├── xigrabdev.c ├── xigrabdev.h ├── xipassivegrab.c ├── xipassivegrab.h ├── xiproperty.c ├── xiproperty.h ├── xiquerydevice.c ├── xiquerydevice.h ├── xiquerypointer.c ├── xiquerypointer.h ├── xiqueryversion.c ├── xiqueryversion.h ├── xiselectev.c ├── xiselectev.h ├── xisetclientpointer.c ├── xisetclientpointer.h ├── xisetdevfocus.c ├── xisetdevfocus.h ├── xiwarppointer.c └── xiwarppointer.h ├── autogen.sh ├── composite ├── Makefile.am ├── compalloc.c ├── compext.c ├── compinit.c ├── compint.h ├── compositeext.h ├── compoverlay.c ├── compwindow.c └── meson.build ├── config ├── 10-quirks.conf ├── Makefile.am ├── config-backends.h ├── config.c ├── dbus-api ├── dbus-core.c ├── fdi2iclass.py ├── hal.c ├── meson.build ├── udev.c ├── wscons.c └── x11-input.fdi ├── configure.ac ├── damageext ├── Makefile.am ├── damageext.c ├── damageext.h ├── damageextint.h └── meson.build ├── dbe ├── Makefile.am ├── dbe.c ├── dbestruct.h ├── meson.build ├── midbe.c └── midbe.h ├── devbook.am ├── dix ├── .gitignore ├── BuiltInAtoms ├── Makefile.am ├── Xserver-dtrace.h.in ├── Xserver.d ├── atom.c ├── buildatoms ├── colormap.c ├── cursor.c ├── devices.c ├── dispatch.c ├── dispatch.h ├── dixfonts.c ├── dixutils.c ├── enterleave.c ├── enterleave.h ├── eventconvert.c ├── events.c ├── extension.c ├── gc.c ├── getevents.c ├── globals.c ├── glyphcurs.c ├── grabs.c ├── initatoms.c ├── inpututils.c ├── main.c ├── meson.build ├── pixmap.c ├── privates.c ├── property.c ├── protocol.txt ├── ptrveloc.c ├── region.c ├── registry.c ├── resource.c ├── selection.c ├── stubmain.c ├── swaprep.c ├── swapreq.c ├── tables.c ├── touch.c └── window.c ├── doc ├── .gitignore ├── Makefile.am ├── Xinput.xml ├── Xserver-spec.xml ├── c-extensions ├── dtrace │ ├── .gitignore │ ├── Makefile.am │ └── Xserver-DTrace.xml ├── filter-xmlto.sh └── smartsched ├── docbook.am ├── dri3 ├── Makefile.am ├── dri3.c ├── dri3.h ├── dri3_priv.h ├── dri3_request.c ├── dri3_screen.c └── meson.build ├── exa ├── Makefile.am ├── exa.c ├── exa.h ├── exa_accel.c ├── exa_classic.c ├── exa_driver.c ├── exa_glyphs.c ├── exa_migration_classic.c ├── exa_migration_mixed.c ├── exa_mixed.c ├── exa_offscreen.c ├── exa_priv.h ├── exa_render.c ├── exa_unaccel.c └── meson.build ├── fb ├── Makefile.am ├── fb.h ├── fballpriv.c ├── fbarc.c ├── fbbits.c ├── fbbits.h ├── fbblt.c ├── fbbltone.c ├── fbcmap_mi.c ├── fbcopy.c ├── fbfill.c ├── fbfillrect.c ├── fbfillsp.c ├── fbgc.c ├── fbgetsp.c ├── fbglyph.c ├── fbimage.c ├── fbline.c ├── fboverlay.c ├── fboverlay.h ├── fbpict.c ├── fbpict.h ├── fbpixmap.c ├── fbpoint.c ├── fbpush.c ├── fbrop.h ├── fbscreen.c ├── fbseg.c ├── fbsetsp.c ├── fbsolid.c ├── fbtrap.c ├── fbutil.c ├── fbwindow.c ├── meson.build └── wfbrename.h ├── fix-miregion ├── fix-miregion-private ├── fix-patch-whitespace ├── fix-region ├── glamor ├── Makefile.am ├── glamor.c ├── glamor.h ├── glamor_addtraps.c ├── glamor_composite_glyphs.c ├── glamor_compositerects.c ├── glamor_context.h ├── glamor_copy.c ├── glamor_core.c ├── glamor_dash.c ├── glamor_debug.h ├── glamor_egl.c ├── glamor_egl.h ├── glamor_egl_ext.h ├── glamor_egl_stubs.c ├── glamor_eglmodule.c ├── glamor_fbo.c ├── glamor_font.c ├── glamor_font.h ├── glamor_glx.c ├── glamor_glyphblt.c ├── glamor_gradient.c ├── glamor_image.c ├── glamor_largepixmap.c ├── glamor_lines.c ├── glamor_picture.c ├── glamor_pixmap.c ├── glamor_points.c ├── glamor_prepare.c ├── glamor_prepare.h ├── glamor_priv.h ├── glamor_program.c ├── glamor_program.h ├── glamor_rects.c ├── glamor_render.c ├── glamor_segs.c ├── glamor_spans.c ├── glamor_sync.c ├── glamor_text.c ├── glamor_transfer.c ├── glamor_transfer.h ├── glamor_transform.c ├── glamor_transform.h ├── glamor_trapezoid.c ├── glamor_triangles.c ├── glamor_utils.c ├── glamor_utils.h ├── glamor_vbo.c ├── glamor_window.c ├── glamor_xv.c └── meson.build ├── glx ├── Makefile.am ├── clientinfo.c ├── createcontext.c ├── extension_string.c ├── extension_string.h ├── glxbyteorder.h ├── glxcmds.c ├── glxcmdsswap.c ├── glxcontext.h ├── glxdrawable.h ├── glxdri2.c ├── glxdricommon.c ├── glxdricommon.h ├── glxdriswrast.c ├── glxext.c ├── glxext.h ├── glxscreens.c ├── glxscreens.h ├── glxserver.h ├── glxutil.h ├── indirect_dispatch.c ├── indirect_dispatch.h ├── indirect_dispatch_swap.c ├── indirect_program.c ├── indirect_reqsize.c ├── indirect_reqsize.h ├── indirect_size.h ├── indirect_size_get.c ├── indirect_size_get.h ├── indirect_table.c ├── indirect_table.h ├── indirect_texture_compression.c ├── indirect_util.c ├── indirect_util.h ├── meson.build ├── render2.c ├── render2swap.c ├── renderpix.c ├── renderpixswap.c ├── rensize.c ├── single2.c ├── single2swap.c ├── singlepix.c ├── singlepixswap.c ├── singlesize.c ├── singlesize.h ├── swap_interval.c ├── unpack.h ├── vnd_dispatch_stubs.c ├── vndcmds.c ├── vndext.c ├── vndserver.h ├── vndservermapping.c ├── vndservervendor.c ├── vndservervendor.h └── xfont.c ├── hw ├── Makefile.am ├── dmx │ ├── .gitignore │ ├── Makefile.am │ ├── config │ │ ├── .gitignore │ │ ├── Canvas.c │ │ ├── Canvas.h │ │ ├── CanvasP.h │ │ ├── Makefile.am │ │ ├── TODO │ │ ├── dmxcompat.c │ │ ├── dmxcompat.h │ │ ├── dmxconfig.c │ │ ├── dmxconfig.h │ │ ├── dmxparse.c │ │ ├── dmxparse.h │ │ ├── dmxprint.c │ │ ├── dmxprint.h │ │ ├── dmxtodmx.c │ │ ├── man │ │ │ ├── Makefile.am │ │ │ ├── dmxtodmx.man │ │ │ ├── vdltodmx.man │ │ │ └── xdmxconfig.man │ │ ├── meson.build │ │ ├── parser.y │ │ ├── scanner.l │ │ ├── test-a.in │ │ ├── test-a.out │ │ ├── test-b.in │ │ ├── test-b.out │ │ ├── test-c.in │ │ ├── test-c.out │ │ ├── test-d.in │ │ ├── test-d.out │ │ ├── test-e.in │ │ ├── test-e.out │ │ ├── test-f.in │ │ ├── test-f.out │ │ ├── test-g.in │ │ ├── test-g.out │ │ ├── test-h.in │ │ ├── test-h.out │ │ ├── test-i.in │ │ ├── test-i.out │ │ ├── test-j.in │ │ ├── test-j.out │ │ ├── test-k.in │ │ ├── test-k.out │ │ ├── test-l.in │ │ ├── test-l.out │ │ ├── vdltodmx.c │ │ └── xdmxconfig.c │ ├── dmx-config.h │ ├── dmx.c │ ├── dmx.h │ ├── dmx_glxvisuals.c │ ├── dmx_glxvisuals.h │ ├── dmxcb.c │ ├── dmxcb.h │ ├── dmxclient.h │ ├── dmxcmap.c │ ├── dmxcmap.h │ ├── dmxcursor.c │ ├── dmxcursor.h │ ├── dmxdpms.c │ ├── dmxdpms.h │ ├── dmxextension.c │ ├── dmxextension.h │ ├── dmxfont.c │ ├── dmxfont.h │ ├── dmxgc.c │ ├── dmxgc.h │ ├── dmxgcops.c │ ├── dmxgcops.h │ ├── dmxinit.c │ ├── dmxinit.h │ ├── dmxinput.c │ ├── dmxinput.h │ ├── dmxlog.c │ ├── dmxlog.h │ ├── dmxpict.c │ ├── dmxpict.h │ ├── dmxpixmap.c │ ├── dmxpixmap.h │ ├── dmxprop.c │ ├── dmxprop.h │ ├── dmxscrinit.c │ ├── dmxscrinit.h │ ├── dmxstat.c │ ├── dmxstat.h │ ├── dmxsync.c │ ├── dmxsync.h │ ├── dmxvisual.c │ ├── dmxvisual.h │ ├── dmxwindow.c │ ├── dmxwindow.h │ ├── doc │ │ ├── .gitignore │ │ ├── DMXSpec-v1.txt │ │ ├── DMXSpec.txt │ │ ├── Makefile.am │ │ ├── dmx.xml │ │ └── scaled.xml │ ├── doxygen │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── doxygen.conf.in │ │ └── footer.html │ ├── examples │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── dmxaddinput.c │ │ ├── dmxaddscreen.c │ │ ├── dmxinfo.c │ │ ├── dmxreconfig.c │ │ ├── dmxresize.c │ │ ├── dmxrminput.c │ │ ├── dmxrmscreen.c │ │ ├── dmxwininfo.c │ │ ├── ev.c │ │ ├── evi.c │ │ ├── meson.build │ │ ├── res.c │ │ ├── xbell.c │ │ ├── xinput.c │ │ ├── xled.c │ │ └── xtest.c │ ├── glxProxy │ │ ├── Makefile.am │ │ ├── compsize.c │ │ ├── compsize.h │ │ ├── g_disptab.c │ │ ├── g_disptab.h │ │ ├── g_renderswap.c │ │ ├── global.c │ │ ├── glxcmds.c │ │ ├── glxcmds.h │ │ ├── glxcmdsswap.c │ │ ├── glxcontext.h │ │ ├── glxdrawable.h │ │ ├── glxerror.h │ │ ├── glxext.c │ │ ├── glxext.h │ │ ├── glxfbconfig.c │ │ ├── glxfbconfig.h │ │ ├── glxscreens.c │ │ ├── glxscreens.h │ │ ├── glxserver.h │ │ ├── glxsingle.c │ │ ├── glxsingle.h │ │ ├── glxswap.c │ │ ├── glxswap.h │ │ ├── glxutil.h │ │ ├── glxvendor.c │ │ ├── glxvendor.h │ │ ├── glxvisuals.c │ │ ├── glxvisuals.h │ │ ├── meson.build │ │ ├── render2swap.c │ │ ├── renderpixswap.c │ │ └── unpack.h │ ├── input │ │ ├── ChkNotMaskEv.c │ │ ├── ChkNotMaskEv.h │ │ ├── Makefile.am │ │ ├── atKeynames.h │ │ ├── dmxarg.c │ │ ├── dmxarg.h │ │ ├── dmxbackend.c │ │ ├── dmxbackend.h │ │ ├── dmxcommon.c │ │ ├── dmxcommon.h │ │ ├── dmxconsole.c │ │ ├── dmxconsole.h │ │ ├── dmxdetach.c │ │ ├── dmxdummy.c │ │ ├── dmxdummy.h │ │ ├── dmxevents.c │ │ ├── dmxevents.h │ │ ├── dmxinputinit.c │ │ ├── dmxinputinit.h │ │ ├── dmxmap.c │ │ ├── dmxmap.h │ │ ├── dmxmotion.c │ │ ├── dmxmotion.h │ │ ├── dmxxinput.c │ │ ├── meson.build │ │ ├── usb-common.c │ │ ├── usb-common.h │ │ ├── usb-keyboard.c │ │ ├── usb-keyboard.h │ │ ├── usb-mouse.c │ │ ├── usb-mouse.h │ │ ├── usb-other.c │ │ ├── usb-other.h │ │ └── usb-private.h │ ├── man │ │ ├── Makefile.am │ │ └── Xdmx.man │ └── meson.build ├── kdrive │ ├── Makefile.am │ ├── Xkdrive.man │ ├── ephyr │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── README │ │ ├── ephyr.c │ │ ├── ephyr.h │ │ ├── ephyr_draw.c │ │ ├── ephyr_glamor_glx.c │ │ ├── ephyr_glamor_glx.h │ │ ├── ephyr_glamor_xv.c │ │ ├── ephyrcursor.c │ │ ├── ephyrinit.c │ │ ├── ephyrlog.h │ │ ├── ephyrvideo.c │ │ ├── hostx.c │ │ ├── hostx.h │ │ ├── man │ │ │ ├── Makefile.am │ │ │ └── Xephyr.man │ │ └── meson.build │ ├── meson.build │ └── src │ │ ├── Makefile.am │ │ ├── fourcc.h │ │ ├── kcmap.c │ │ ├── kdrive.c │ │ ├── kdrive.h │ │ ├── kinfo.c │ │ ├── kinput.c │ │ ├── kshadow.c │ │ ├── kxv.c │ │ ├── kxv.h │ │ └── meson.build ├── meson.build ├── vfb │ ├── .gitignore │ ├── InitInput.c │ ├── InitOutput.c │ ├── Makefile.am │ ├── man │ │ ├── Makefile.am │ │ └── Xvfb.man │ └── meson.build ├── xfree86 │ ├── .gitignore │ ├── Makefile.am │ ├── Xorg.sh.in │ ├── common │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── compiler.h │ │ ├── dgaproc.h │ │ ├── extramodes │ │ ├── fourcc.h │ │ ├── meson.build │ │ ├── modeline2c.awk │ │ ├── vesamodes │ │ ├── xaarop.h │ │ ├── xf86.h │ │ ├── xf86AutoConfig.c │ │ ├── xf86Build.h.in │ │ ├── xf86Build.sh │ │ ├── xf86Bus.c │ │ ├── xf86Bus.h │ │ ├── xf86Config.c │ │ ├── xf86Config.h │ │ ├── xf86Configure.c │ │ ├── xf86Cursor.c │ │ ├── xf86DGA.c │ │ ├── xf86DPMS.c │ │ ├── xf86Events.c │ │ ├── xf86Extensions.c │ │ ├── xf86Extensions.h │ │ ├── xf86Globals.c │ │ ├── xf86Helper.c │ │ ├── xf86InPriv.h │ │ ├── xf86Init.c │ │ ├── xf86MatchDrivers.h │ │ ├── xf86Mode.c │ │ ├── xf86Module.h │ │ ├── xf86Opt.h │ │ ├── xf86Option.c │ │ ├── xf86Optionstr.h │ │ ├── xf86PM.c │ │ ├── xf86PciInfo.h │ │ ├── xf86Priv.h │ │ ├── xf86Privstr.h │ │ ├── xf86RandR.c │ │ ├── xf86VGAarbiter.c │ │ ├── xf86VGAarbiter.h │ │ ├── xf86VGAarbiterPriv.h │ │ ├── xf86VidMode.c │ │ ├── xf86Xinput.c │ │ ├── xf86Xinput.h │ │ ├── xf86cmap.c │ │ ├── xf86cmap.h │ │ ├── xf86fbBus.c │ │ ├── xf86fbman.c │ │ ├── xf86fbman.h │ │ ├── xf86noBus.c │ │ ├── xf86pciBus.c │ │ ├── xf86pciBus.h │ │ ├── xf86platformBus.c │ │ ├── xf86platformBus.h │ │ ├── xf86sbusBus.c │ │ ├── xf86sbusBus.h │ │ ├── xf86str.h │ │ ├── xf86xv.c │ │ ├── xf86xv.h │ │ ├── xf86xvmc.c │ │ ├── xf86xvmc.h │ │ ├── xf86xvpriv.h │ │ ├── xisb.c │ │ ├── xisb.h │ │ ├── xorgHelper.c │ │ └── xorgVersion.h │ ├── ddc │ │ ├── DDC.HOWTO │ │ ├── Makefile.am │ │ ├── ddc.c │ │ ├── ddcProperty.c │ │ ├── edid.h │ │ ├── interpret_edid.c │ │ ├── meson.build │ │ ├── print_edid.c │ │ └── xf86DDC.h │ ├── dixmods │ │ ├── Makefile.am │ │ ├── fbmodule.c │ │ ├── glxmodule.c │ │ ├── meson.build │ │ └── shmodule.c │ ├── doc │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── README.modes │ │ ├── Registry │ │ ├── ddxDesign.xml │ │ └── exa-driver.txt │ ├── dri │ │ ├── Makefile.am │ │ ├── dri.c │ │ ├── dri.h │ │ ├── dristruct.h │ │ ├── meson.build │ │ ├── sarea.h │ │ └── xf86dri.c │ ├── dri2 │ │ ├── Makefile.am │ │ ├── dri2.c │ │ ├── dri2.h │ │ ├── dri2ext.c │ │ ├── dri2int.h │ │ ├── meson.build │ │ └── pci_ids │ │ │ ├── Makefile.am │ │ │ ├── i810_pci_ids.h │ │ │ ├── i915_pci_ids.h │ │ │ ├── i965_pci_ids.h │ │ │ ├── pci_id_driver_map.h │ │ │ ├── r200_pci_ids.h │ │ │ ├── r300_pci_ids.h │ │ │ ├── r600_pci_ids.h │ │ │ ├── radeon_pci_ids.h │ │ │ ├── radeonsi_pci_ids.h │ │ │ ├── virtio_gpu_pci_ids.h │ │ │ └── vmwgfx_pci_ids.h │ ├── drivers │ │ ├── Makefile.am │ │ └── modesetting │ │ │ ├── Makefile.am │ │ │ ├── dri2.c │ │ │ ├── dri3.c │ │ │ ├── driver.c │ │ │ ├── driver.h │ │ │ ├── drmmode_display.c │ │ │ ├── drmmode_display.h │ │ │ ├── dumb_bo.c │ │ │ ├── dumb_bo.h │ │ │ ├── exa.c │ │ │ ├── meson.build │ │ │ ├── modesetting.man │ │ │ ├── pageflip.c │ │ │ ├── present.c │ │ │ ├── vblank.c │ │ │ └── xv.c │ ├── exa │ │ ├── Makefile.am │ │ ├── examodule.c │ │ ├── man │ │ │ ├── Makefile.am │ │ │ └── exa.man │ │ └── meson.build │ ├── fbdevhw │ │ ├── Makefile.am │ │ ├── README │ │ ├── fbdevhw.c │ │ ├── fbdevhw.h │ │ ├── fbdevhwstub.c │ │ ├── fbpriv.h │ │ ├── man │ │ │ ├── Makefile.am │ │ │ └── fbdevhw.man │ │ └── meson.build │ ├── glamor_egl │ │ ├── Makefile.am │ │ ├── glamor_xf86_xv.c │ │ └── meson.build │ ├── i2c │ │ ├── Makefile.am │ │ ├── i2c_def.h │ │ ├── meson.build │ │ ├── xf86i2c.c │ │ └── xf86i2c.h │ ├── int10 │ │ ├── INT10.HOWTO │ │ ├── Makefile.am │ │ ├── generic.c │ │ ├── helper_exec.c │ │ ├── helper_mem.c │ │ ├── meson.build │ │ ├── stub.c │ │ ├── x86emu.c │ │ ├── xf86int10.c │ │ ├── xf86int10.h │ │ ├── xf86int10module.c │ │ ├── xf86x86emu.c │ │ └── xf86x86emu.h │ ├── loader │ │ ├── Makefile.am │ │ ├── loader.c │ │ ├── loader.h │ │ ├── loaderProcs.h │ │ ├── loadmod.c │ │ ├── meson.build │ │ └── symbol-test.c │ ├── man │ │ ├── Makefile.am │ │ ├── Xorg.man │ │ ├── Xorg.wrap.man │ │ ├── Xwrapper.config.man │ │ ├── xorg.conf.d.man │ │ └── xorg.conf.man │ ├── meson.build │ ├── modes │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── xf86Crtc.c │ │ ├── xf86Crtc.h │ │ ├── xf86Cursors.c │ │ ├── xf86DiDGA.c │ │ ├── xf86EdidModes.c │ │ ├── xf86Modes.c │ │ ├── xf86Modes.h │ │ ├── xf86RandR12.c │ │ ├── xf86RandR12.h │ │ ├── xf86Rotate.c │ │ ├── xf86cvt.c │ │ └── xf86gtf.c │ ├── os-support │ │ ├── Makefile.am │ │ ├── bsd │ │ │ ├── Makefile.am │ │ │ ├── alpha_video.c │ │ │ ├── arm_video.c │ │ │ ├── bsd_VTsw.c │ │ │ ├── bsd_apm.c │ │ │ ├── bsd_bell.c │ │ │ ├── bsd_ev56.c │ │ │ ├── bsd_init.c │ │ │ ├── bsd_kmod.c │ │ │ ├── bsd_kqueue_apm.c │ │ │ ├── i386_video.c │ │ │ ├── memrange.h │ │ │ ├── ppc_video.c │ │ │ └── sparc64_video.c │ │ ├── bus │ │ │ ├── Makefile.am │ │ │ ├── Pci.c │ │ │ ├── Pci.h │ │ │ ├── Sbus.c │ │ │ ├── bsd_pci.c │ │ │ ├── nobus.c │ │ │ ├── xf86Pci.h │ │ │ └── xf86Sbus.h │ │ ├── hurd │ │ │ ├── Makefile.am │ │ │ ├── hurd_bell.c │ │ │ ├── hurd_init.c │ │ │ └── hurd_video.c │ │ ├── int10Defines.h │ │ ├── linux │ │ │ ├── Makefile.am │ │ │ ├── int10 │ │ │ │ ├── linux.c │ │ │ │ └── vm86 │ │ │ │ │ └── linux_vm86.c │ │ │ ├── linux.h │ │ │ ├── lnx_acpi.c │ │ │ ├── lnx_agp.c │ │ │ ├── lnx_apm.c │ │ │ ├── lnx_bell.c │ │ │ ├── lnx_ev56.c │ │ │ ├── lnx_init.c │ │ │ ├── lnx_kmod.c │ │ │ ├── lnx_platform.c │ │ │ ├── lnx_video.c │ │ │ └── systemd-logind.c │ │ ├── meson.build │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ └── SlowBcopy.c │ │ ├── shared │ │ │ ├── VTsw_noop.c │ │ │ ├── VTsw_usl.c │ │ │ ├── agp_noop.c │ │ │ ├── ioperm_noop.c │ │ │ ├── kmod_noop.c │ │ │ ├── platform_noop.c │ │ │ ├── pm_noop.c │ │ │ ├── posix_tty.c │ │ │ ├── sigio.c │ │ │ ├── sigiostubs.c │ │ │ └── vidmem.c │ │ ├── solaris │ │ │ ├── Makefile.am │ │ │ ├── solaris-amd64.S │ │ │ ├── solaris-ia32.S │ │ │ ├── solaris-sparcv8plus.S │ │ │ ├── sun_VTsw.c │ │ │ ├── sun_agp.c │ │ │ ├── sun_apm.c │ │ │ ├── sun_bell.c │ │ │ ├── sun_init.c │ │ │ ├── sun_inout.s │ │ │ └── sun_vid.c │ │ ├── stub │ │ │ ├── Makefile.am │ │ │ ├── stub_bell.c │ │ │ ├── stub_init.c │ │ │ └── stub_video.c │ │ ├── xf86OSpriv.h │ │ ├── xf86_OSlib.h │ │ └── xf86_OSproc.h │ ├── parser │ │ ├── Configint.h │ │ ├── DRI.c │ │ ├── Device.c │ │ ├── Extensions.c │ │ ├── Files.c │ │ ├── Flags.c │ │ ├── Input.c │ │ ├── InputClass.c │ │ ├── Layout.c │ │ ├── Makefile.am │ │ ├── Module.c │ │ ├── Monitor.c │ │ ├── OutputClass.c │ │ ├── Pointer.c │ │ ├── Screen.c │ │ ├── Vendor.c │ │ ├── Video.c │ │ ├── configProcs.h │ │ ├── meson.build │ │ ├── read.c │ │ ├── scan.c │ │ ├── write.c │ │ ├── xf86Optrec.h │ │ ├── xf86Parser.h │ │ └── xf86tokens.h │ ├── ramdac │ │ ├── BT.c │ │ ├── BT.h │ │ ├── BTPriv.h │ │ ├── CURSOR.NOTES │ │ ├── IBM.c │ │ ├── IBM.h │ │ ├── IBMPriv.h │ │ ├── Makefile.am │ │ ├── TI.c │ │ ├── TI.h │ │ ├── TIPriv.h │ │ ├── meson.build │ │ ├── xf86Cursor.h │ │ ├── xf86CursorPriv.h │ │ ├── xf86CursorRD.c │ │ ├── xf86HWCurs.c │ │ ├── xf86RamDac.c │ │ ├── xf86RamDac.h │ │ ├── xf86RamDacCmap.c │ │ └── xf86RamDacPriv.h │ ├── sdksyms.sh │ ├── shadowfb │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── sfbmodule.c │ │ ├── shadowfb.c │ │ └── shadowfb.h │ ├── utils │ │ ├── Makefile.am │ │ ├── cvt │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── cvt.c │ │ ├── gtf │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ └── gtf.c │ │ └── man │ │ │ ├── Makefile.am │ │ │ ├── cvt.man │ │ │ └── gtf.man │ ├── vbe │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── vbe.c │ │ ├── vbe.h │ │ ├── vbeModes.c │ │ ├── vbeModes.h │ │ └── vbe_module.c │ ├── vgahw │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── vgaHW.c │ │ ├── vgaHW.h │ │ └── vgaHWmodule.c │ ├── x86emu │ │ ├── Makefile.am │ │ ├── debug.c │ │ ├── decode.c │ │ ├── fpu.c │ │ ├── meson.build │ │ ├── ops.c │ │ ├── ops2.c │ │ ├── prim_ops.c │ │ ├── sys.c │ │ ├── validate.c │ │ ├── x86emu.h │ │ └── x86emu │ │ │ ├── debug.h │ │ │ ├── decode.h │ │ │ ├── fpu.h │ │ │ ├── fpu_regs.h │ │ │ ├── ops.h │ │ │ ├── prim_asm.h │ │ │ ├── prim_ops.h │ │ │ ├── prim_x86_gcc.h │ │ │ ├── regs.h │ │ │ ├── types.h │ │ │ └── x86emui.h │ ├── xkb │ │ ├── Makefile.am │ │ ├── meson.build │ │ ├── xkbKillSrv.c │ │ ├── xkbPrivate.c │ │ └── xkbVT.c │ ├── xorg-wrapper.c │ └── xorgconf.cpp ├── xnest │ ├── .gitignore │ ├── Args.c │ ├── Args.h │ ├── Color.c │ ├── Color.h │ ├── Cursor.c │ ├── Display.c │ ├── Display.h │ ├── Drawable.h │ ├── Events.c │ ├── Events.h │ ├── Font.c │ ├── GC.c │ ├── GCOps.c │ ├── GCOps.h │ ├── Handlers.c │ ├── Handlers.h │ ├── Init.c │ ├── Init.h │ ├── Keyboard.c │ ├── Keyboard.h │ ├── Makefile.am │ ├── Pixmap.c │ ├── Pointer.c │ ├── Pointer.h │ ├── Screen.c │ ├── Screen.h │ ├── Visual.c │ ├── Visual.h │ ├── Window.c │ ├── XNCursor.h │ ├── XNFont.h │ ├── XNGC.h │ ├── XNPixmap.h │ ├── XNWindow.h │ ├── Xnest.h │ ├── icon │ ├── man │ │ ├── Makefile.am │ │ └── Xnest.man │ ├── meson.build │ ├── screensaver │ └── xnest-config.h ├── xquartz │ ├── GL │ │ ├── Makefile.am │ │ ├── capabilities.c │ │ ├── capabilities.h │ │ ├── glcontextmodes.c │ │ ├── glcontextmodes.h │ │ ├── indirect.c │ │ ├── visualConfigs.c │ │ └── visualConfigs.h │ ├── Makefile.am │ ├── X11Application.h │ ├── X11Application.m │ ├── X11Controller.h │ ├── X11Controller.m │ ├── applewm.c │ ├── applewmExt.h │ ├── bundle │ │ ├── .gitignore │ │ ├── Info.plist.cpp │ │ ├── Makefile.am │ │ ├── PkgInfo │ │ ├── Resources │ │ │ ├── Dutch.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── English.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── French.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── German.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Italian.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Japanese.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── Spanish.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── X11.icns │ │ │ ├── ar.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── ca.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── cs.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── da.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── el.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── fi.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── he.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── hr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── hu.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── ko.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── no.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── pl.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── pt.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── pt_PT.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── ro.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── ru.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── sk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── sv.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── th.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── tr.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── uk.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ ├── zh_CN.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ │ ├── designable.nib │ │ │ │ │ └── keyedobjects.nib │ │ │ └── zh_TW.lproj │ │ │ │ ├── Localizable.strings │ │ │ │ ├── locversion.plist │ │ │ │ └── main.nib │ │ │ │ ├── designable.nib │ │ │ │ └── keyedobjects.nib │ │ ├── X11.sh │ │ ├── Xquartz.plist │ │ ├── cpprules.in │ │ └── mk_bundke.sh │ ├── console_redirect.c │ ├── console_redirect.h │ ├── darwin.c │ ├── darwin.h │ ├── darwinEvents.c │ ├── darwinEvents.h │ ├── darwinXinput.c │ ├── darwinfb.h │ ├── keysym2ucs.c │ ├── keysym2ucs.h │ ├── mach-startup │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── bundle-main.c │ │ ├── launchd_fd.c │ │ ├── launchd_fd.h │ │ ├── mach_startup.defs │ │ ├── mach_startup_types.h │ │ └── stub.c │ ├── man │ │ ├── Makefile.am │ │ └── Xquartz.man │ ├── meson.build │ ├── pbproxy │ │ ├── .gitignore │ │ ├── Makefile.am │ │ ├── app-main.m │ │ ├── main.m │ │ ├── pbproxy.h │ │ ├── trick_autotools.c │ │ ├── x-input.m │ │ ├── x-selection.h │ │ └── x-selection.m │ ├── quartz.c │ ├── quartz.h │ ├── quartzCocoa.m │ ├── quartzCommon.h │ ├── quartzKeyboard.c │ ├── quartzKeyboard.h │ ├── quartzRandR.c │ ├── quartzRandR.h │ ├── quartzStartup.c │ ├── sanitizedCarbon.h │ ├── sanitizedCocoa.h │ └── xpr │ │ ├── Makefile.am │ │ ├── appledri.c │ │ ├── appledri.h │ │ ├── appledristr.h │ │ ├── dri.c │ │ ├── dri.h │ │ ├── driWrap.c │ │ ├── driWrap.h │ │ ├── dristruct.h │ │ ├── x-hash.c │ │ ├── x-hash.h │ │ ├── x-hook.c │ │ ├── x-hook.h │ │ ├── x-list.c │ │ ├── x-list.h │ │ ├── xpr.h │ │ ├── xprAppleWM.c │ │ ├── xprCursor.c │ │ ├── xprEvent.c │ │ ├── xprEvent.h │ │ ├── xprFrame.c │ │ └── xprScreen.c ├── xwayland │ ├── .gitignore │ ├── Makefile.am │ ├── drm.xml │ ├── meson.build │ ├── xwayland-cursor.c │ ├── xwayland-cvt.c │ ├── xwayland-glamor-eglstream.c │ ├── xwayland-glamor-gbm.c │ ├── xwayland-glamor-xv.c │ ├── xwayland-glamor.c │ ├── xwayland-input.c │ ├── xwayland-output.c │ ├── xwayland-present.c │ ├── xwayland-shm.c │ ├── xwayland-vidmode.c │ ├── xwayland.c │ └── xwayland.h └── xwin │ ├── .gitignore │ ├── InitInput.c │ ├── InitOutput.c │ ├── Makefile.am │ ├── X.ico │ ├── XWin.exe.manifest │ ├── XWin.rc │ ├── ddraw.h │ ├── dri │ ├── Makefile.am │ ├── meson.build │ ├── windowsdri.c │ └── windowsdri.h │ ├── glx │ ├── .gitignore │ ├── Makefile.am │ ├── dri_helpers.c │ ├── dri_helpers.h │ ├── gen_gl_wrappers.py │ ├── glshim.c │ ├── glthunk.c │ ├── glwindows.h │ ├── indirect.c │ ├── indirect.h │ ├── meson.build │ ├── wgl_ext_api.c │ ├── wgl_ext_api.h │ ├── winpriv.c │ └── winpriv.h │ ├── man │ ├── Makefile.am │ ├── XWin.man │ └── XWinrc.man │ ├── meson.build │ ├── propertystore.h │ ├── system.XWinrc │ ├── win.h │ ├── winSetAppUserModelID.c │ ├── winallpriv.c │ ├── winauth.c │ ├── winblock.c │ ├── winclipboard │ ├── Makefile.am │ ├── debug.c │ ├── internal.h │ ├── meson.build │ ├── textconv.c │ ├── thread.c │ ├── winclipboard.h │ ├── wndproc.c │ ├── xevents.c │ ├── xwinclip.c │ └── xwinclip.man │ ├── winclipboardinit.c │ ├── winclipboardwrappers.c │ ├── wincmap.c │ ├── winconfig.c │ ├── winconfig.h │ ├── wincreatewnd.c │ ├── wincursor.c │ ├── windialogs.c │ ├── windisplay.c │ ├── windisplay.h │ ├── winengine.c │ ├── winerror.c │ ├── winglobals.c │ ├── winglobals.h │ ├── winkeybd.c │ ├── winkeybd.h │ ├── winkeyhook.c │ ├── winkeynames.h │ ├── winlayouts.h │ ├── winmessages.h │ ├── winmisc.c │ ├── winmonitors.c │ ├── winmonitors.h │ ├── winmouse.c │ ├── winms.h │ ├── winmsg.c │ ├── winmsg.h │ ├── winmsgwindow.c │ ├── winmultiwindowclass.c │ ├── winmultiwindowclass.h │ ├── winmultiwindowicons.c │ ├── winmultiwindowicons.h │ ├── winmultiwindowshape.c │ ├── winmultiwindowwindow.c │ ├── winmultiwindowwm.c │ ├── winmultiwindowwndproc.c │ ├── winos.c │ ├── winprefs.c │ ├── winprefs.h │ ├── winprefslex.l │ ├── winprefsyacc.y │ ├── winprocarg.c │ ├── winrandr.c │ ├── winresource.h │ ├── winscrinit.c │ ├── winshadddnl.c │ ├── winshadgdi.c │ ├── wintaskbar.c │ ├── wintrayicon.c │ ├── winvalargs.c │ ├── winwakeup.c │ ├── winwin32rootless.c │ ├── winwin32rootlesswindow.c │ ├── winwin32rootlesswndproc.c │ ├── winwindow.c │ ├── winwindow.h │ ├── winwindowswm.c │ └── winwndproc.c ├── include ├── .gitignore ├── Makefile.am ├── XIstubs.h ├── Xprintf.h ├── busfault.h ├── callback.h ├── client.h ├── closestr.h ├── closure.h ├── colormap.h ├── colormapst.h ├── cursor.h ├── cursorstr.h ├── dbus-core.h ├── displaymode.h ├── dix-config-apple-verbatim.h ├── dix-config.h.in ├── dix.h ├── dixaccess.h ├── dixevents.h ├── dixfont.h ├── dixfontstr.h ├── dixgrabs.h ├── dixstruct.h ├── eventconvert.h ├── events.h ├── eventstr.h ├── exevents.h ├── extension.h ├── extinit.h ├── extnsionst.h ├── gc.h ├── gcstruct.h ├── globals.h ├── glx_extinit.h ├── glxvndabi.h ├── hotplug.h ├── input.h ├── inputstr.h ├── inpututils.h ├── list.h ├── meson.build ├── misc.h ├── miscstruct.h ├── nonsdk_extinit.h ├── opaque.h ├── optionstr.h ├── os.h ├── pixmap.h ├── pixmapstr.h ├── privates.h ├── probes.h ├── property.h ├── propertyst.h ├── protocol-versions.h ├── ptrveloc.h ├── region.h ├── regionstr.h ├── registry.h ├── resource.h ├── rgb.h ├── screenint.h ├── scrnintstr.h ├── selection.h ├── servermd.h ├── site.h ├── swaprep.h ├── swapreq.h ├── systemd-logind.h ├── validate.h ├── version-config.h.in ├── vidmodestr.h ├── window.h ├── windowstr.h ├── xkb-config.h.in ├── xkbfile.h ├── xkbrules.h ├── xkbsrv.h ├── xkbstr.h ├── xorg-config.h.in ├── xorg-config.h.meson.in ├── xorg-server.h.in ├── xorg-server.h.meson.in ├── xserver-properties.h ├── xserver_poll.h ├── xsha1.h ├── xwayland-config.h.in ├── xwayland-config.h.meson.in ├── xwin-config.h.in └── xwin-config.h.meson.in ├── m4 ├── ac_define_dir.m4 └── ax_pthread.m4 ├── man ├── Makefile.am └── Xserver.man ├── manpages.am ├── meson.build ├── meson_options.txt ├── mi ├── Makefile.am ├── meson.build ├── mi.h ├── miarc.c ├── mibitblt.c ├── micmap.c ├── micmap.h ├── micoord.h ├── micopy.c ├── midash.c ├── midispcur.c ├── mieq.c ├── miexpose.c ├── mifillarc.c ├── mifillarc.h ├── mifillrct.c ├── mifpoly.h ├── migc.c ├── migc.h ├── miglblt.c ├── miinitext.c ├── miline.h ├── mioverlay.c ├── mioverlay.h ├── mipointer.c ├── mipointer.h ├── mipointrst.h ├── mipoly.c ├── mipoly.h ├── mipolypnt.c ├── mipolyrect.c ├── mipolyseg.c ├── mipolytext.c ├── mipushpxl.c ├── miscanfill.h ├── miscrinit.c ├── misprite.c ├── misprite.h ├── mistruct.h ├── mivalidate.h ├── mivaltree.c ├── miwideline.c ├── miwideline.h ├── miwindow.c ├── mizerarc.c ├── mizerarc.h ├── mizerclip.c └── mizerline.c ├── miext ├── Makefile.am ├── damage │ ├── Makefile.am │ ├── damage.c │ ├── damage.h │ ├── damagestr.h │ └── meson.build ├── rootless │ ├── Makefile.am │ ├── README.txt │ ├── rootless.h │ ├── rootlessCommon.c │ ├── rootlessCommon.h │ ├── rootlessConfig.h │ ├── rootlessGC.c │ ├── rootlessScreen.c │ ├── rootlessValTree.c │ ├── rootlessWindow.c │ └── rootlessWindow.h ├── shadow │ ├── Makefile.am │ ├── c2p_core.h │ ├── meson.build │ ├── sh3224.c │ ├── shadow.c │ ├── shadow.h │ ├── shafb4.c │ ├── shafb8.c │ ├── shiplan2p4.c │ ├── shiplan2p8.c │ ├── shpacked.c │ ├── shplanar.c │ ├── shplanar8.c │ ├── shrot16pack.c │ ├── shrot16pack_180.c │ ├── shrot16pack_270.c │ ├── shrot16pack_270YX.c │ ├── shrot16pack_90.c │ ├── shrot16pack_90YX.c │ ├── shrot32pack.c │ ├── shrot32pack_180.c │ ├── shrot32pack_270.c │ ├── shrot32pack_90.c │ ├── shrot8pack.c │ ├── shrot8pack_180.c │ ├── shrot8pack_270.c │ ├── shrot8pack_90.c │ ├── shrotate.c │ ├── shrotpack.h │ └── shrotpackYX.h └── sync │ ├── Makefile.am │ ├── meson.build │ ├── misync.c │ ├── misync.h │ ├── misyncfd.c │ ├── misyncfd.h │ ├── misyncshm.c │ ├── misyncshm.h │ └── misyncstr.h ├── os ├── .gitignore ├── Makefile.am ├── WaitFor.c ├── access.c ├── auth.c ├── backtrace.c ├── busfault.c ├── client.c ├── connection.c ├── inputthread.c ├── io.c ├── log.c ├── meson.build ├── mitauth.c ├── oscolor.c ├── osdep.h ├── osinit.c ├── ospoll.c ├── ospoll.h ├── reallocarray.c ├── rpcauth.c ├── strcasecmp.c ├── strcasestr.c ├── strlcat.c ├── strlcpy.c ├── strndup.c ├── timingsafe_memcmp.c ├── utils.c ├── xdmauth.c ├── xdmcp.c ├── xprintf.c ├── xserver_poll.c ├── xsha1.c └── xstrans.c ├── present ├── Makefile.am ├── meson.build ├── present.c ├── present.h ├── present_event.c ├── present_execute.c ├── present_fake.c ├── present_fence.c ├── present_notify.c ├── present_priv.h ├── present_request.c ├── present_scmd.c ├── present_screen.c ├── present_vblank.c ├── present_wnmd.c └── presentext.h ├── pseudoramiX ├── Makefile.am ├── meson.build ├── pseudoramiX.c └── pseudoramiX.h ├── randr ├── Makefile.am ├── meson.build ├── randr.c ├── randrstr.h ├── rrcrtc.c ├── rrdispatch.c ├── rrinfo.c ├── rrlease.c ├── rrmode.c ├── rrmonitor.c ├── rroutput.c ├── rrpointer.c ├── rrproperty.c ├── rrprovider.c ├── rrproviderproperty.c ├── rrscreen.c ├── rrsdispatch.c ├── rrtransform.c ├── rrtransform.h └── rrxinerama.c ├── record ├── Makefile.am ├── meson.build ├── record.c ├── set.c └── set.h ├── render ├── Makefile.am ├── animcur.c ├── filter.c ├── glyph.c ├── glyphstr.h ├── matrix.c ├── meson.build ├── miindex.c ├── mipict.c ├── mipict.h ├── mirect.c ├── mitrap.c ├── mitri.c ├── picture.c ├── picture.h ├── picturestr.h └── render.c ├── test ├── .gitignore ├── Makefile.am ├── README ├── bigreq │ ├── meson.build │ └── request-length.c ├── fixes.c ├── hashtabletest.c ├── input.c ├── list.c ├── meson.build ├── misc.c ├── scripts │ ├── build-travis-osx.sh │ ├── run-piglit.sh │ ├── xephyr-glamor-piglit.sh │ ├── xinit-piglit-session.sh │ └── xvfb-piglit.sh ├── signal-logging.c ├── simple-xinit.c ├── string.c ├── sync │ ├── meson.build │ └── sync.c ├── test_xkb.c ├── tests-common.c ├── tests-common.h ├── tests.c ├── tests.h ├── touch.c ├── xfree86.c ├── xi1 │ └── protocol-xchangedevicecontrol.c ├── xi2 │ ├── protocol-common.c │ ├── protocol-common.h │ ├── protocol-eventconvert.c │ ├── protocol-xigetclientpointer.c │ ├── protocol-xigetselectedevents.c │ ├── protocol-xipassivegrabdevice.c │ ├── protocol-xiquerydevice.c │ ├── protocol-xiquerypointer.c │ ├── protocol-xiqueryversion.c │ ├── protocol-xiselectevents.c │ ├── protocol-xisetclientpointer.c │ ├── protocol-xiwarppointer.c │ └── xi2.c └── xtest.c ├── xfixes ├── Makefile.am ├── cursor.c ├── meson.build ├── region.c ├── saveset.c ├── select.c ├── xfixes.c ├── xfixes.h └── xfixesint.h ├── xkb ├── Makefile.am ├── README.compiled ├── XKBAlloc.c ├── XKBGAlloc.c ├── XKBMAlloc.c ├── XKBMisc.c ├── XKM_file_format.txt ├── ddxBeep.c ├── ddxCtrls.c ├── ddxKillSrv.c ├── ddxLEDs.c ├── ddxLoad.c ├── ddxPrivate.c ├── ddxVT.c ├── maprules.c ├── meson.build ├── xkb.c ├── xkb.h ├── xkbAccessX.c ├── xkbActions.c ├── xkbDflts.h ├── xkbEvents.c ├── xkbInit.c ├── xkbLEDs.c ├── xkbPrKeyEv.c ├── xkbSwap.c ├── xkbUtils.c ├── xkbfmisc.c ├── xkbgeom.h ├── xkbout.c ├── xkbtext.c └── xkmread.c ├── xorg-server.m4 ├── xorg-server.pc.in └── xserver.ent.in /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.gitlab-ci/Dockerfile -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/README.md -------------------------------------------------------------------------------- /Xext/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/Makefile.am -------------------------------------------------------------------------------- /Xext/bigreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/bigreq.c -------------------------------------------------------------------------------- /Xext/dpms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/dpms.c -------------------------------------------------------------------------------- /Xext/dpmsproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/dpmsproc.h -------------------------------------------------------------------------------- /Xext/geext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/geext.c -------------------------------------------------------------------------------- /Xext/geext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/geext.h -------------------------------------------------------------------------------- /Xext/geint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/geint.h -------------------------------------------------------------------------------- /Xext/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/hashtable.c -------------------------------------------------------------------------------- /Xext/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/hashtable.h -------------------------------------------------------------------------------- /Xext/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/meson.build -------------------------------------------------------------------------------- /Xext/panoramiX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiX.c -------------------------------------------------------------------------------- /Xext/panoramiX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiX.h -------------------------------------------------------------------------------- /Xext/panoramiXSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiXSwap.c -------------------------------------------------------------------------------- /Xext/panoramiXh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiXh.h -------------------------------------------------------------------------------- /Xext/panoramiXprocs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiXprocs.c -------------------------------------------------------------------------------- /Xext/panoramiXsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/panoramiXsrv.h -------------------------------------------------------------------------------- /Xext/saver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/saver.c -------------------------------------------------------------------------------- /Xext/security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/security.c -------------------------------------------------------------------------------- /Xext/securitysrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/securitysrv.h -------------------------------------------------------------------------------- /Xext/shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/shape.c -------------------------------------------------------------------------------- /Xext/shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/shm.c -------------------------------------------------------------------------------- /Xext/shmint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/shmint.h -------------------------------------------------------------------------------- /Xext/sleepuntil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/sleepuntil.c -------------------------------------------------------------------------------- /Xext/sleepuntil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/sleepuntil.h -------------------------------------------------------------------------------- /Xext/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/sync.c -------------------------------------------------------------------------------- /Xext/syncsdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/syncsdk.h -------------------------------------------------------------------------------- /Xext/syncsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/syncsrv.h -------------------------------------------------------------------------------- /Xext/vidmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/vidmode.c -------------------------------------------------------------------------------- /Xext/xace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xace.c -------------------------------------------------------------------------------- /Xext/xace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xace.h -------------------------------------------------------------------------------- /Xext/xacestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xacestr.h -------------------------------------------------------------------------------- /Xext/xcmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xcmisc.c -------------------------------------------------------------------------------- /Xext/xf86bigfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xf86bigfont.c -------------------------------------------------------------------------------- /Xext/xf86bigfontsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xf86bigfontsrv.h -------------------------------------------------------------------------------- /Xext/xres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xres.c -------------------------------------------------------------------------------- /Xext/xselinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xselinux.h -------------------------------------------------------------------------------- /Xext/xselinux_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xselinux_ext.c -------------------------------------------------------------------------------- /Xext/xselinux_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xselinux_hooks.c -------------------------------------------------------------------------------- /Xext/xselinux_label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xselinux_label.c -------------------------------------------------------------------------------- /Xext/xselinuxint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xselinuxint.h -------------------------------------------------------------------------------- /Xext/xtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xtest.c -------------------------------------------------------------------------------- /Xext/xvdisp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvdisp.c -------------------------------------------------------------------------------- /Xext/xvdisp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvdisp.h -------------------------------------------------------------------------------- /Xext/xvdix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvdix.h -------------------------------------------------------------------------------- /Xext/xvmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvmain.c -------------------------------------------------------------------------------- /Xext/xvmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvmc.c -------------------------------------------------------------------------------- /Xext/xvmcext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xext/xvmcext.h -------------------------------------------------------------------------------- /Xi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/Makefile.am -------------------------------------------------------------------------------- /Xi/allowev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/allowev.c -------------------------------------------------------------------------------- /Xi/allowev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/allowev.h -------------------------------------------------------------------------------- /Xi/chgdctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgdctl.c -------------------------------------------------------------------------------- /Xi/chgdctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgdctl.h -------------------------------------------------------------------------------- /Xi/chgfctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgfctl.c -------------------------------------------------------------------------------- /Xi/chgfctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgfctl.h -------------------------------------------------------------------------------- /Xi/chgkbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgkbd.c -------------------------------------------------------------------------------- /Xi/chgkbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgkbd.h -------------------------------------------------------------------------------- /Xi/chgkmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgkmap.c -------------------------------------------------------------------------------- /Xi/chgkmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgkmap.h -------------------------------------------------------------------------------- /Xi/chgprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgprop.c -------------------------------------------------------------------------------- /Xi/chgprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgprop.h -------------------------------------------------------------------------------- /Xi/chgptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgptr.c -------------------------------------------------------------------------------- /Xi/chgptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/chgptr.h -------------------------------------------------------------------------------- /Xi/closedev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/closedev.c -------------------------------------------------------------------------------- /Xi/closedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/closedev.h -------------------------------------------------------------------------------- /Xi/devbell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/devbell.c -------------------------------------------------------------------------------- /Xi/devbell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/devbell.h -------------------------------------------------------------------------------- /Xi/exevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/exevents.c -------------------------------------------------------------------------------- /Xi/exglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/exglobals.h -------------------------------------------------------------------------------- /Xi/extinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/extinit.c -------------------------------------------------------------------------------- /Xi/getbmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getbmap.c -------------------------------------------------------------------------------- /Xi/getbmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getbmap.h -------------------------------------------------------------------------------- /Xi/getdctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getdctl.c -------------------------------------------------------------------------------- /Xi/getdctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getdctl.h -------------------------------------------------------------------------------- /Xi/getfctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getfctl.c -------------------------------------------------------------------------------- /Xi/getfctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getfctl.h -------------------------------------------------------------------------------- /Xi/getfocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getfocus.c -------------------------------------------------------------------------------- /Xi/getfocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getfocus.h -------------------------------------------------------------------------------- /Xi/getkmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getkmap.c -------------------------------------------------------------------------------- /Xi/getkmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getkmap.h -------------------------------------------------------------------------------- /Xi/getmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getmmap.c -------------------------------------------------------------------------------- /Xi/getmmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getmmap.h -------------------------------------------------------------------------------- /Xi/getprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getprop.c -------------------------------------------------------------------------------- /Xi/getprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getprop.h -------------------------------------------------------------------------------- /Xi/getselev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getselev.c -------------------------------------------------------------------------------- /Xi/getselev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getselev.h -------------------------------------------------------------------------------- /Xi/getvers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getvers.c -------------------------------------------------------------------------------- /Xi/getvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/getvers.h -------------------------------------------------------------------------------- /Xi/grabdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdev.c -------------------------------------------------------------------------------- /Xi/grabdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdev.h -------------------------------------------------------------------------------- /Xi/grabdevb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdevb.c -------------------------------------------------------------------------------- /Xi/grabdevb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdevb.h -------------------------------------------------------------------------------- /Xi/grabdevk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdevk.c -------------------------------------------------------------------------------- /Xi/grabdevk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/grabdevk.h -------------------------------------------------------------------------------- /Xi/gtmotion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/gtmotion.c -------------------------------------------------------------------------------- /Xi/gtmotion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/gtmotion.h -------------------------------------------------------------------------------- /Xi/listdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/listdev.c -------------------------------------------------------------------------------- /Xi/listdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/listdev.h -------------------------------------------------------------------------------- /Xi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/meson.build -------------------------------------------------------------------------------- /Xi/opendev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/opendev.c -------------------------------------------------------------------------------- /Xi/opendev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/opendev.h -------------------------------------------------------------------------------- /Xi/queryst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/queryst.c -------------------------------------------------------------------------------- /Xi/queryst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/queryst.h -------------------------------------------------------------------------------- /Xi/selectev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/selectev.c -------------------------------------------------------------------------------- /Xi/selectev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/selectev.h -------------------------------------------------------------------------------- /Xi/sendexev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/sendexev.c -------------------------------------------------------------------------------- /Xi/sendexev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/sendexev.h -------------------------------------------------------------------------------- /Xi/setbmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setbmap.c -------------------------------------------------------------------------------- /Xi/setbmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setbmap.h -------------------------------------------------------------------------------- /Xi/setdval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setdval.c -------------------------------------------------------------------------------- /Xi/setdval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setdval.h -------------------------------------------------------------------------------- /Xi/setfocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setfocus.c -------------------------------------------------------------------------------- /Xi/setfocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setfocus.h -------------------------------------------------------------------------------- /Xi/setmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setmmap.c -------------------------------------------------------------------------------- /Xi/setmmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setmmap.h -------------------------------------------------------------------------------- /Xi/setmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setmode.c -------------------------------------------------------------------------------- /Xi/setmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/setmode.h -------------------------------------------------------------------------------- /Xi/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/stubs.c -------------------------------------------------------------------------------- /Xi/ungrdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdev.c -------------------------------------------------------------------------------- /Xi/ungrdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdev.h -------------------------------------------------------------------------------- /Xi/ungrdevb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdevb.c -------------------------------------------------------------------------------- /Xi/ungrdevb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdevb.h -------------------------------------------------------------------------------- /Xi/ungrdevk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdevk.c -------------------------------------------------------------------------------- /Xi/ungrdevk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/ungrdevk.h -------------------------------------------------------------------------------- /Xi/xiallowev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiallowev.c -------------------------------------------------------------------------------- /Xi/xiallowev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiallowev.h -------------------------------------------------------------------------------- /Xi/xibarriers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xibarriers.c -------------------------------------------------------------------------------- /Xi/xibarriers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xibarriers.h -------------------------------------------------------------------------------- /Xi/xichangecursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xichangecursor.c -------------------------------------------------------------------------------- /Xi/xichangecursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xichangecursor.h -------------------------------------------------------------------------------- /Xi/xichangehierarchy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xichangehierarchy.c -------------------------------------------------------------------------------- /Xi/xichangehierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xichangehierarchy.h -------------------------------------------------------------------------------- /Xi/xigetclientpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xigetclientpointer.c -------------------------------------------------------------------------------- /Xi/xigetclientpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xigetclientpointer.h -------------------------------------------------------------------------------- /Xi/xigrabdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xigrabdev.c -------------------------------------------------------------------------------- /Xi/xigrabdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xigrabdev.h -------------------------------------------------------------------------------- /Xi/xipassivegrab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xipassivegrab.c -------------------------------------------------------------------------------- /Xi/xipassivegrab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xipassivegrab.h -------------------------------------------------------------------------------- /Xi/xiproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiproperty.c -------------------------------------------------------------------------------- /Xi/xiproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiproperty.h -------------------------------------------------------------------------------- /Xi/xiquerydevice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiquerydevice.c -------------------------------------------------------------------------------- /Xi/xiquerydevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiquerydevice.h -------------------------------------------------------------------------------- /Xi/xiquerypointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiquerypointer.c -------------------------------------------------------------------------------- /Xi/xiquerypointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiquerypointer.h -------------------------------------------------------------------------------- /Xi/xiqueryversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiqueryversion.c -------------------------------------------------------------------------------- /Xi/xiqueryversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiqueryversion.h -------------------------------------------------------------------------------- /Xi/xiselectev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiselectev.c -------------------------------------------------------------------------------- /Xi/xiselectev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiselectev.h -------------------------------------------------------------------------------- /Xi/xisetclientpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xisetclientpointer.c -------------------------------------------------------------------------------- /Xi/xisetclientpointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xisetclientpointer.h -------------------------------------------------------------------------------- /Xi/xisetdevfocus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xisetdevfocus.c -------------------------------------------------------------------------------- /Xi/xisetdevfocus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xisetdevfocus.h -------------------------------------------------------------------------------- /Xi/xiwarppointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiwarppointer.c -------------------------------------------------------------------------------- /Xi/xiwarppointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/Xi/xiwarppointer.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/autogen.sh -------------------------------------------------------------------------------- /composite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/Makefile.am -------------------------------------------------------------------------------- /composite/compalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compalloc.c -------------------------------------------------------------------------------- /composite/compext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compext.c -------------------------------------------------------------------------------- /composite/compinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compinit.c -------------------------------------------------------------------------------- /composite/compint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compint.h -------------------------------------------------------------------------------- /composite/compoverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compoverlay.c -------------------------------------------------------------------------------- /composite/compwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/compwindow.c -------------------------------------------------------------------------------- /composite/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/composite/meson.build -------------------------------------------------------------------------------- /config/10-quirks.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/10-quirks.conf -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/Makefile.am -------------------------------------------------------------------------------- /config/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/config.c -------------------------------------------------------------------------------- /config/dbus-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/dbus-api -------------------------------------------------------------------------------- /config/dbus-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/dbus-core.c -------------------------------------------------------------------------------- /config/fdi2iclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/fdi2iclass.py -------------------------------------------------------------------------------- /config/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/hal.c -------------------------------------------------------------------------------- /config/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/meson.build -------------------------------------------------------------------------------- /config/udev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/udev.c -------------------------------------------------------------------------------- /config/wscons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/wscons.c -------------------------------------------------------------------------------- /config/x11-input.fdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/config/x11-input.fdi -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/configure.ac -------------------------------------------------------------------------------- /damageext/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/damageext/Makefile.am -------------------------------------------------------------------------------- /damageext/damageext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/damageext/damageext.c -------------------------------------------------------------------------------- /damageext/damageext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/damageext/damageext.h -------------------------------------------------------------------------------- /damageext/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/damageext/meson.build -------------------------------------------------------------------------------- /dbe/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/Makefile.am -------------------------------------------------------------------------------- /dbe/dbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/dbe.c -------------------------------------------------------------------------------- /dbe/dbestruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/dbestruct.h -------------------------------------------------------------------------------- /dbe/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/meson.build -------------------------------------------------------------------------------- /dbe/midbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/midbe.c -------------------------------------------------------------------------------- /dbe/midbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dbe/midbe.h -------------------------------------------------------------------------------- /devbook.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/devbook.am -------------------------------------------------------------------------------- /dix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/.gitignore -------------------------------------------------------------------------------- /dix/BuiltInAtoms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/BuiltInAtoms -------------------------------------------------------------------------------- /dix/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/Makefile.am -------------------------------------------------------------------------------- /dix/Xserver-dtrace.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/Xserver-dtrace.h.in -------------------------------------------------------------------------------- /dix/Xserver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/Xserver.d -------------------------------------------------------------------------------- /dix/atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/atom.c -------------------------------------------------------------------------------- /dix/buildatoms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/buildatoms -------------------------------------------------------------------------------- /dix/colormap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/colormap.c -------------------------------------------------------------------------------- /dix/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/cursor.c -------------------------------------------------------------------------------- /dix/devices.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/devices.c -------------------------------------------------------------------------------- /dix/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/dispatch.c -------------------------------------------------------------------------------- /dix/dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/dispatch.h -------------------------------------------------------------------------------- /dix/dixfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/dixfonts.c -------------------------------------------------------------------------------- /dix/dixutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/dixutils.c -------------------------------------------------------------------------------- /dix/enterleave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/enterleave.c -------------------------------------------------------------------------------- /dix/enterleave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/enterleave.h -------------------------------------------------------------------------------- /dix/eventconvert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/eventconvert.c -------------------------------------------------------------------------------- /dix/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/events.c -------------------------------------------------------------------------------- /dix/extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/extension.c -------------------------------------------------------------------------------- /dix/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/gc.c -------------------------------------------------------------------------------- /dix/getevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/getevents.c -------------------------------------------------------------------------------- /dix/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/globals.c -------------------------------------------------------------------------------- /dix/glyphcurs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/glyphcurs.c -------------------------------------------------------------------------------- /dix/grabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/grabs.c -------------------------------------------------------------------------------- /dix/initatoms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/initatoms.c -------------------------------------------------------------------------------- /dix/inpututils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/inpututils.c -------------------------------------------------------------------------------- /dix/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/main.c -------------------------------------------------------------------------------- /dix/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/meson.build -------------------------------------------------------------------------------- /dix/pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/pixmap.c -------------------------------------------------------------------------------- /dix/privates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/privates.c -------------------------------------------------------------------------------- /dix/property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/property.c -------------------------------------------------------------------------------- /dix/protocol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/protocol.txt -------------------------------------------------------------------------------- /dix/ptrveloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/ptrveloc.c -------------------------------------------------------------------------------- /dix/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/region.c -------------------------------------------------------------------------------- /dix/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/registry.c -------------------------------------------------------------------------------- /dix/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/resource.c -------------------------------------------------------------------------------- /dix/selection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/selection.c -------------------------------------------------------------------------------- /dix/stubmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/stubmain.c -------------------------------------------------------------------------------- /dix/swaprep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/swaprep.c -------------------------------------------------------------------------------- /dix/swapreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/swapreq.c -------------------------------------------------------------------------------- /dix/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/tables.c -------------------------------------------------------------------------------- /dix/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/touch.c -------------------------------------------------------------------------------- /dix/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dix/window.c -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/Xinput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/Xinput.xml -------------------------------------------------------------------------------- /doc/Xserver-spec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/Xserver-spec.xml -------------------------------------------------------------------------------- /doc/c-extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/c-extensions -------------------------------------------------------------------------------- /doc/dtrace/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/dtrace/.gitignore -------------------------------------------------------------------------------- /doc/dtrace/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/dtrace/Makefile.am -------------------------------------------------------------------------------- /doc/filter-xmlto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/filter-xmlto.sh -------------------------------------------------------------------------------- /doc/smartsched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/doc/smartsched -------------------------------------------------------------------------------- /docbook.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/docbook.am -------------------------------------------------------------------------------- /dri3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/Makefile.am -------------------------------------------------------------------------------- /dri3/dri3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/dri3.c -------------------------------------------------------------------------------- /dri3/dri3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/dri3.h -------------------------------------------------------------------------------- /dri3/dri3_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/dri3_priv.h -------------------------------------------------------------------------------- /dri3/dri3_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/dri3_request.c -------------------------------------------------------------------------------- /dri3/dri3_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/dri3_screen.c -------------------------------------------------------------------------------- /dri3/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/dri3/meson.build -------------------------------------------------------------------------------- /exa/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/Makefile.am -------------------------------------------------------------------------------- /exa/exa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa.c -------------------------------------------------------------------------------- /exa/exa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa.h -------------------------------------------------------------------------------- /exa/exa_accel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_accel.c -------------------------------------------------------------------------------- /exa/exa_classic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_classic.c -------------------------------------------------------------------------------- /exa/exa_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_driver.c -------------------------------------------------------------------------------- /exa/exa_glyphs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_glyphs.c -------------------------------------------------------------------------------- /exa/exa_mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_mixed.c -------------------------------------------------------------------------------- /exa/exa_offscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_offscreen.c -------------------------------------------------------------------------------- /exa/exa_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_priv.h -------------------------------------------------------------------------------- /exa/exa_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_render.c -------------------------------------------------------------------------------- /exa/exa_unaccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/exa_unaccel.c -------------------------------------------------------------------------------- /exa/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/exa/meson.build -------------------------------------------------------------------------------- /fb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/Makefile.am -------------------------------------------------------------------------------- /fb/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fb.h -------------------------------------------------------------------------------- /fb/fballpriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fballpriv.c -------------------------------------------------------------------------------- /fb/fbarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbarc.c -------------------------------------------------------------------------------- /fb/fbbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbbits.c -------------------------------------------------------------------------------- /fb/fbbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbbits.h -------------------------------------------------------------------------------- /fb/fbblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbblt.c -------------------------------------------------------------------------------- /fb/fbbltone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbbltone.c -------------------------------------------------------------------------------- /fb/fbcmap_mi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbcmap_mi.c -------------------------------------------------------------------------------- /fb/fbcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbcopy.c -------------------------------------------------------------------------------- /fb/fbfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbfill.c -------------------------------------------------------------------------------- /fb/fbfillrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbfillrect.c -------------------------------------------------------------------------------- /fb/fbfillsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbfillsp.c -------------------------------------------------------------------------------- /fb/fbgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbgc.c -------------------------------------------------------------------------------- /fb/fbgetsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbgetsp.c -------------------------------------------------------------------------------- /fb/fbglyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbglyph.c -------------------------------------------------------------------------------- /fb/fbimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbimage.c -------------------------------------------------------------------------------- /fb/fbline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbline.c -------------------------------------------------------------------------------- /fb/fboverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fboverlay.c -------------------------------------------------------------------------------- /fb/fboverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fboverlay.h -------------------------------------------------------------------------------- /fb/fbpict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbpict.c -------------------------------------------------------------------------------- /fb/fbpict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbpict.h -------------------------------------------------------------------------------- /fb/fbpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbpixmap.c -------------------------------------------------------------------------------- /fb/fbpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbpoint.c -------------------------------------------------------------------------------- /fb/fbpush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbpush.c -------------------------------------------------------------------------------- /fb/fbrop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbrop.h -------------------------------------------------------------------------------- /fb/fbscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbscreen.c -------------------------------------------------------------------------------- /fb/fbseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbseg.c -------------------------------------------------------------------------------- /fb/fbsetsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbsetsp.c -------------------------------------------------------------------------------- /fb/fbsolid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbsolid.c -------------------------------------------------------------------------------- /fb/fbtrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbtrap.c -------------------------------------------------------------------------------- /fb/fbutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbutil.c -------------------------------------------------------------------------------- /fb/fbwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/fbwindow.c -------------------------------------------------------------------------------- /fb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/meson.build -------------------------------------------------------------------------------- /fb/wfbrename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fb/wfbrename.h -------------------------------------------------------------------------------- /fix-miregion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fix-miregion -------------------------------------------------------------------------------- /fix-miregion-private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fix-miregion-private -------------------------------------------------------------------------------- /fix-patch-whitespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fix-patch-whitespace -------------------------------------------------------------------------------- /fix-region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/fix-region -------------------------------------------------------------------------------- /glamor/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/Makefile.am -------------------------------------------------------------------------------- /glamor/glamor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor.c -------------------------------------------------------------------------------- /glamor/glamor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor.h -------------------------------------------------------------------------------- /glamor/glamor_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_context.h -------------------------------------------------------------------------------- /glamor/glamor_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_copy.c -------------------------------------------------------------------------------- /glamor/glamor_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_core.c -------------------------------------------------------------------------------- /glamor/glamor_dash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_dash.c -------------------------------------------------------------------------------- /glamor/glamor_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_debug.h -------------------------------------------------------------------------------- /glamor/glamor_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_egl.c -------------------------------------------------------------------------------- /glamor/glamor_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_egl.h -------------------------------------------------------------------------------- /glamor/glamor_egl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_egl_ext.h -------------------------------------------------------------------------------- /glamor/glamor_fbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_fbo.c -------------------------------------------------------------------------------- /glamor/glamor_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_font.c -------------------------------------------------------------------------------- /glamor/glamor_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_font.h -------------------------------------------------------------------------------- /glamor/glamor_glx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_glx.c -------------------------------------------------------------------------------- /glamor/glamor_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_image.c -------------------------------------------------------------------------------- /glamor/glamor_lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_lines.c -------------------------------------------------------------------------------- /glamor/glamor_picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_picture.c -------------------------------------------------------------------------------- /glamor/glamor_pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_pixmap.c -------------------------------------------------------------------------------- /glamor/glamor_points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_points.c -------------------------------------------------------------------------------- /glamor/glamor_prepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_prepare.c -------------------------------------------------------------------------------- /glamor/glamor_prepare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_prepare.h -------------------------------------------------------------------------------- /glamor/glamor_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_priv.h -------------------------------------------------------------------------------- /glamor/glamor_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_program.c -------------------------------------------------------------------------------- /glamor/glamor_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_program.h -------------------------------------------------------------------------------- /glamor/glamor_rects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_rects.c -------------------------------------------------------------------------------- /glamor/glamor_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_render.c -------------------------------------------------------------------------------- /glamor/glamor_segs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_segs.c -------------------------------------------------------------------------------- /glamor/glamor_spans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_spans.c -------------------------------------------------------------------------------- /glamor/glamor_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_sync.c -------------------------------------------------------------------------------- /glamor/glamor_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_text.c -------------------------------------------------------------------------------- /glamor/glamor_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_utils.c -------------------------------------------------------------------------------- /glamor/glamor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_utils.h -------------------------------------------------------------------------------- /glamor/glamor_vbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_vbo.c -------------------------------------------------------------------------------- /glamor/glamor_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_window.c -------------------------------------------------------------------------------- /glamor/glamor_xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/glamor_xv.c -------------------------------------------------------------------------------- /glamor/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glamor/meson.build -------------------------------------------------------------------------------- /glx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/Makefile.am -------------------------------------------------------------------------------- /glx/clientinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/clientinfo.c -------------------------------------------------------------------------------- /glx/createcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/createcontext.c -------------------------------------------------------------------------------- /glx/extension_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/extension_string.c -------------------------------------------------------------------------------- /glx/extension_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/extension_string.h -------------------------------------------------------------------------------- /glx/glxbyteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxbyteorder.h -------------------------------------------------------------------------------- /glx/glxcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxcmds.c -------------------------------------------------------------------------------- /glx/glxcmdsswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxcmdsswap.c -------------------------------------------------------------------------------- /glx/glxcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxcontext.h -------------------------------------------------------------------------------- /glx/glxdrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxdrawable.h -------------------------------------------------------------------------------- /glx/glxdri2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxdri2.c -------------------------------------------------------------------------------- /glx/glxdricommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxdricommon.c -------------------------------------------------------------------------------- /glx/glxdricommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxdricommon.h -------------------------------------------------------------------------------- /glx/glxdriswrast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxdriswrast.c -------------------------------------------------------------------------------- /glx/glxext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxext.c -------------------------------------------------------------------------------- /glx/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxext.h -------------------------------------------------------------------------------- /glx/glxscreens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxscreens.c -------------------------------------------------------------------------------- /glx/glxscreens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxscreens.h -------------------------------------------------------------------------------- /glx/glxserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxserver.h -------------------------------------------------------------------------------- /glx/glxutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/glxutil.h -------------------------------------------------------------------------------- /glx/indirect_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_dispatch.c -------------------------------------------------------------------------------- /glx/indirect_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_dispatch.h -------------------------------------------------------------------------------- /glx/indirect_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_program.c -------------------------------------------------------------------------------- /glx/indirect_reqsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_reqsize.c -------------------------------------------------------------------------------- /glx/indirect_reqsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_reqsize.h -------------------------------------------------------------------------------- /glx/indirect_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_size.h -------------------------------------------------------------------------------- /glx/indirect_size_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_size_get.c -------------------------------------------------------------------------------- /glx/indirect_size_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_size_get.h -------------------------------------------------------------------------------- /glx/indirect_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_table.c -------------------------------------------------------------------------------- /glx/indirect_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_table.h -------------------------------------------------------------------------------- /glx/indirect_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_util.c -------------------------------------------------------------------------------- /glx/indirect_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/indirect_util.h -------------------------------------------------------------------------------- /glx/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/meson.build -------------------------------------------------------------------------------- /glx/render2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/render2.c -------------------------------------------------------------------------------- /glx/render2swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/render2swap.c -------------------------------------------------------------------------------- /glx/renderpix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/renderpix.c -------------------------------------------------------------------------------- /glx/renderpixswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/renderpixswap.c -------------------------------------------------------------------------------- /glx/rensize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/rensize.c -------------------------------------------------------------------------------- /glx/single2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/single2.c -------------------------------------------------------------------------------- /glx/single2swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/single2swap.c -------------------------------------------------------------------------------- /glx/singlepix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/singlepix.c -------------------------------------------------------------------------------- /glx/singlepixswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/singlepixswap.c -------------------------------------------------------------------------------- /glx/singlesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/singlesize.c -------------------------------------------------------------------------------- /glx/singlesize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/singlesize.h -------------------------------------------------------------------------------- /glx/swap_interval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/swap_interval.c -------------------------------------------------------------------------------- /glx/unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/unpack.h -------------------------------------------------------------------------------- /glx/vndcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndcmds.c -------------------------------------------------------------------------------- /glx/vndext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndext.c -------------------------------------------------------------------------------- /glx/vndserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndserver.h -------------------------------------------------------------------------------- /glx/vndservermapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndservermapping.c -------------------------------------------------------------------------------- /glx/vndservervendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndservervendor.c -------------------------------------------------------------------------------- /glx/vndservervendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/vndservervendor.h -------------------------------------------------------------------------------- /glx/xfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/glx/xfont.c -------------------------------------------------------------------------------- /hw/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/Makefile.am -------------------------------------------------------------------------------- /hw/dmx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/.gitignore -------------------------------------------------------------------------------- /hw/dmx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/Makefile.am -------------------------------------------------------------------------------- /hw/dmx/config/Canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/Canvas.c -------------------------------------------------------------------------------- /hw/dmx/config/Canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/Canvas.h -------------------------------------------------------------------------------- /hw/dmx/config/CanvasP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/CanvasP.h -------------------------------------------------------------------------------- /hw/dmx/config/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/TODO -------------------------------------------------------------------------------- /hw/dmx/config/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/parser.y -------------------------------------------------------------------------------- /hw/dmx/config/scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/scanner.l -------------------------------------------------------------------------------- /hw/dmx/config/test-a.in: -------------------------------------------------------------------------------- 1 | error 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-b.in: -------------------------------------------------------------------------------- 1 | # comment 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-b.out: -------------------------------------------------------------------------------- 1 | # comment 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-c.in: -------------------------------------------------------------------------------- 1 | virtual 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-d.in: -------------------------------------------------------------------------------- 1 | display 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-e.in: -------------------------------------------------------------------------------- 1 | display; 2 | -------------------------------------------------------------------------------- /hw/dmx/config/test-f.in: -------------------------------------------------------------------------------- 1 | virtual { 2 | } 3 | -------------------------------------------------------------------------------- /hw/dmx/config/test-g.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/test-g.in -------------------------------------------------------------------------------- /hw/dmx/config/test-h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/test-h.in -------------------------------------------------------------------------------- /hw/dmx/config/test-i.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/test-i.in -------------------------------------------------------------------------------- /hw/dmx/config/test-j.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/test-j.in -------------------------------------------------------------------------------- /hw/dmx/config/test-k.in: -------------------------------------------------------------------------------- 1 | virtual a { 2 | option +xinerama -syncbatch 0; 3 | } 4 | -------------------------------------------------------------------------------- /hw/dmx/config/test-k.out: -------------------------------------------------------------------------------- 1 | virtual a { 2 | option "+xinerama -syncbatch 0"; 3 | } 4 | -------------------------------------------------------------------------------- /hw/dmx/config/test-l.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/config/test-l.in -------------------------------------------------------------------------------- /hw/dmx/dmx-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmx-config.h -------------------------------------------------------------------------------- /hw/dmx/dmx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmx.c -------------------------------------------------------------------------------- /hw/dmx/dmx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmx.h -------------------------------------------------------------------------------- /hw/dmx/dmx_glxvisuals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmx_glxvisuals.c -------------------------------------------------------------------------------- /hw/dmx/dmx_glxvisuals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmx_glxvisuals.h -------------------------------------------------------------------------------- /hw/dmx/dmxcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcb.c -------------------------------------------------------------------------------- /hw/dmx/dmxcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcb.h -------------------------------------------------------------------------------- /hw/dmx/dmxclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxclient.h -------------------------------------------------------------------------------- /hw/dmx/dmxcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcmap.c -------------------------------------------------------------------------------- /hw/dmx/dmxcmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcmap.h -------------------------------------------------------------------------------- /hw/dmx/dmxcursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcursor.c -------------------------------------------------------------------------------- /hw/dmx/dmxcursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxcursor.h -------------------------------------------------------------------------------- /hw/dmx/dmxdpms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxdpms.c -------------------------------------------------------------------------------- /hw/dmx/dmxdpms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxdpms.h -------------------------------------------------------------------------------- /hw/dmx/dmxextension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxextension.c -------------------------------------------------------------------------------- /hw/dmx/dmxextension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxextension.h -------------------------------------------------------------------------------- /hw/dmx/dmxfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxfont.c -------------------------------------------------------------------------------- /hw/dmx/dmxfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxfont.h -------------------------------------------------------------------------------- /hw/dmx/dmxgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxgc.c -------------------------------------------------------------------------------- /hw/dmx/dmxgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxgc.h -------------------------------------------------------------------------------- /hw/dmx/dmxgcops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxgcops.c -------------------------------------------------------------------------------- /hw/dmx/dmxgcops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxgcops.h -------------------------------------------------------------------------------- /hw/dmx/dmxinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxinit.c -------------------------------------------------------------------------------- /hw/dmx/dmxinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxinit.h -------------------------------------------------------------------------------- /hw/dmx/dmxinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxinput.c -------------------------------------------------------------------------------- /hw/dmx/dmxinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxinput.h -------------------------------------------------------------------------------- /hw/dmx/dmxlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxlog.c -------------------------------------------------------------------------------- /hw/dmx/dmxlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxlog.h -------------------------------------------------------------------------------- /hw/dmx/dmxpict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxpict.c -------------------------------------------------------------------------------- /hw/dmx/dmxpict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxpict.h -------------------------------------------------------------------------------- /hw/dmx/dmxpixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxpixmap.c -------------------------------------------------------------------------------- /hw/dmx/dmxpixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxpixmap.h -------------------------------------------------------------------------------- /hw/dmx/dmxprop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxprop.c -------------------------------------------------------------------------------- /hw/dmx/dmxprop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxprop.h -------------------------------------------------------------------------------- /hw/dmx/dmxscrinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxscrinit.c -------------------------------------------------------------------------------- /hw/dmx/dmxscrinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxscrinit.h -------------------------------------------------------------------------------- /hw/dmx/dmxstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxstat.c -------------------------------------------------------------------------------- /hw/dmx/dmxstat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxstat.h -------------------------------------------------------------------------------- /hw/dmx/dmxsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxsync.c -------------------------------------------------------------------------------- /hw/dmx/dmxsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxsync.h -------------------------------------------------------------------------------- /hw/dmx/dmxvisual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxvisual.c -------------------------------------------------------------------------------- /hw/dmx/dmxvisual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxvisual.h -------------------------------------------------------------------------------- /hw/dmx/dmxwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxwindow.c -------------------------------------------------------------------------------- /hw/dmx/dmxwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/dmxwindow.h -------------------------------------------------------------------------------- /hw/dmx/doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/doc/.gitignore -------------------------------------------------------------------------------- /hw/dmx/doc/DMXSpec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/doc/DMXSpec.txt -------------------------------------------------------------------------------- /hw/dmx/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/doc/Makefile.am -------------------------------------------------------------------------------- /hw/dmx/doc/dmx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/doc/dmx.xml -------------------------------------------------------------------------------- /hw/dmx/doc/scaled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/doc/scaled.xml -------------------------------------------------------------------------------- /hw/dmx/doxygen/.gitignore: -------------------------------------------------------------------------------- 1 | html/ 2 | doxygen.conf 3 | -------------------------------------------------------------------------------- /hw/dmx/examples/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/ev.c -------------------------------------------------------------------------------- /hw/dmx/examples/evi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/evi.c -------------------------------------------------------------------------------- /hw/dmx/examples/res.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/res.c -------------------------------------------------------------------------------- /hw/dmx/examples/xbell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/xbell.c -------------------------------------------------------------------------------- /hw/dmx/examples/xled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/xled.c -------------------------------------------------------------------------------- /hw/dmx/examples/xtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/examples/xtest.c -------------------------------------------------------------------------------- /hw/dmx/input/dmxarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxarg.c -------------------------------------------------------------------------------- /hw/dmx/input/dmxarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxarg.h -------------------------------------------------------------------------------- /hw/dmx/input/dmxdummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxdummy.c -------------------------------------------------------------------------------- /hw/dmx/input/dmxdummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxdummy.h -------------------------------------------------------------------------------- /hw/dmx/input/dmxmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxmap.c -------------------------------------------------------------------------------- /hw/dmx/input/dmxmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/input/dmxmap.h -------------------------------------------------------------------------------- /hw/dmx/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/man/Makefile.am -------------------------------------------------------------------------------- /hw/dmx/man/Xdmx.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/man/Xdmx.man -------------------------------------------------------------------------------- /hw/dmx/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/dmx/meson.build -------------------------------------------------------------------------------- /hw/kdrive/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/Makefile.am -------------------------------------------------------------------------------- /hw/kdrive/Xkdrive.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/Xkdrive.man -------------------------------------------------------------------------------- /hw/kdrive/ephyr/.gitignore: -------------------------------------------------------------------------------- 1 | Xephyr 2 | -------------------------------------------------------------------------------- /hw/kdrive/ephyr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/ephyr/README -------------------------------------------------------------------------------- /hw/kdrive/ephyr/ephyr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/ephyr/ephyr.c -------------------------------------------------------------------------------- /hw/kdrive/ephyr/ephyr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/ephyr/ephyr.h -------------------------------------------------------------------------------- /hw/kdrive/ephyr/hostx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/ephyr/hostx.c -------------------------------------------------------------------------------- /hw/kdrive/ephyr/hostx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/ephyr/hostx.h -------------------------------------------------------------------------------- /hw/kdrive/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/meson.build -------------------------------------------------------------------------------- /hw/kdrive/src/fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/fourcc.h -------------------------------------------------------------------------------- /hw/kdrive/src/kcmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kcmap.c -------------------------------------------------------------------------------- /hw/kdrive/src/kdrive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kdrive.c -------------------------------------------------------------------------------- /hw/kdrive/src/kdrive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kdrive.h -------------------------------------------------------------------------------- /hw/kdrive/src/kinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kinfo.c -------------------------------------------------------------------------------- /hw/kdrive/src/kinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kinput.c -------------------------------------------------------------------------------- /hw/kdrive/src/kshadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kshadow.c -------------------------------------------------------------------------------- /hw/kdrive/src/kxv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kxv.c -------------------------------------------------------------------------------- /hw/kdrive/src/kxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/kdrive/src/kxv.h -------------------------------------------------------------------------------- /hw/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/meson.build -------------------------------------------------------------------------------- /hw/vfb/.gitignore: -------------------------------------------------------------------------------- 1 | Xvfb 2 | -------------------------------------------------------------------------------- /hw/vfb/InitInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/InitInput.c -------------------------------------------------------------------------------- /hw/vfb/InitOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/InitOutput.c -------------------------------------------------------------------------------- /hw/vfb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/Makefile.am -------------------------------------------------------------------------------- /hw/vfb/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/man/Makefile.am -------------------------------------------------------------------------------- /hw/vfb/man/Xvfb.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/man/Xvfb.man -------------------------------------------------------------------------------- /hw/vfb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/vfb/meson.build -------------------------------------------------------------------------------- /hw/xfree86/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/.gitignore -------------------------------------------------------------------------------- /hw/xfree86/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/Makefile.am -------------------------------------------------------------------------------- /hw/xfree86/Xorg.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/Xorg.sh.in -------------------------------------------------------------------------------- /hw/xfree86/ddc/ddc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ddc/ddc.c -------------------------------------------------------------------------------- /hw/xfree86/ddc/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ddc/edid.h -------------------------------------------------------------------------------- /hw/xfree86/doc/Registry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/doc/Registry -------------------------------------------------------------------------------- /hw/xfree86/dri/dri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/dri/dri.c -------------------------------------------------------------------------------- /hw/xfree86/dri/dri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/dri/dri.h -------------------------------------------------------------------------------- /hw/xfree86/dri/sarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/dri/sarea.h -------------------------------------------------------------------------------- /hw/xfree86/dri2/dri2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/dri2/dri2.c -------------------------------------------------------------------------------- /hw/xfree86/dri2/dri2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/dri2/dri2.h -------------------------------------------------------------------------------- /hw/xfree86/int10/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/int10/stub.c -------------------------------------------------------------------------------- /hw/xfree86/man/Xorg.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/man/Xorg.man -------------------------------------------------------------------------------- /hw/xfree86/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/meson.build -------------------------------------------------------------------------------- /hw/xfree86/parser/DRI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/parser/DRI.c -------------------------------------------------------------------------------- /hw/xfree86/ramdac/BT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/BT.c -------------------------------------------------------------------------------- /hw/xfree86/ramdac/BT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/BT.h -------------------------------------------------------------------------------- /hw/xfree86/ramdac/IBM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/IBM.c -------------------------------------------------------------------------------- /hw/xfree86/ramdac/IBM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/IBM.h -------------------------------------------------------------------------------- /hw/xfree86/ramdac/TI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/TI.c -------------------------------------------------------------------------------- /hw/xfree86/ramdac/TI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/ramdac/TI.h -------------------------------------------------------------------------------- /hw/xfree86/sdksyms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/sdksyms.sh -------------------------------------------------------------------------------- /hw/xfree86/utils/cvt/.gitignore: -------------------------------------------------------------------------------- 1 | cvt 2 | -------------------------------------------------------------------------------- /hw/xfree86/utils/gtf/.gitignore: -------------------------------------------------------------------------------- 1 | gtf 2 | -------------------------------------------------------------------------------- /hw/xfree86/vbe/vbe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/vbe/vbe.c -------------------------------------------------------------------------------- /hw/xfree86/vbe/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/vbe/vbe.h -------------------------------------------------------------------------------- /hw/xfree86/x86emu/fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/x86emu/fpu.c -------------------------------------------------------------------------------- /hw/xfree86/x86emu/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/x86emu/ops.c -------------------------------------------------------------------------------- /hw/xfree86/x86emu/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/x86emu/sys.c -------------------------------------------------------------------------------- /hw/xfree86/xkb/xkbVT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/xkb/xkbVT.c -------------------------------------------------------------------------------- /hw/xfree86/xorgconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xfree86/xorgconf.cpp -------------------------------------------------------------------------------- /hw/xnest/.gitignore: -------------------------------------------------------------------------------- 1 | Xnest 2 | -------------------------------------------------------------------------------- /hw/xnest/Args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Args.c -------------------------------------------------------------------------------- /hw/xnest/Args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Args.h -------------------------------------------------------------------------------- /hw/xnest/Color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Color.c -------------------------------------------------------------------------------- /hw/xnest/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Color.h -------------------------------------------------------------------------------- /hw/xnest/Cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Cursor.c -------------------------------------------------------------------------------- /hw/xnest/Display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Display.c -------------------------------------------------------------------------------- /hw/xnest/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Display.h -------------------------------------------------------------------------------- /hw/xnest/Drawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Drawable.h -------------------------------------------------------------------------------- /hw/xnest/Events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Events.c -------------------------------------------------------------------------------- /hw/xnest/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Events.h -------------------------------------------------------------------------------- /hw/xnest/Font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Font.c -------------------------------------------------------------------------------- /hw/xnest/GC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/GC.c -------------------------------------------------------------------------------- /hw/xnest/GCOps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/GCOps.c -------------------------------------------------------------------------------- /hw/xnest/GCOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/GCOps.h -------------------------------------------------------------------------------- /hw/xnest/Handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Handlers.c -------------------------------------------------------------------------------- /hw/xnest/Handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Handlers.h -------------------------------------------------------------------------------- /hw/xnest/Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Init.c -------------------------------------------------------------------------------- /hw/xnest/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Init.h -------------------------------------------------------------------------------- /hw/xnest/Keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Keyboard.c -------------------------------------------------------------------------------- /hw/xnest/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Keyboard.h -------------------------------------------------------------------------------- /hw/xnest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Makefile.am -------------------------------------------------------------------------------- /hw/xnest/Pixmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Pixmap.c -------------------------------------------------------------------------------- /hw/xnest/Pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Pointer.c -------------------------------------------------------------------------------- /hw/xnest/Pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Pointer.h -------------------------------------------------------------------------------- /hw/xnest/Screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Screen.c -------------------------------------------------------------------------------- /hw/xnest/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Screen.h -------------------------------------------------------------------------------- /hw/xnest/Visual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Visual.c -------------------------------------------------------------------------------- /hw/xnest/Visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Visual.h -------------------------------------------------------------------------------- /hw/xnest/Window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Window.c -------------------------------------------------------------------------------- /hw/xnest/XNCursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/XNCursor.h -------------------------------------------------------------------------------- /hw/xnest/XNFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/XNFont.h -------------------------------------------------------------------------------- /hw/xnest/XNGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/XNGC.h -------------------------------------------------------------------------------- /hw/xnest/XNPixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/XNPixmap.h -------------------------------------------------------------------------------- /hw/xnest/XNWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/XNWindow.h -------------------------------------------------------------------------------- /hw/xnest/Xnest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/Xnest.h -------------------------------------------------------------------------------- /hw/xnest/icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/icon -------------------------------------------------------------------------------- /hw/xnest/man/Xnest.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/man/Xnest.man -------------------------------------------------------------------------------- /hw/xnest/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/meson.build -------------------------------------------------------------------------------- /hw/xnest/screensaver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/screensaver -------------------------------------------------------------------------------- /hw/xnest/xnest-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xnest/xnest-config.h -------------------------------------------------------------------------------- /hw/xquartz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/Makefile.am -------------------------------------------------------------------------------- /hw/xquartz/applewm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/applewm.c -------------------------------------------------------------------------------- /hw/xquartz/applewmExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/applewmExt.h -------------------------------------------------------------------------------- /hw/xquartz/bundle/.gitignore: -------------------------------------------------------------------------------- 1 | Info.plist 2 | -------------------------------------------------------------------------------- /hw/xquartz/bundle/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLx11a -------------------------------------------------------------------------------- /hw/xquartz/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/darwin.c -------------------------------------------------------------------------------- /hw/xquartz/darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/darwin.h -------------------------------------------------------------------------------- /hw/xquartz/darwinfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/darwinfb.h -------------------------------------------------------------------------------- /hw/xquartz/keysym2ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/keysym2ucs.c -------------------------------------------------------------------------------- /hw/xquartz/keysym2ucs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/keysym2ucs.h -------------------------------------------------------------------------------- /hw/xquartz/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/meson.build -------------------------------------------------------------------------------- /hw/xquartz/pbproxy/.gitignore: -------------------------------------------------------------------------------- 1 | xpbproxy 2 | -------------------------------------------------------------------------------- /hw/xquartz/quartz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/quartz.c -------------------------------------------------------------------------------- /hw/xquartz/quartz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/quartz.h -------------------------------------------------------------------------------- /hw/xquartz/xpr/dri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/dri.c -------------------------------------------------------------------------------- /hw/xquartz/xpr/dri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/dri.h -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-hash.c -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-hash.h -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-hook.c -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-hook.h -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-list.c -------------------------------------------------------------------------------- /hw/xquartz/xpr/x-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/x-list.h -------------------------------------------------------------------------------- /hw/xquartz/xpr/xpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xquartz/xpr/xpr.h -------------------------------------------------------------------------------- /hw/xwayland/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/.gitignore -------------------------------------------------------------------------------- /hw/xwayland/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/Makefile.am -------------------------------------------------------------------------------- /hw/xwayland/drm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/drm.xml -------------------------------------------------------------------------------- /hw/xwayland/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/meson.build -------------------------------------------------------------------------------- /hw/xwayland/xwayland.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/xwayland.c -------------------------------------------------------------------------------- /hw/xwayland/xwayland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwayland/xwayland.h -------------------------------------------------------------------------------- /hw/xwin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/.gitignore -------------------------------------------------------------------------------- /hw/xwin/InitInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/InitInput.c -------------------------------------------------------------------------------- /hw/xwin/InitOutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/InitOutput.c -------------------------------------------------------------------------------- /hw/xwin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/Makefile.am -------------------------------------------------------------------------------- /hw/xwin/X.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/X.ico -------------------------------------------------------------------------------- /hw/xwin/XWin.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/XWin.rc -------------------------------------------------------------------------------- /hw/xwin/ddraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/ddraw.h -------------------------------------------------------------------------------- /hw/xwin/dri/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/dri/Makefile.am -------------------------------------------------------------------------------- /hw/xwin/glx/glshim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/glx/glshim.c -------------------------------------------------------------------------------- /hw/xwin/glx/glthunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/glx/glthunk.c -------------------------------------------------------------------------------- /hw/xwin/glx/winpriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/glx/winpriv.c -------------------------------------------------------------------------------- /hw/xwin/glx/winpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/glx/winpriv.h -------------------------------------------------------------------------------- /hw/xwin/man/XWin.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/man/XWin.man -------------------------------------------------------------------------------- /hw/xwin/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/meson.build -------------------------------------------------------------------------------- /hw/xwin/system.XWinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/system.XWinrc -------------------------------------------------------------------------------- /hw/xwin/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/win.h -------------------------------------------------------------------------------- /hw/xwin/winallpriv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winallpriv.c -------------------------------------------------------------------------------- /hw/xwin/winauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winauth.c -------------------------------------------------------------------------------- /hw/xwin/winblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winblock.c -------------------------------------------------------------------------------- /hw/xwin/wincmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/wincmap.c -------------------------------------------------------------------------------- /hw/xwin/winconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winconfig.c -------------------------------------------------------------------------------- /hw/xwin/winconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winconfig.h -------------------------------------------------------------------------------- /hw/xwin/wincursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/wincursor.c -------------------------------------------------------------------------------- /hw/xwin/windialogs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/windialogs.c -------------------------------------------------------------------------------- /hw/xwin/windisplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/windisplay.c -------------------------------------------------------------------------------- /hw/xwin/windisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/windisplay.h -------------------------------------------------------------------------------- /hw/xwin/winengine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winengine.c -------------------------------------------------------------------------------- /hw/xwin/winerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winerror.c -------------------------------------------------------------------------------- /hw/xwin/winglobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winglobals.c -------------------------------------------------------------------------------- /hw/xwin/winglobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winglobals.h -------------------------------------------------------------------------------- /hw/xwin/winkeybd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winkeybd.c -------------------------------------------------------------------------------- /hw/xwin/winkeybd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winkeybd.h -------------------------------------------------------------------------------- /hw/xwin/winkeyhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winkeyhook.c -------------------------------------------------------------------------------- /hw/xwin/winkeynames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winkeynames.h -------------------------------------------------------------------------------- /hw/xwin/winlayouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winlayouts.h -------------------------------------------------------------------------------- /hw/xwin/winmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmessages.h -------------------------------------------------------------------------------- /hw/xwin/winmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmisc.c -------------------------------------------------------------------------------- /hw/xwin/winmonitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmonitors.c -------------------------------------------------------------------------------- /hw/xwin/winmonitors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmonitors.h -------------------------------------------------------------------------------- /hw/xwin/winmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmouse.c -------------------------------------------------------------------------------- /hw/xwin/winms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winms.h -------------------------------------------------------------------------------- /hw/xwin/winmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmsg.c -------------------------------------------------------------------------------- /hw/xwin/winmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winmsg.h -------------------------------------------------------------------------------- /hw/xwin/winos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winos.c -------------------------------------------------------------------------------- /hw/xwin/winprefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winprefs.c -------------------------------------------------------------------------------- /hw/xwin/winprefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winprefs.h -------------------------------------------------------------------------------- /hw/xwin/winprefslex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winprefslex.l -------------------------------------------------------------------------------- /hw/xwin/winprocarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winprocarg.c -------------------------------------------------------------------------------- /hw/xwin/winrandr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winrandr.c -------------------------------------------------------------------------------- /hw/xwin/winresource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winresource.h -------------------------------------------------------------------------------- /hw/xwin/winscrinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winscrinit.c -------------------------------------------------------------------------------- /hw/xwin/winshadddnl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winshadddnl.c -------------------------------------------------------------------------------- /hw/xwin/winshadgdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winshadgdi.c -------------------------------------------------------------------------------- /hw/xwin/wintaskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/wintaskbar.c -------------------------------------------------------------------------------- /hw/xwin/wintrayicon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/wintrayicon.c -------------------------------------------------------------------------------- /hw/xwin/winvalargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winvalargs.c -------------------------------------------------------------------------------- /hw/xwin/winwakeup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winwakeup.c -------------------------------------------------------------------------------- /hw/xwin/winwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winwindow.c -------------------------------------------------------------------------------- /hw/xwin/winwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winwindow.h -------------------------------------------------------------------------------- /hw/xwin/winwndproc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/hw/xwin/winwndproc.c -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/.gitignore -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/XIstubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/XIstubs.h -------------------------------------------------------------------------------- /include/Xprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/Xprintf.h -------------------------------------------------------------------------------- /include/busfault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/busfault.h -------------------------------------------------------------------------------- /include/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/callback.h -------------------------------------------------------------------------------- /include/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/client.h -------------------------------------------------------------------------------- /include/closestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/closestr.h -------------------------------------------------------------------------------- /include/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/closure.h -------------------------------------------------------------------------------- /include/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/colormap.h -------------------------------------------------------------------------------- /include/colormapst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/colormapst.h -------------------------------------------------------------------------------- /include/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/cursor.h -------------------------------------------------------------------------------- /include/cursorstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/cursorstr.h -------------------------------------------------------------------------------- /include/dbus-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dbus-core.h -------------------------------------------------------------------------------- /include/displaymode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/displaymode.h -------------------------------------------------------------------------------- /include/dix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dix.h -------------------------------------------------------------------------------- /include/dixaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixaccess.h -------------------------------------------------------------------------------- /include/dixevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixevents.h -------------------------------------------------------------------------------- /include/dixfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixfont.h -------------------------------------------------------------------------------- /include/dixfontstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixfontstr.h -------------------------------------------------------------------------------- /include/dixgrabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixgrabs.h -------------------------------------------------------------------------------- /include/dixstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/dixstruct.h -------------------------------------------------------------------------------- /include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/events.h -------------------------------------------------------------------------------- /include/eventstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/eventstr.h -------------------------------------------------------------------------------- /include/exevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/exevents.h -------------------------------------------------------------------------------- /include/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/extension.h -------------------------------------------------------------------------------- /include/extinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/extinit.h -------------------------------------------------------------------------------- /include/extnsionst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/extnsionst.h -------------------------------------------------------------------------------- /include/gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/gc.h -------------------------------------------------------------------------------- /include/gcstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/gcstruct.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/glx_extinit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/glx_extinit.h -------------------------------------------------------------------------------- /include/glxvndabi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/glxvndabi.h -------------------------------------------------------------------------------- /include/hotplug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/hotplug.h -------------------------------------------------------------------------------- /include/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/input.h -------------------------------------------------------------------------------- /include/inputstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/inputstr.h -------------------------------------------------------------------------------- /include/inpututils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/inpututils.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/list.h -------------------------------------------------------------------------------- /include/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/meson.build -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/miscstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/miscstruct.h -------------------------------------------------------------------------------- /include/opaque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/opaque.h -------------------------------------------------------------------------------- /include/optionstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/optionstr.h -------------------------------------------------------------------------------- /include/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/os.h -------------------------------------------------------------------------------- /include/pixmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/pixmap.h -------------------------------------------------------------------------------- /include/pixmapstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/pixmapstr.h -------------------------------------------------------------------------------- /include/privates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/privates.h -------------------------------------------------------------------------------- /include/probes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/probes.h -------------------------------------------------------------------------------- /include/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/property.h -------------------------------------------------------------------------------- /include/propertyst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/propertyst.h -------------------------------------------------------------------------------- /include/ptrveloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/ptrveloc.h -------------------------------------------------------------------------------- /include/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/region.h -------------------------------------------------------------------------------- /include/regionstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/regionstr.h -------------------------------------------------------------------------------- /include/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/registry.h -------------------------------------------------------------------------------- /include/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/resource.h -------------------------------------------------------------------------------- /include/rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/rgb.h -------------------------------------------------------------------------------- /include/screenint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/screenint.h -------------------------------------------------------------------------------- /include/scrnintstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/scrnintstr.h -------------------------------------------------------------------------------- /include/selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/selection.h -------------------------------------------------------------------------------- /include/servermd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/servermd.h -------------------------------------------------------------------------------- /include/site.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/site.h -------------------------------------------------------------------------------- /include/swaprep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/swaprep.h -------------------------------------------------------------------------------- /include/swapreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/swapreq.h -------------------------------------------------------------------------------- /include/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/validate.h -------------------------------------------------------------------------------- /include/vidmodestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/vidmodestr.h -------------------------------------------------------------------------------- /include/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/window.h -------------------------------------------------------------------------------- /include/windowstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/windowstr.h -------------------------------------------------------------------------------- /include/xkbfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/xkbfile.h -------------------------------------------------------------------------------- /include/xkbrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/xkbrules.h -------------------------------------------------------------------------------- /include/xkbsrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/xkbsrv.h -------------------------------------------------------------------------------- /include/xkbstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/xkbstr.h -------------------------------------------------------------------------------- /include/xsha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/include/xsha1.h -------------------------------------------------------------------------------- /m4/ac_define_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/m4/ac_define_dir.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/Xserver.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/man/Xserver.man -------------------------------------------------------------------------------- /manpages.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/manpages.am -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/meson_options.txt -------------------------------------------------------------------------------- /mi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/Makefile.am -------------------------------------------------------------------------------- /mi/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/meson.build -------------------------------------------------------------------------------- /mi/mi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mi.h -------------------------------------------------------------------------------- /mi/miarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miarc.c -------------------------------------------------------------------------------- /mi/mibitblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mibitblt.c -------------------------------------------------------------------------------- /mi/micmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/micmap.c -------------------------------------------------------------------------------- /mi/micmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/micmap.h -------------------------------------------------------------------------------- /mi/micoord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/micoord.h -------------------------------------------------------------------------------- /mi/micopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/micopy.c -------------------------------------------------------------------------------- /mi/midash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/midash.c -------------------------------------------------------------------------------- /mi/midispcur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/midispcur.c -------------------------------------------------------------------------------- /mi/mieq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mieq.c -------------------------------------------------------------------------------- /mi/miexpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miexpose.c -------------------------------------------------------------------------------- /mi/mifillarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mifillarc.c -------------------------------------------------------------------------------- /mi/mifillarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mifillarc.h -------------------------------------------------------------------------------- /mi/mifillrct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mifillrct.c -------------------------------------------------------------------------------- /mi/mifpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mifpoly.h -------------------------------------------------------------------------------- /mi/migc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/migc.c -------------------------------------------------------------------------------- /mi/migc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/migc.h -------------------------------------------------------------------------------- /mi/miglblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miglblt.c -------------------------------------------------------------------------------- /mi/miinitext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miinitext.c -------------------------------------------------------------------------------- /mi/miline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miline.h -------------------------------------------------------------------------------- /mi/mioverlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mioverlay.c -------------------------------------------------------------------------------- /mi/mioverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mioverlay.h -------------------------------------------------------------------------------- /mi/mipointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipointer.c -------------------------------------------------------------------------------- /mi/mipointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipointer.h -------------------------------------------------------------------------------- /mi/mipointrst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipointrst.h -------------------------------------------------------------------------------- /mi/mipoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipoly.c -------------------------------------------------------------------------------- /mi/mipoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipoly.h -------------------------------------------------------------------------------- /mi/mipolypnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipolypnt.c -------------------------------------------------------------------------------- /mi/mipolyrect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipolyrect.c -------------------------------------------------------------------------------- /mi/mipolyseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipolyseg.c -------------------------------------------------------------------------------- /mi/mipolytext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipolytext.c -------------------------------------------------------------------------------- /mi/mipushpxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mipushpxl.c -------------------------------------------------------------------------------- /mi/miscanfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miscanfill.h -------------------------------------------------------------------------------- /mi/miscrinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miscrinit.c -------------------------------------------------------------------------------- /mi/misprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/misprite.c -------------------------------------------------------------------------------- /mi/misprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/misprite.h -------------------------------------------------------------------------------- /mi/mistruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mistruct.h -------------------------------------------------------------------------------- /mi/mivalidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mivalidate.h -------------------------------------------------------------------------------- /mi/mivaltree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mivaltree.c -------------------------------------------------------------------------------- /mi/miwideline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miwideline.c -------------------------------------------------------------------------------- /mi/miwideline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miwideline.h -------------------------------------------------------------------------------- /mi/miwindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/miwindow.c -------------------------------------------------------------------------------- /mi/mizerarc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mizerarc.c -------------------------------------------------------------------------------- /mi/mizerarc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mizerarc.h -------------------------------------------------------------------------------- /mi/mizerclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mizerclip.c -------------------------------------------------------------------------------- /mi/mizerline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/mi/mizerline.c -------------------------------------------------------------------------------- /miext/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = sync damage shadow rootless 2 | -------------------------------------------------------------------------------- /miext/damage/damage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/damage/damage.c -------------------------------------------------------------------------------- /miext/damage/damage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/damage/damage.h -------------------------------------------------------------------------------- /miext/shadow/sh3224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/shadow/sh3224.c -------------------------------------------------------------------------------- /miext/shadow/shadow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/shadow/shadow.c -------------------------------------------------------------------------------- /miext/shadow/shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/shadow/shadow.h -------------------------------------------------------------------------------- /miext/shadow/shafb4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/shadow/shafb4.c -------------------------------------------------------------------------------- /miext/shadow/shafb8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/shadow/shafb8.c -------------------------------------------------------------------------------- /miext/sync/misync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/sync/misync.c -------------------------------------------------------------------------------- /miext/sync/misync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/sync/misync.h -------------------------------------------------------------------------------- /miext/sync/misyncfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/sync/misyncfd.c -------------------------------------------------------------------------------- /miext/sync/misyncfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/miext/sync/misyncfd.h -------------------------------------------------------------------------------- /os/.gitignore: -------------------------------------------------------------------------------- 1 | os.O 2 | -------------------------------------------------------------------------------- /os/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/Makefile.am -------------------------------------------------------------------------------- /os/WaitFor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/WaitFor.c -------------------------------------------------------------------------------- /os/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/access.c -------------------------------------------------------------------------------- /os/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/auth.c -------------------------------------------------------------------------------- /os/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/backtrace.c -------------------------------------------------------------------------------- /os/busfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/busfault.c -------------------------------------------------------------------------------- /os/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/client.c -------------------------------------------------------------------------------- /os/connection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/connection.c -------------------------------------------------------------------------------- /os/inputthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/inputthread.c -------------------------------------------------------------------------------- /os/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/io.c -------------------------------------------------------------------------------- /os/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/log.c -------------------------------------------------------------------------------- /os/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/meson.build -------------------------------------------------------------------------------- /os/mitauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/mitauth.c -------------------------------------------------------------------------------- /os/oscolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/oscolor.c -------------------------------------------------------------------------------- /os/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/osdep.h -------------------------------------------------------------------------------- /os/osinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/osinit.c -------------------------------------------------------------------------------- /os/ospoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/ospoll.c -------------------------------------------------------------------------------- /os/ospoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/ospoll.h -------------------------------------------------------------------------------- /os/reallocarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/reallocarray.c -------------------------------------------------------------------------------- /os/rpcauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/rpcauth.c -------------------------------------------------------------------------------- /os/strcasecmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/strcasecmp.c -------------------------------------------------------------------------------- /os/strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/strcasestr.c -------------------------------------------------------------------------------- /os/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/strlcat.c -------------------------------------------------------------------------------- /os/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/strlcpy.c -------------------------------------------------------------------------------- /os/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/strndup.c -------------------------------------------------------------------------------- /os/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/utils.c -------------------------------------------------------------------------------- /os/xdmauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xdmauth.c -------------------------------------------------------------------------------- /os/xdmcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xdmcp.c -------------------------------------------------------------------------------- /os/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xprintf.c -------------------------------------------------------------------------------- /os/xserver_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xserver_poll.c -------------------------------------------------------------------------------- /os/xsha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xsha1.c -------------------------------------------------------------------------------- /os/xstrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/os/xstrans.c -------------------------------------------------------------------------------- /present/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/present/Makefile.am -------------------------------------------------------------------------------- /present/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/present/meson.build -------------------------------------------------------------------------------- /present/present.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/present/present.c -------------------------------------------------------------------------------- /present/present.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/present/present.h -------------------------------------------------------------------------------- /present/presentext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/present/presentext.h -------------------------------------------------------------------------------- /randr/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/Makefile.am -------------------------------------------------------------------------------- /randr/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/meson.build -------------------------------------------------------------------------------- /randr/randr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/randr.c -------------------------------------------------------------------------------- /randr/randrstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/randrstr.h -------------------------------------------------------------------------------- /randr/rrcrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrcrtc.c -------------------------------------------------------------------------------- /randr/rrdispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrdispatch.c -------------------------------------------------------------------------------- /randr/rrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrinfo.c -------------------------------------------------------------------------------- /randr/rrlease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrlease.c -------------------------------------------------------------------------------- /randr/rrmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrmode.c -------------------------------------------------------------------------------- /randr/rrmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrmonitor.c -------------------------------------------------------------------------------- /randr/rroutput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rroutput.c -------------------------------------------------------------------------------- /randr/rrpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrpointer.c -------------------------------------------------------------------------------- /randr/rrproperty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrproperty.c -------------------------------------------------------------------------------- /randr/rrprovider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrprovider.c -------------------------------------------------------------------------------- /randr/rrscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrscreen.c -------------------------------------------------------------------------------- /randr/rrsdispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrsdispatch.c -------------------------------------------------------------------------------- /randr/rrtransform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrtransform.c -------------------------------------------------------------------------------- /randr/rrtransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrtransform.h -------------------------------------------------------------------------------- /randr/rrxinerama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/randr/rrxinerama.c -------------------------------------------------------------------------------- /record/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/record/Makefile.am -------------------------------------------------------------------------------- /record/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/record/meson.build -------------------------------------------------------------------------------- /record/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/record/record.c -------------------------------------------------------------------------------- /record/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/record/set.c -------------------------------------------------------------------------------- /record/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/record/set.h -------------------------------------------------------------------------------- /render/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/Makefile.am -------------------------------------------------------------------------------- /render/animcur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/animcur.c -------------------------------------------------------------------------------- /render/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/filter.c -------------------------------------------------------------------------------- /render/glyph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/glyph.c -------------------------------------------------------------------------------- /render/glyphstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/glyphstr.h -------------------------------------------------------------------------------- /render/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/matrix.c -------------------------------------------------------------------------------- /render/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/meson.build -------------------------------------------------------------------------------- /render/miindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/miindex.c -------------------------------------------------------------------------------- /render/mipict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/mipict.c -------------------------------------------------------------------------------- /render/mipict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/mipict.h -------------------------------------------------------------------------------- /render/mirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/mirect.c -------------------------------------------------------------------------------- /render/mitrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/mitrap.c -------------------------------------------------------------------------------- /render/mitri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/mitri.c -------------------------------------------------------------------------------- /render/picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/picture.c -------------------------------------------------------------------------------- /render/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/picture.h -------------------------------------------------------------------------------- /render/picturestr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/picturestr.h -------------------------------------------------------------------------------- /render/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/render/render.c -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/README -------------------------------------------------------------------------------- /test/fixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/fixes.c -------------------------------------------------------------------------------- /test/hashtabletest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/hashtabletest.c -------------------------------------------------------------------------------- /test/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/input.c -------------------------------------------------------------------------------- /test/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/list.c -------------------------------------------------------------------------------- /test/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/meson.build -------------------------------------------------------------------------------- /test/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/misc.c -------------------------------------------------------------------------------- /test/signal-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/signal-logging.c -------------------------------------------------------------------------------- /test/simple-xinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/simple-xinit.c -------------------------------------------------------------------------------- /test/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/string.c -------------------------------------------------------------------------------- /test/sync/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/sync/meson.build -------------------------------------------------------------------------------- /test/sync/sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/sync/sync.c -------------------------------------------------------------------------------- /test/test_xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/test_xkb.c -------------------------------------------------------------------------------- /test/tests-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/tests-common.c -------------------------------------------------------------------------------- /test/tests-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/tests-common.h -------------------------------------------------------------------------------- /test/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/tests.c -------------------------------------------------------------------------------- /test/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/tests.h -------------------------------------------------------------------------------- /test/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/touch.c -------------------------------------------------------------------------------- /test/xfree86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/xfree86.c -------------------------------------------------------------------------------- /test/xi2/xi2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/xi2/xi2.c -------------------------------------------------------------------------------- /test/xtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/test/xtest.c -------------------------------------------------------------------------------- /xfixes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/Makefile.am -------------------------------------------------------------------------------- /xfixes/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/cursor.c -------------------------------------------------------------------------------- /xfixes/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/meson.build -------------------------------------------------------------------------------- /xfixes/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/region.c -------------------------------------------------------------------------------- /xfixes/saveset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/saveset.c -------------------------------------------------------------------------------- /xfixes/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/select.c -------------------------------------------------------------------------------- /xfixes/xfixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/xfixes.c -------------------------------------------------------------------------------- /xfixes/xfixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/xfixes.h -------------------------------------------------------------------------------- /xfixes/xfixesint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xfixes/xfixesint.h -------------------------------------------------------------------------------- /xkb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/Makefile.am -------------------------------------------------------------------------------- /xkb/README.compiled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/README.compiled -------------------------------------------------------------------------------- /xkb/XKBAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/XKBAlloc.c -------------------------------------------------------------------------------- /xkb/XKBGAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/XKBGAlloc.c -------------------------------------------------------------------------------- /xkb/XKBMAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/XKBMAlloc.c -------------------------------------------------------------------------------- /xkb/XKBMisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/XKBMisc.c -------------------------------------------------------------------------------- /xkb/ddxBeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxBeep.c -------------------------------------------------------------------------------- /xkb/ddxCtrls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxCtrls.c -------------------------------------------------------------------------------- /xkb/ddxKillSrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxKillSrv.c -------------------------------------------------------------------------------- /xkb/ddxLEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxLEDs.c -------------------------------------------------------------------------------- /xkb/ddxLoad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxLoad.c -------------------------------------------------------------------------------- /xkb/ddxPrivate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxPrivate.c -------------------------------------------------------------------------------- /xkb/ddxVT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/ddxVT.c -------------------------------------------------------------------------------- /xkb/maprules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/maprules.c -------------------------------------------------------------------------------- /xkb/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/meson.build -------------------------------------------------------------------------------- /xkb/xkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkb.c -------------------------------------------------------------------------------- /xkb/xkb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkb.h -------------------------------------------------------------------------------- /xkb/xkbAccessX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbAccessX.c -------------------------------------------------------------------------------- /xkb/xkbActions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbActions.c -------------------------------------------------------------------------------- /xkb/xkbDflts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbDflts.h -------------------------------------------------------------------------------- /xkb/xkbEvents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbEvents.c -------------------------------------------------------------------------------- /xkb/xkbInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbInit.c -------------------------------------------------------------------------------- /xkb/xkbLEDs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbLEDs.c -------------------------------------------------------------------------------- /xkb/xkbPrKeyEv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbPrKeyEv.c -------------------------------------------------------------------------------- /xkb/xkbSwap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbSwap.c -------------------------------------------------------------------------------- /xkb/xkbUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbUtils.c -------------------------------------------------------------------------------- /xkb/xkbfmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbfmisc.c -------------------------------------------------------------------------------- /xkb/xkbgeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbgeom.h -------------------------------------------------------------------------------- /xkb/xkbout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbout.c -------------------------------------------------------------------------------- /xkb/xkbtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkbtext.c -------------------------------------------------------------------------------- /xkb/xkmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xkb/xkmread.c -------------------------------------------------------------------------------- /xorg-server.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xorg-server.m4 -------------------------------------------------------------------------------- /xorg-server.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xorg-server.pc.in -------------------------------------------------------------------------------- /xserver.ent.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeffyCN/xorg-xserver/HEAD/xserver.ent.in --------------------------------------------------------------------------------