quackie 0.2.1

A duck for your terminal! 🦆
Documentation
1
2
3
4
5
6
7
8
pub mod antialias;
pub mod outline;

use super::{pixel_data::PixelData, window_buffer::WindowBuffer};

pub trait PostProcessShader: Sync {
    fn execute(&self, window_buffer: &WindowBuffer, x: usize, y: usize) -> PixelData;
}