notan_graphics 0.9.1

Provides simple graphics API for Notan
pub mod buffer;
pub mod color;
pub mod commands;
pub mod device;
mod limits;
pub mod pipeline;
mod render_texture;
pub mod renderer;
mod shader;
pub mod texture;

pub mod prelude;

pub use glsl_layout;

#[cfg(feature = "texture_to_file")]
mod to_file;

pub use device::*;
pub use limits::*;
pub use render_texture::*;
pub use renderer::*;
pub use shader::*;
pub use texture::*;

pub use notan_macro::{
    fragment_shader, include_fragment_shader, include_vertex_shader, vertex_shader,
};