From 5040c44f670ab1ce51faf3ae588002f7b4c0ffca Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Sun, 21 Feb 2016 19:44:54 -0800 Subject: Implement very basic glyph rasterization There are several assumptions made at this point and very little (no) error handling done. --- src/main.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 66be9b34..7356bd36 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,7 @@ extern crate freetype; extern crate libc; mod list_fonts; +mod text; fn main() { println!("Hello, world!"); -- cgit