Crates.io | kopki |
lib.rs | kopki |
version | 0.4.5 |
source | src |
created_at | 2024-02-13 05:43:29.461145 |
updated_at | 2024-09-01 03:55:14.803722 |
description | a simple graphical engine made with wgpu and winit |
homepage | |
repository | https://github.com/jjmartinodev/kopki |
max_upload_size | |
id | 1137959 |
size | 86,770 |
Small engine for creating graphical contexts and framebuffers with winit and wgpu.
use kopki::RenderInstance;
fn main() {
let instance = RenderInstance::new();
let device = instance.device_from_instance();
_ = device;
}
for more examples look for the examples folder in the github repository.