This repository provides Rust bindings for the AMD Display Library (ADL).
The project is currently development and aims to provide high coverage of the ADL SDK.
adl-rs
├── adl
│ ├── src
│ ├── Cargo.toml
│ └── Cargo.lock
├── adl-example
│ ├── src
│ ├── Cargo.toml
│ └── Cargo.lock
├── adl-sys
│ ├── src
│ ├── Cargo.toml
│ └── Cargo.lock
├── Cargo.toml
└── Cargo.lock
adl
: The high-level library that provides safe and ergonomic Rust bindings for ADL.adl-sys
: The low-level library that provides raw FFI bindings to the ADL SDK.adl-example
: A sample application demonstrating how to use the adl crate.
cargo build --workspace
cargo run --manifest-path ./adl-example/Cargo.toml