- 05 Aug, 2022 2 commits
-
-
Uli Schlachter authored
Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
Uli Schlachter authored
The X11 core protocol actually has three different kinds of event masks. See SETofPOINTEREVENT and SETofDEVICEEVENT in [1]. xproto.xml currently only has <enum name="EventMask"> which corresponds to SETofEVENT in [1]. This commit adds the PointerEventMask and DeviceEventMask enums and uses them where appropriate in the XML. [1]: https://www.x.org/releases/X11R7.6/doc/xproto/x11protocol.html Fixes: xorg/proto/xcbproto#22 Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
- 24 Jul, 2022 3 commits
-
-
Signed-off-by:
Mihail Konev <k.mvc@ya.ru> Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by:
Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by:
Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
Syncs the invocation of configure with the one from the server. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by:
Emil Velikov <emil.velikov@collabora.com> Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
- 23 Jul, 2022 1 commit
-
-
Alan Coopersmith authored
Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
- 03 Jul, 2022 1 commit
-
-
Demi Marie Obenour authored
This adds documentation for the entire MIT-SHM extension. Signed-off-by:
Demi Marie Obenour <demiobenour@gmail.com>
-
- 17 Jun, 2022 4 commits
-
-
Matt Turner authored
Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
Matt Turner authored
configure.ac:22: warning: AC_OUTPUT should be used without arguments. configure.ac:22: You should run autoupdate. Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
Matt Turner authored
... i.e. to /usr/share/pkgconfig. Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
Matt Turner authored
Added by 17ab095a ("add libdir/exec_prefix to xcb-xproto.pc") with the rationale of using it to find the python path, but later commits bd7a481a ("pkg-config: Add sysroot prefix") and be9c255b ("Adjust to automake 1.16.4 changes") make this directly accessible. By removing libdir from the pkgconfig file, the file becomes identical for different ABIs. Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
- 16 Jun, 2022 2 commits
-
-
Matt Turner authored
Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
-
- 27 May, 2022 1 commit
-
-
Austin Shafer authored
This adds DRI3SetDRMDeviceInUse.
-
- 03 May, 2022 1 commit
-
-
Matt Turner authored
Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
- 21 Dec, 2021 1 commit
-
-
Adjacent lists of char should not have any automatic padding added, since the alignment requirements for both are the same. Add explicit padding where it is required. Signed-off-by:
Peter Harris <pharris@opentext.com>
-
- 17 Nov, 2021 1 commit
-
-
Joshua Root authored
The pythondir variable is now defined relative to ${PYTHON_PREFIX}.
-
- 04 Oct, 2021 1 commit
-
-
Alexander Richardson authored
With commit 65169c1a, I am seeing build failures in libxcb, using sys.version_info fixes those.
-
- 30 Sep, 2021 2 commits
-
-
Uli Schlachter authored
This makes the code added in the previous commit consistent with the rest of the code base. From Björn's suggestion: This should import xml.etree.{,c}ElementTree conditionally on the version of the Python interpreter used to import this module. xml.etree.ElementTree is preferred for Python >= 3.3, as it uses the fastest possible implementation automatically. Earlier versions of Python need xml.etree.cElementTree as they may not have an implementation that can be used in a platform generic way. Suggested-by:
Björn Esser <besser82@fedoraproject.org>
-
Uli Schlachter authored
All X11 errors have the same fields. There are no differences. In a perfect world, the XML could thus just say "define an error" and xcbgen would do all the rest. However, the world is imperfect and we already have a mixture of fields defined in the XML. Some of the XML even defines trailing padding, while most does not. This commit makes xcbgen add all fields to X11 errors, but those that are already defined in the XML are skipped and left as-is. Due to the structure of the code, this requires pretending that a different XML was read, i.e. the code now modifies the in-memory structure of ElementTree to add the missing fields to the in-memory representation of the XML. This is the simplest way that I found to append elements. The existing mechanisms can only prepend fields. The approach taken by this commit was suggested by Peter Harris. Thanks a lot for this idea, it's a lot simpler than my previous approach. Fixes: xorg/proto/xcbproto#16 Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
- 22 Sep, 2021 1 commit
-
-
Povilas Kanapickas authored
XInput 2.4 introduces touchpad gesture support which includes 6 new events: Gesture{Pinch,Swipe}{Begin,Update,End}.
-
- 02 Sep, 2021 2 commits
-
-
Povilas Kanapickas authored
-
Povilas Kanapickas authored
Currently the layout of a struct is used to compute its size. This works fine in case of structs of fixed size. However this introduces forwards-compatibility problems in cases when the struct has multiple variants and the exact variant is specified by the value of some field (e.g. in the case of <switch> elements). Future revisions of protocols may introduce new layout variants, in which case the old code does not know the size of the struct variant and can't parse the incoming byte stream. Instead of relying on knowledge about the layout of data structures we should instead use the length field for length information. This way when old client libxcb communicates with newer server it can at least ignore unknown struct variants.
-
- 22 Jul, 2021 1 commit
-
-
Olivier Fourdan authored
The Xserver itself is capable of terminating itself once all X11 clients are gone, yet in a typical full session, there are a number of X11 clients running continuously (e.g. the Xsettings daemon, IBus, etc.). Those always-running clients will prevent the Xserver from terminating, because the actual number of X11 clients will never drop to 0. To solve this issue directly at the Xserver level, this add new entries to the XFixes extension to let the X11 clients themselves specify the disconnect mode they expect. Typically, those X11 daemon clients would specify the disconnect mode XFixesClientDisconnectFlagTerminate to let the Xserver know that they should not be accounted for when checking the remaining clients prior to terminate. Signed-off-by:
Olivier Fourdan <ofourdan@redhat.com> Reviewed-by:
Simon Ser <contact@emersion.fr>
-
- 02 Jun, 2021 1 commit
-
-
Alan Coopersmith authored
A little too much copy-and-paste from the GrabPointer doc text had happened here. Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
- 08 Oct, 2020 1 commit
-
-
Alan Coopersmith authored
Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
- 03 Oct, 2020 1 commit
-
-
Samanta Navarro authored
Signed-off-by:
Samanta Navarro <ferivoz@riseup.net>
-
- 04 Jun, 2020 1 commit
-
-
Björn Esser authored
In commit 7d58eed9 we started to use xml.etree.ElementTree for Python >= 3.9. In fact the xml.etree.cElementTree module has already been deprecated since Python 3.3. Given this fact, we should start to use the xml.etree.ElementTree module beginning with Python 3.3. See: https://github.com/python/cpython/commit/a72a98f24a19928e31dcc4cab2cd2ad0f1846e11 Signed-off-by:
Björn Esser <besser82@fedoraproject.org>
-
- 01 Jun, 2020 2 commits
-
-
Björn Esser authored
It can be replaced with xml.etree.ElementTree safely. Signed-off-by:
Björn Esser <besser82@fedoraproject.org>
-
Björn Esser authored
fractions.gcd() has been deprecated since Python 3.5, and was finally dropped in Python 3.9. It is recommended to use math.gcd() instead. Signed-off-by:
Björn Esser <besser82@fedoraproject.org>
-
- 21 Mar, 2020 1 commit
-
-
Uli Schlachter authored
In xv.xml, there is something like this: <struct name="ImageFormatInfo"> [...] <field type="CARD8" name="byte_order" enum="ImageOrder" /> <pad bytes="2" /> <list type="CARD8" name="guid"> <value>16</value> </list> [...] </struct> When parsing this, the Field instance for "guid" ended up with .enum == "ImageOrder". This is because the loop that parses complex type did not unset a variable across iterations, meaning that the last "enum" property "stuck" and was also used for all following fields. Fix this by simply moving the initialisation of the "enum" variable inside of the loop. Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
- 22 Feb, 2020 2 commits
-
-
Matt Turner authored
Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
Matt Turner authored
Signed-off-by:
Matt Turner <mattst88@gmail.com>
-
- 28 Dec, 2019 2 commits
-
-
Uli Schlachter authored
xcbgen 'helpfully' transforms things to C types already so that libxcb does not have to do so. Thus, even though the XML says that a field has type CARD8, xcbgen will claim uint8_t. This might be a bit weird, but is so far totally fine. However, the type mapping that xcbgen uses is not injective. All of CARD8, BYTE and BOOL get turned into uint8_t and the original type is lost. This is totally fine for libxcb, but programming languages other than C do have built in boolean types. My personal problem is with Rust, where providing a boolean for an integer argument causes a compiler error. This results in (relatively) ugly "0 / 1" instead of "false / true". This commit adds a new xml_type member to SimpleType. This type contains the original string that appeared in the XML file. Since libxcb creates instances of SimpleType itself and to avoid breaking the API, the new argument to SimpleType.__init__ defaults to None. Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
Uli Schlachter authored
XFixes contains a CreateRegion request: <request name="CreateRegion" opcode="5"> <field type="REGION" name="region" /> <list type="RECTANGLE" name="rectangles" /> </request> This request contains a list of type RECTANGLE. This struct comes from xproto and is thus not contained in xfixes itself. Normal "Struct"s have their resolve() method called early, because they appear in the module itself. However, in the CreateRegion case, this struct is imported and thus does not get resolved. Instead, ListType's resolve() method calls self.member.resolve(module). Thus, only at this point is the struct resolved. Why is this important? Struct.resolve() is the same as ComplexType.resolve() and this function does self.calc_size() at the end. Thus, only after the struct was resolved is its size known. Before that, the size is just set to 0 (this happens in ComplexType.__init__). However, ListType.__init__ already computes its size member based on its member. At this point, this is still 0 so the list ends up believing its size to be zero. Fix this by recomputing self.size in ListType.resolve(). Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
- 02 Nov, 2019 1 commit
-
-
Uli Schlachter authored
According to git grep '\.fds', this does not appear anywhere else in xcb-proto or libxcb. Signed-off-by:
Uli Schlachter <psychon@znc.in>
-
- 27 Apr, 2019 1 commit
-
-
xcb-proto's pkg-config file exports static file paths for where to find its Python files and the XML definitions. When used to discover cflags, library paths, etc, pkg-config will prepend ${PKG_CONFIG_SYSROOT_DIR}, if any, to those paths. This makes the use of a sysroot prefix transparent to users. However, since it doesn't know about paths in custom variables, it cannot automatically prefix this. Adding ${pc_sysrootdir} to these absolute paths makes the behaviour match, and XCB builds work out of the box in a sysroot. Signed-off-by:
Daniel Stone <daniels@collabora.com> Reviewed-by:
Eric Anholt <eric@anholt.net>
-
- 17 Feb, 2019 1 commit
-
-
Alan Coopersmith authored
Signed-off-by:
Alan Coopersmith <alan.coopersmith@oracle.com>
-
- 14 Mar, 2018 1 commit
-
-
Keith Packard authored
This was set to BOOL, but the protocol headers used Bool, presumably a 32-bit type. We're switching everything to CARD32 as the best option for compatibility. Signed-off-by:
Keith Packard <keithp@keithp.com> Reviewed-by:
Mihai Moldovan <ionic@ionic.de>
-
- 28 Feb, 2018 1 commit
-
-
Daniel Stone authored
This release adds support for variable-sized lists of FDs (e.g. sized by a field in the request/event), as well as several other cleanups and fixes in the core code. DRI3 has been bumped to v1.2, using the new support to support multi-planar buffers and DRM modifiers. Present has also been bumped to v1.2, adding a new token for the server to indicate to the client that it should reallocate its buffers. RandR has been updated to 1.6, adding support for DRM leases to allow clients to directly control outputs. Signed-off-by:
Daniel Stone <daniels@collabora.com>
-