diff options
author | Joe Wilm <joe@jwilm.com> | 2016-02-21 19:44:54 -0800 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-02-21 19:45:35 -0800 |
commit | 5040c44f670ab1ce51faf3ae588002f7b4c0ffca (patch) | |
tree | fe5da8dc8f5f025a109464a225f271f9eedf0c03 /src/main.rs | |
parent | 32bac943433610434f7d504114d6d409c8a698af (diff) | |
download | r-alacritty-5040c44f670ab1ce51faf3ae588002f7b4c0ffca.tar.gz r-alacritty-5040c44f670ab1ce51faf3ae588002f7b4c0ffca.tar.bz2 r-alacritty-5040c44f670ab1ce51faf3ae588002f7b4c0ffca.zip |
Implement very basic glyph rasterization
There are several assumptions made at this point and very little (no)
error handling done.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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!"); |