dear_implot3d_sys/lib.rs
1//! Low-level FFI bindings for ImPlot3D via the cimplot3d C API
2//!
3//! This crate pairs with `dear-imgui-sys` and exposes raw bindings to the
4//! ImPlot3D library using the cimplot3d C API. Prefer using the higher-level
5//! `dear-implot3d` crate for safe, idiomatic Rust wrappers.
6
7#![allow(non_upper_case_globals)]
8#![allow(non_camel_case_types)]
9#![allow(non_snake_case)]
10#![allow(dead_code)]
11#![allow(unnecessary_transmutes)]
12#![allow(clippy::all)]
13#![allow(unpredictable_function_pointer_comparisons)]
14
15// Re-export Dear ImGui types for compatibility
16pub use dear_imgui_sys::{ImDrawList, ImGuiContext, ImGuiID, ImTextureID, ImVec2, ImVec4};
17
18// Include generated bindings
19include!(concat!(env!("OUT_DIR"), "/bindings.rs"));