Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjmartinodev/kopki
https://github.com/jjmartinodev/kopki
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/jjmartinodev/kopki
- Owner: jjmartinodev
- License: mit
- Created: 2024-02-12T20:04:15.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-01T03:49:04.000Z (3 months ago)
- Last Synced: 2024-11-07T02:05:58.561Z (9 days ago)
- Language: Rust
- Size: 82 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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.