hbm_minigbm/
lib.rs

1// Copyright 2024 Google LLC
2// SPDX-License-Identifier: MIT
3
4#![warn(missing_docs)]
5
6//! An unstable HBM C API for minigbm drivers.
7//!
8//! This crate provides an unstable C API for minigbm drivers.  The C API should be considered
9//! internal to minigbm.  There is no plan to stabilize the API at the moment.
10
11pub mod capi;
12mod log;