diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 23:33:03 +1100 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-10-17 23:33:03 +1100 |
commit | a9b750f003c711eb08cbc4b6b383de0ddab6ddcc (patch) | |
tree | de0aeee956b3e5521e2f55c6cfcafc9051531191 | |
parent | bda9a0d8b503e6ed75daafd1dd288a28590a8df6 (diff) |
fix rust bindings
-rw-r--r-- | bindgen/rust/celeritas-sys/src/lib.rs | 10 | ||||
-rw-r--r-- | bindgen/rust/src/prelude.rs | 32 |
2 files changed, 21 insertions, 21 deletions
diff --git a/bindgen/rust/celeritas-sys/src/lib.rs b/bindgen/rust/celeritas-sys/src/lib.rs index 9ea3e47..3d877a4 100644 --- a/bindgen/rust/celeritas-sys/src/lib.rs +++ b/bindgen/rust/celeritas-sys/src/lib.rs @@ -102,14 +102,14 @@ include!(concat!(env!("OUT_DIR"), "/bindings.rs")); // }; // } -impl Default for ShaderBinding { +impl Default for shader_binding { fn default() -> Self { Self { label: "static".as_ptr() as *const _, - kind: ShaderBindingKind_BINDING_COUNT, - vis: ShaderVisibility_VISIBILITY_VERTEX, - data: ShaderBinding__bindgen_ty_1 { - bytes: ShaderBinding__bindgen_ty_1__bindgen_ty_1 { + binding_type: shader_binding_type_BINDING_BUFFER, + visibility: shader_stage_STAGE_VERTEX, + data: shader_binding__bindgen_ty_1 { + bytes: shader_binding__bindgen_ty_1__bindgen_ty_1 { size: 0, data: std::ptr::null_mut(), }, diff --git a/bindgen/rust/src/prelude.rs b/bindgen/rust/src/prelude.rs index 90a5df5..240b13a 100644 --- a/bindgen/rust/src/prelude.rs +++ b/bindgen/rust/src/prelude.rs @@ -1,20 +1,20 @@ -/// --- maths types -pub use celeritas_sys::Vec2; -pub use celeritas_sys::Vec3; -pub use celeritas_sys::Vec4; -pub use celeritas_sys::Quat; -pub use celeritas_sys::Mat4; -pub use celeritas_sys::Transform; +// --- maths types +pub use celeritas_sys::mat4; +pub use celeritas_sys::quat; +pub use celeritas_sys::transform; +pub use celeritas_sys::vec2; +pub use celeritas_sys::vec3; +pub use celeritas_sys::vec4; -// // --- handles -pub use celeritas_sys::BufHandle; -pub use celeritas_sys::TexHandle; -pub use celeritas_sys::MaterialHandle; -pub use celeritas_sys::MeshHandle; -pub use celeritas_sys::ModelHandle; -pub use celeritas_sys::PipelineHandle; -// pub use celeritas_sys::PipelineLayoutHandle; -// pub use celeritas_sys::RenderpassHandle; +// --- handles +pub type BufHandle = celeritas_sys::buf_handle; +pub type TexHandle = celeritas_sys::tex_handle; +// pub type MaterialHandle = celeritas_sys::material_handle; +// pub type MeshHandle = celeritas_sys::mesh_handle; +pub type ModelHandle = celeritas_sys::model_handle; +pub type PipelineHandle = celeritas_sys::pipeline_handle; +// pub type PipelineLayoutHandle = celeritas_sys::pipeline_layout_handle; +// pub type RenderpassHandle = celeritas_sys::renderpass_handle; // // --- conversions // pub use celeritas_sys::conversions; |