blwf 0.2.0

A framework for building cross-platform applications with wgpu and winit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub use anyhow::{Error, Result};
pub use wgpu;
pub use winit;

mod app_container;
mod wgpu_base;

pub use app_container::WgpuApplication;
pub use app_container::run;
pub use wgpu_base::WgpuBase;

#[doc = include_str!("../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;