mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 04:48:07 +02:00
Move the memstream code into common code. Other Rust code interfacing with FILE pointers will find the memstream abstraction useful. Most notably, pinning is actually enforced this time with PhantomPinned. Add a .clang-format from a sibling dir (i.e.: compiler/nir) while we're at it to keep things tidy. Signed-off-by: Daniel Almeida <daniel.almeida@collabora.com> Reviewed-by: Faith Ekstrand <faith.ekstrand@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30594>
10 lines
181 B
Rust
10 lines
181 B
Rust
// Copyright © 2024 Igalia S.L.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pub mod as_slice;
|
|
pub mod bindings;
|
|
pub mod bitset;
|
|
pub mod cfg;
|
|
pub mod memstream;
|
|
pub mod nir;
|
|
pub mod smallvec;
|