├── .github └── workflows │ └── CI.yml ├── .gitignore ├── .mergify.yml ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── Makefile ├── README.md ├── cairo-example ├── Cargo.toml └── src │ └── main.rs ├── clippy.toml ├── codecov.yml ├── doc ├── changelog.md ├── comparison.md ├── generated_code.md └── making_a_release.md ├── extract-generated-code-doc ├── Cargo.toml └── src │ ├── doc.rs │ └── main.rs ├── generator ├── Cargo.toml └── src │ ├── generator │ ├── error_events.rs │ ├── mod.rs │ ├── namespace │ │ ├── async_switch.rs │ │ ├── expr_to_str.rs │ │ ├── header.rs │ │ ├── helpers.rs │ │ ├── mod.rs │ │ ├── parse.rs │ │ ├── request.rs │ │ ├── resource_wrapper.rs │ │ ├── serialize.rs │ │ ├── struct_type.rs │ │ └── switch.rs │ ├── output.rs │ ├── requests_replies.rs │ ├── resources.rs │ └── special_cases.rs │ └── main.rs ├── x11rb-async ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── examples │ ├── shared_memory_async.rs │ └── xclock_utc_async.rs ├── src │ ├── blocking.rs │ ├── connection.rs │ ├── cookie.rs │ ├── lib.rs │ ├── protocol │ │ ├── bigreq.rs │ │ ├── composite.rs │ │ ├── damage.rs │ │ ├── dbe.rs │ │ ├── dpms.rs │ │ ├── dri2.rs │ │ ├── dri3.rs │ │ ├── ge.rs │ │ ├── glx.rs │ │ ├── mod.rs │ │ ├── present.rs │ │ ├── randr.rs │ │ ├── record.rs │ │ ├── render.rs │ │ ├── res.rs │ │ ├── screensaver.rs │ │ ├── shape.rs │ │ ├── shm.rs │ │ ├── sync.rs │ │ ├── xc_misc.rs │ │ ├── xevie.rs │ │ ├── xf86dri.rs │ │ ├── xf86vidmode.rs │ │ ├── xfixes.rs │ │ ├── xinerama.rs │ │ ├── xinput.rs │ │ ├── xkb.rs │ │ ├── xprint.rs │ │ ├── xproto.rs │ │ ├── xselinux.rs │ │ ├── xtest.rs │ │ ├── xv.rs │ │ └── xvmc.rs │ └── rust_connection │ │ ├── extensions.rs │ │ ├── mod.rs │ │ ├── nb_connect.rs │ │ ├── shared_state.rs │ │ ├── stream.rs │ │ └── write_buffer.rs └── tests │ └── connection_regression_tests.rs ├── x11rb-protocol ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── benches │ └── proto_connection.rs ├── src │ ├── connect.rs │ ├── connection │ │ └── mod.rs │ ├── errors.rs │ ├── id_allocator.rs │ ├── lib.rs │ ├── packet_reader.rs │ ├── parse_display │ │ ├── connect_instruction.rs │ │ └── mod.rs │ ├── protocol │ │ ├── bigreq.rs │ │ ├── composite.rs │ │ ├── damage.rs │ │ ├── dbe.rs │ │ ├── dpms.rs │ │ ├── dri2.rs │ │ ├── dri3.rs │ │ ├── ge.rs │ │ ├── glx.rs │ │ ├── mod.rs │ │ ├── present.rs │ │ ├── randr.rs │ │ ├── record.rs │ │ ├── render.rs │ │ ├── res.rs │ │ ├── screensaver.rs │ │ ├── shape.rs │ │ ├── shm.rs │ │ ├── sync.rs │ │ ├── xc_misc.rs │ │ ├── xevie.rs │ │ ├── xf86dri.rs │ │ ├── xf86vidmode.rs │ │ ├── xfixes.rs │ │ ├── xinerama.rs │ │ ├── xinput.rs │ │ ├── xkb.rs │ │ ├── xprint.rs │ │ ├── xproto.rs │ │ ├── xselinux.rs │ │ ├── xtest.rs │ │ ├── xv.rs │ │ └── xvmc.rs │ ├── resource_manager │ │ ├── matcher.rs │ │ ├── mod.rs │ │ └── parser.rs │ ├── test.rs │ ├── utils.rs │ ├── wrapper.rs │ ├── x11_utils.rs │ └── xauth.rs └── tests │ ├── enum_tests.rs │ ├── parsing_tests.rs │ └── request_parsing_tests.rs ├── x11rb ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── examples │ ├── check_unchecked_requests.rs │ ├── display_ppm.rs │ ├── generic_events.rs │ ├── hypnomoire.rs │ ├── integration_test_util │ │ ├── connect.rs │ │ └── util.rs │ ├── list_fonts.rs │ ├── record.rs │ ├── shared_memory.rs │ ├── simple_window.rs │ ├── simple_window_manager.rs │ ├── tutorial.rs │ ├── xclock_utc.rs │ └── xeyes.rs ├── src │ ├── connection │ │ ├── impls.rs │ │ └── mod.rs │ ├── cookie.rs │ ├── cursor │ │ ├── find_cursor.rs │ │ ├── mod.rs │ │ └── parse_cursor.rs │ ├── errors.rs │ ├── event_loop_integration.rs │ ├── extension_manager.rs │ ├── image.rs │ ├── lib.rs │ ├── properties.rs │ ├── protocol │ │ ├── bigreq.rs │ │ ├── composite.rs │ │ ├── damage.rs │ │ ├── dbe.rs │ │ ├── dpms.rs │ │ ├── dri2.rs │ │ ├── dri3.rs │ │ ├── ge.rs │ │ ├── glx.rs │ │ ├── mod.rs │ │ ├── present.rs │ │ ├── randr.rs │ │ ├── record.rs │ │ ├── render.rs │ │ ├── res.rs │ │ ├── screensaver.rs │ │ ├── shape.rs │ │ ├── shm.rs │ │ ├── sync.rs │ │ ├── xc_misc.rs │ │ ├── xevie.rs │ │ ├── xf86dri.rs │ │ ├── xf86vidmode.rs │ │ ├── xfixes.rs │ │ ├── xinerama.rs │ │ ├── xinput.rs │ │ ├── xkb.rs │ │ ├── xprint.rs │ │ ├── xproto.rs │ │ ├── xselinux.rs │ │ ├── xtest.rs │ │ ├── xv.rs │ │ └── xvmc.rs │ ├── resource_manager │ │ └── mod.rs │ ├── rust_connection │ │ ├── mod.rs │ │ ├── packet_reader.rs │ │ ├── stream.rs │ │ └── write_buffer.rs │ ├── test.rs │ ├── tracing.rs │ ├── utils.rs │ ├── wrapper.rs │ ├── x11_utils.rs │ └── xcb_ffi │ │ ├── atomic_u64.rs │ │ ├── mod.rs │ │ ├── pending_errors.rs │ │ └── raw_ffi │ │ ├── ffi.rs │ │ ├── mod.rs │ │ └── test.rs └── tests │ ├── multithread_test.rs │ ├── regression_tests.rs │ ├── resource_manager.rs │ └── x11_utils.rs ├── xcb-proto-1.17.0 ├── .gitignore ├── .gitlab-ci.yml ├── COPYING ├── HACKING ├── INSTALL ├── Makefile.am ├── NEWS ├── README.md ├── TODO ├── autogen.sh ├── configure.ac ├── doc │ └── xml-xcb.txt ├── src │ ├── .gitattributes │ ├── Makefile.am │ ├── bigreq.xml │ ├── composite.xml │ ├── damage.xml │ ├── dbe.xml │ ├── dpms.xml │ ├── dri2.xml │ ├── dri3.xml │ ├── ge.xml │ ├── glx.xml │ ├── present.xml │ ├── randr.xml │ ├── record.xml │ ├── render.xml │ ├── res.xml │ ├── screensaver.xml │ ├── shape.xml │ ├── shm.xml │ ├── sync.xml │ ├── xc_misc.xml │ ├── xcb.xsd │ ├── xevie.xml │ ├── xf86dri.xml │ ├── xf86vidmode.xml │ ├── xfixes.xml │ ├── xinerama.xml │ ├── xinput.xml │ ├── xkb.xml │ ├── xprint.xml │ ├── xproto.xml │ ├── xselinux.xml │ ├── xtest.xml │ ├── xv.xml │ └── xvmc.xml ├── xcb-proto.pc.in └── xcbgen │ ├── Makefile.am │ ├── __init__.py │ ├── align.py │ ├── error.py │ ├── expr.py │ ├── matcher.py │ ├── state.py │ └── xtypes.py ├── xcbgen-rs ├── Cargo.toml └── src │ ├── defs │ ├── alignment.rs │ ├── doc.rs │ ├── expression.rs │ ├── fields.rs │ ├── mod.rs │ └── top_level.rs │ ├── lib.rs │ ├── parser.rs │ └── resolver │ ├── align_checker.rs │ ├── extra_fields_inserter.rs │ ├── field_ref_resolver.rs │ ├── mod.rs │ ├── nesting_checker.rs │ ├── param_ref_gatherer.rs │ └── type_resolver.rs ├── xkbcommon-example ├── Cargo.toml └── src │ └── main.rs └── xtrace-example ├── Cargo.toml └── src ├── connection.rs ├── connection_inner.rs ├── forwarder.rs └── main.rs /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/.mergify.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/README.md -------------------------------------------------------------------------------- /cairo-example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/cairo-example/Cargo.toml -------------------------------------------------------------------------------- /cairo-example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/cairo-example/src/main.rs -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- 1 | msrv = "1.68.0" 2 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/doc/changelog.md -------------------------------------------------------------------------------- /doc/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/doc/comparison.md -------------------------------------------------------------------------------- /doc/generated_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/doc/generated_code.md -------------------------------------------------------------------------------- /doc/making_a_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/doc/making_a_release.md -------------------------------------------------------------------------------- /extract-generated-code-doc/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/extract-generated-code-doc/Cargo.toml -------------------------------------------------------------------------------- /extract-generated-code-doc/src/doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/extract-generated-code-doc/src/doc.rs -------------------------------------------------------------------------------- /extract-generated-code-doc/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/extract-generated-code-doc/src/main.rs -------------------------------------------------------------------------------- /generator/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/Cargo.toml -------------------------------------------------------------------------------- /generator/src/generator/error_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/error_events.rs -------------------------------------------------------------------------------- /generator/src/generator/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/mod.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/async_switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/async_switch.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/expr_to_str.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/expr_to_str.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/header.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/helpers.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/mod.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/parse.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/request.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/request.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/resource_wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/resource_wrapper.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/serialize.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/struct_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/struct_type.rs -------------------------------------------------------------------------------- /generator/src/generator/namespace/switch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/namespace/switch.rs -------------------------------------------------------------------------------- /generator/src/generator/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/output.rs -------------------------------------------------------------------------------- /generator/src/generator/requests_replies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/requests_replies.rs -------------------------------------------------------------------------------- /generator/src/generator/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/resources.rs -------------------------------------------------------------------------------- /generator/src/generator/special_cases.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/generator/special_cases.rs -------------------------------------------------------------------------------- /generator/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/generator/src/main.rs -------------------------------------------------------------------------------- /x11rb-async/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/Cargo.toml -------------------------------------------------------------------------------- /x11rb-async/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /x11rb-async/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /x11rb-async/examples/shared_memory_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/examples/shared_memory_async.rs -------------------------------------------------------------------------------- /x11rb-async/examples/xclock_utc_async.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/examples/xclock_utc_async.rs -------------------------------------------------------------------------------- /x11rb-async/src/blocking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/blocking.rs -------------------------------------------------------------------------------- /x11rb-async/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/connection.rs -------------------------------------------------------------------------------- /x11rb-async/src/cookie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/cookie.rs -------------------------------------------------------------------------------- /x11rb-async/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/lib.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/bigreq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/bigreq.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/composite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/composite.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/damage.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/dbe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/dbe.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/dpms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/dpms.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/dri2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/dri2.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/dri3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/dri3.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/ge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/ge.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/glx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/glx.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/mod.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/present.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/present.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/randr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/randr.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/record.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/render.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/res.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/res.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/screensaver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/screensaver.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/shape.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/shm.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/sync.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xc_misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xc_misc.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xevie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xevie.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xf86dri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xf86dri.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xf86vidmode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xf86vidmode.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xfixes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xfixes.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xinerama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xinerama.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xinput.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xinput.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xkb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xkb.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xprint.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xproto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xproto.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xselinux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xselinux.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xtest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xtest.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xv.rs -------------------------------------------------------------------------------- /x11rb-async/src/protocol/xvmc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/protocol/xvmc.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/extensions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/extensions.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/mod.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/nb_connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/nb_connect.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/shared_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/shared_state.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/stream.rs -------------------------------------------------------------------------------- /x11rb-async/src/rust_connection/write_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/src/rust_connection/write_buffer.rs -------------------------------------------------------------------------------- /x11rb-async/tests/connection_regression_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-async/tests/connection_regression_tests.rs -------------------------------------------------------------------------------- /x11rb-protocol/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/Cargo.toml -------------------------------------------------------------------------------- /x11rb-protocol/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /x11rb-protocol/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /x11rb-protocol/benches/proto_connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/benches/proto_connection.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/connect.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/connection/mod.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/errors.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/id_allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/id_allocator.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/lib.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/packet_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/packet_reader.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/parse_display/connect_instruction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/parse_display/connect_instruction.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/parse_display/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/parse_display/mod.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/bigreq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/bigreq.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/composite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/composite.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/damage.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/dbe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/dbe.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/dpms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/dpms.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/dri2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/dri2.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/dri3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/dri3.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/ge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/ge.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/glx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/glx.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/mod.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/present.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/present.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/randr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/randr.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/record.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/render.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/res.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/res.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/screensaver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/screensaver.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/shape.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/shm.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/sync.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xc_misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xc_misc.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xevie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xevie.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xf86dri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xf86dri.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xf86vidmode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xf86vidmode.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xfixes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xfixes.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xinerama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xinerama.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xinput.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xinput.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xkb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xkb.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xprint.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xproto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xproto.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xselinux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xselinux.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xtest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xtest.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xv.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/protocol/xvmc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/protocol/xvmc.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/resource_manager/matcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/resource_manager/matcher.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/resource_manager/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/resource_manager/mod.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/resource_manager/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/resource_manager/parser.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/test.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/utils.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/wrapper.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/x11_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/x11_utils.rs -------------------------------------------------------------------------------- /x11rb-protocol/src/xauth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/src/xauth.rs -------------------------------------------------------------------------------- /x11rb-protocol/tests/enum_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/tests/enum_tests.rs -------------------------------------------------------------------------------- /x11rb-protocol/tests/parsing_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/tests/parsing_tests.rs -------------------------------------------------------------------------------- /x11rb-protocol/tests/request_parsing_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb-protocol/tests/request_parsing_tests.rs -------------------------------------------------------------------------------- /x11rb/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/Cargo.toml -------------------------------------------------------------------------------- /x11rb/LICENSE-APACHE: -------------------------------------------------------------------------------- 1 | ../LICENSE-APACHE -------------------------------------------------------------------------------- /x11rb/LICENSE-MIT: -------------------------------------------------------------------------------- 1 | ../LICENSE-MIT -------------------------------------------------------------------------------- /x11rb/examples/check_unchecked_requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/check_unchecked_requests.rs -------------------------------------------------------------------------------- /x11rb/examples/display_ppm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/display_ppm.rs -------------------------------------------------------------------------------- /x11rb/examples/generic_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/generic_events.rs -------------------------------------------------------------------------------- /x11rb/examples/hypnomoire.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/hypnomoire.rs -------------------------------------------------------------------------------- /x11rb/examples/integration_test_util/connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/integration_test_util/connect.rs -------------------------------------------------------------------------------- /x11rb/examples/integration_test_util/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/integration_test_util/util.rs -------------------------------------------------------------------------------- /x11rb/examples/list_fonts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/list_fonts.rs -------------------------------------------------------------------------------- /x11rb/examples/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/record.rs -------------------------------------------------------------------------------- /x11rb/examples/shared_memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/shared_memory.rs -------------------------------------------------------------------------------- /x11rb/examples/simple_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/simple_window.rs -------------------------------------------------------------------------------- /x11rb/examples/simple_window_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/simple_window_manager.rs -------------------------------------------------------------------------------- /x11rb/examples/tutorial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/tutorial.rs -------------------------------------------------------------------------------- /x11rb/examples/xclock_utc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/xclock_utc.rs -------------------------------------------------------------------------------- /x11rb/examples/xeyes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/examples/xeyes.rs -------------------------------------------------------------------------------- /x11rb/src/connection/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/connection/impls.rs -------------------------------------------------------------------------------- /x11rb/src/connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/connection/mod.rs -------------------------------------------------------------------------------- /x11rb/src/cookie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/cookie.rs -------------------------------------------------------------------------------- /x11rb/src/cursor/find_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/cursor/find_cursor.rs -------------------------------------------------------------------------------- /x11rb/src/cursor/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/cursor/mod.rs -------------------------------------------------------------------------------- /x11rb/src/cursor/parse_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/cursor/parse_cursor.rs -------------------------------------------------------------------------------- /x11rb/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/errors.rs -------------------------------------------------------------------------------- /x11rb/src/event_loop_integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/event_loop_integration.rs -------------------------------------------------------------------------------- /x11rb/src/extension_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/extension_manager.rs -------------------------------------------------------------------------------- /x11rb/src/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/image.rs -------------------------------------------------------------------------------- /x11rb/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/lib.rs -------------------------------------------------------------------------------- /x11rb/src/properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/properties.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/bigreq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/bigreq.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/composite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/composite.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/damage.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/dbe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/dbe.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/dpms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/dpms.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/dri2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/dri2.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/dri3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/dri3.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/ge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/ge.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/glx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/glx.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/mod.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/present.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/present.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/randr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/randr.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/record.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/record.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/render.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/res.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/res.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/screensaver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/screensaver.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/shape.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/shm.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/sync.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xc_misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xc_misc.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xevie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xevie.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xf86dri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xf86dri.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xf86vidmode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xf86vidmode.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xfixes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xfixes.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xinerama.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xinerama.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xinput.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xinput.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xkb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xkb.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xprint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xprint.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xproto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xproto.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xselinux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xselinux.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xtest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xtest.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xv.rs -------------------------------------------------------------------------------- /x11rb/src/protocol/xvmc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/protocol/xvmc.rs -------------------------------------------------------------------------------- /x11rb/src/resource_manager/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/resource_manager/mod.rs -------------------------------------------------------------------------------- /x11rb/src/rust_connection/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/rust_connection/mod.rs -------------------------------------------------------------------------------- /x11rb/src/rust_connection/packet_reader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/rust_connection/packet_reader.rs -------------------------------------------------------------------------------- /x11rb/src/rust_connection/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/rust_connection/stream.rs -------------------------------------------------------------------------------- /x11rb/src/rust_connection/write_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/rust_connection/write_buffer.rs -------------------------------------------------------------------------------- /x11rb/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/test.rs -------------------------------------------------------------------------------- /x11rb/src/tracing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/tracing.rs -------------------------------------------------------------------------------- /x11rb/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/utils.rs -------------------------------------------------------------------------------- /x11rb/src/wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/wrapper.rs -------------------------------------------------------------------------------- /x11rb/src/x11_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/x11_utils.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/atomic_u64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/atomic_u64.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/mod.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/pending_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/pending_errors.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/raw_ffi/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/raw_ffi/ffi.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/raw_ffi/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/raw_ffi/mod.rs -------------------------------------------------------------------------------- /x11rb/src/xcb_ffi/raw_ffi/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/src/xcb_ffi/raw_ffi/test.rs -------------------------------------------------------------------------------- /x11rb/tests/multithread_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/tests/multithread_test.rs -------------------------------------------------------------------------------- /x11rb/tests/regression_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/tests/regression_tests.rs -------------------------------------------------------------------------------- /x11rb/tests/resource_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/tests/resource_manager.rs -------------------------------------------------------------------------------- /x11rb/tests/x11_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/x11rb/tests/x11_utils.rs -------------------------------------------------------------------------------- /xcb-proto-1.17.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/.gitignore -------------------------------------------------------------------------------- /xcb-proto-1.17.0/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/.gitlab-ci.yml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/COPYING -------------------------------------------------------------------------------- /xcb-proto-1.17.0/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/HACKING -------------------------------------------------------------------------------- /xcb-proto-1.17.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/INSTALL -------------------------------------------------------------------------------- /xcb-proto-1.17.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/Makefile.am -------------------------------------------------------------------------------- /xcb-proto-1.17.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/NEWS -------------------------------------------------------------------------------- /xcb-proto-1.17.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/README.md -------------------------------------------------------------------------------- /xcb-proto-1.17.0/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/TODO -------------------------------------------------------------------------------- /xcb-proto-1.17.0/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/autogen.sh -------------------------------------------------------------------------------- /xcb-proto-1.17.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/configure.ac -------------------------------------------------------------------------------- /xcb-proto-1.17.0/doc/xml-xcb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/doc/xml-xcb.txt -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/.gitattributes: -------------------------------------------------------------------------------- 1 | *.xml diff=xcb 2 | -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/Makefile.am -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/bigreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/bigreq.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/composite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/composite.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/damage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/damage.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/dbe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/dbe.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/dpms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/dpms.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/dri2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/dri2.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/dri3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/dri3.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/ge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/ge.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/glx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/glx.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/present.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/present.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/randr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/randr.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/record.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/record.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/render.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/render.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/res.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/res.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/screensaver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/screensaver.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/shape.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/shm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/shm.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/sync.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xc_misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xc_misc.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xcb.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xcb.xsd -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xevie.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xevie.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xf86dri.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xf86dri.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xf86vidmode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xf86vidmode.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xfixes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xfixes.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xinerama.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xinerama.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xinput.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xinput.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xkb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xkb.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xprint.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xproto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xproto.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xselinux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xselinux.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xtest.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xv.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/src/xvmc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/src/xvmc.xml -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcb-proto.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcb-proto.pc.in -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/Makefile.am -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/align.py -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/error.py -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/expr.py -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/matcher.py -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/state.py -------------------------------------------------------------------------------- /xcb-proto-1.17.0/xcbgen/xtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcb-proto-1.17.0/xcbgen/xtypes.py -------------------------------------------------------------------------------- /xcbgen-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/Cargo.toml -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/alignment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/alignment.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/doc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/doc.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/expression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/expression.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/fields.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/fields.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/mod.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/defs/top_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/defs/top_level.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/lib.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/parser.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/align_checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/align_checker.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/extra_fields_inserter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/extra_fields_inserter.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/field_ref_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/field_ref_resolver.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/mod.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/nesting_checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/nesting_checker.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/param_ref_gatherer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/param_ref_gatherer.rs -------------------------------------------------------------------------------- /xcbgen-rs/src/resolver/type_resolver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xcbgen-rs/src/resolver/type_resolver.rs -------------------------------------------------------------------------------- /xkbcommon-example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xkbcommon-example/Cargo.toml -------------------------------------------------------------------------------- /xkbcommon-example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xkbcommon-example/src/main.rs -------------------------------------------------------------------------------- /xtrace-example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xtrace-example/Cargo.toml -------------------------------------------------------------------------------- /xtrace-example/src/connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xtrace-example/src/connection.rs -------------------------------------------------------------------------------- /xtrace-example/src/connection_inner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xtrace-example/src/connection_inner.rs -------------------------------------------------------------------------------- /xtrace-example/src/forwarder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xtrace-example/src/forwarder.rs -------------------------------------------------------------------------------- /xtrace-example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychon/x11rb/HEAD/xtrace-example/src/main.rs --------------------------------------------------------------------------------