rotex-vulkan 0.1.1

A Vulkan backend for rotex_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod layout;
mod pipeline;
mod shader;
mod state;
mod vertex;

pub use layout::{DescriptorSetLayout, GraphicsPipelineLayout};
pub use pipeline::{GraphicsPipeline, GraphicsPipelineBuilder};
pub use shader::{ShaderModule, ShaderStageDescriptor};
#[allow(unused_imports)]
pub use state::{
    ColorBlendAttachmentState, ColorBlendState, DepthStencilState, RasterizationState,
};
pub use vertex::{Vertex, VertexInputDescriptor};