2023-01-16 23:09:07 -05:00
|
|
|
//! librashader Vulkan runtime
|
|
|
|
//!
|
|
|
|
//! This crate should not be used directly.
|
|
|
|
//! See [`librashader::runtime::vk`](https://docs.rs/librashader/latest/librashader/runtime/vk/index.html) instead.
|
2023-02-16 17:33:47 -05:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2024-09-15 01:55:14 -04:00
|
|
|
#![cfg_attr(not(feature = "stable"), feature(type_alias_impl_trait))]
|
2022-12-05 21:01:15 -05:00
|
|
|
|
2022-12-21 21:39:31 -05:00
|
|
|
mod draw_quad;
|
2022-12-06 01:01:21 -05:00
|
|
|
mod filter_chain;
|
|
|
|
mod filter_pass;
|
2022-12-07 02:05:10 -05:00
|
|
|
mod framebuffer;
|
2023-02-08 21:21:40 -05:00
|
|
|
mod graphics_pipeline;
|
2022-12-21 21:39:31 -05:00
|
|
|
mod luts;
|
2023-02-09 18:11:34 -05:00
|
|
|
mod memory;
|
2023-01-13 01:48:04 -05:00
|
|
|
mod queue_selection;
|
2022-12-21 22:03:38 -05:00
|
|
|
mod samplers;
|
2022-12-22 01:30:14 -05:00
|
|
|
mod texture;
|
2023-01-09 22:54:54 -05:00
|
|
|
mod util;
|
2023-01-13 01:19:41 -05:00
|
|
|
|
2023-01-13 16:55:50 -05:00
|
|
|
pub use filter_chain::FilterChainVulkan;
|
2023-01-13 02:32:21 -05:00
|
|
|
pub use filter_chain::VulkanInstance;
|
2023-01-15 03:06:09 -05:00
|
|
|
pub use filter_chain::VulkanObjects;
|
2023-01-13 01:48:04 -05:00
|
|
|
pub use texture::VulkanImage;
|
2023-01-13 01:19:41 -05:00
|
|
|
|
2024-02-11 18:01:00 -05:00
|
|
|
use librashader_runtime::impl_filter_chain_parameters;
|
|
|
|
impl_filter_chain_parameters!(FilterChainVulkan);
|
|
|
|
|
2023-01-13 01:19:41 -05:00
|
|
|
pub mod error;
|
|
|
|
pub mod options;
|
2023-01-25 23:45:10 -05:00
|
|
|
mod render_pass;
|