ndk/
lib.rs

1//! # Android NDK
2//!
3//! Bindings to the [Android NDK].
4//!
5//! [Android NDK]: https://developer.android.com/ndk/reference
6#![warn(
7    missing_debug_implementations,
8    rust_2018_idioms,
9    trivial_casts,
10    unused_qualifications
11)]
12#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
13
14pub mod asset;
15pub mod audio;
16pub mod bitmap;
17pub mod configuration;
18pub mod data_space;
19pub mod event;
20pub mod font;
21pub mod hardware_buffer;
22pub mod hardware_buffer_format;
23pub mod input_queue;
24pub mod looper;
25pub mod media;
26pub mod media_error;
27pub mod native_activity;
28pub mod native_window;
29pub mod shared_memory;
30pub mod surface_texture;
31pub mod sync;
32pub mod trace;
33mod utils;