Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make SixelImage fields public #3

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ use sixel_tokenizer::{ColorCoordinateSystem, Parser};

#[derive(Debug, Clone)]
pub struct SixelImage {
color_registers: BTreeMap<u16, SixelColor>,
pixels: Vec<Vec<Pixel>>,
pub color_registers: BTreeMap<u16, SixelColor>,
pub pixels: Vec<Vec<Pixel>>,
}

impl SixelImage {
Expand Down Expand Up @@ -87,8 +87,8 @@ impl SixelImage {

#[derive(Clone, Copy)]
pub struct Pixel {
on: bool,
color: u16,
pub on: bool,
pub color: u16,
}

impl fmt::Debug for Pixel {
Expand Down