kopki

Crates.iokopki
lib.rskopki
version0.4.5
sourcesrc
created_at2024-02-13 05:43:29.461145
updated_at2024-09-01 03:55:14.803722
descriptiona simple graphical engine made with wgpu and winit
homepage
repositoryhttps://github.com/jjmartinodev/kopki
max_upload_size
id1137959
size86,770
sugmaboy (jjmartinodev)

documentation

README

kopki

Small engine for creating graphical contexts and framebuffers with winit and wgpu.

Objectives

  • Windows and Linux support.

Non-Objectives

  • Android and MacOs support.

Minimal Example

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.

Commit count: 0

cargo fmt