Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

mode name
drwxr-xr-x examples/
drwxr-xr-x src/
-rw-r--r-- Cargo.toml
-rw-r--r-- README.md
README

Graphics API for PlayDate

High-level graphics API built on-top of playdate-sys.

⚠️ Prior to the version 1.0 API is unstable and can be changed without deprecation period.

Usage

extern crate playdate_graphics;
use playdate_graphics::{bitmap, color, text, BitmapFlipExt};

// create and draw black rect:
let image = bitmap::Bitmap::new(100, 100, color::Color::BLACK).unwrap();
image.draw(50, 100, bitmap::BitmapFlip::Unflipped);

// draw simple line of text:
let str = CStr::from_bytes_with_nul(b"Simple Text\0").unwrap();
text::draw_text_cstr(str, 40, 40);

More covered in examples.


This software is not sponsored or supported by Panic.