xgb-render: update comments

This commit is contained in:
Přemysl Eric Janouch 2018-08-23 04:55:41 +02:00
parent 41e04fdc9f
commit 0c2853a8ae
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 8 additions and 0 deletions

View File

@ -1,10 +1,18 @@
package main
// We could also easily use x/image/font/basicfont to load some glyphs into X,
// relying on the fact that it is a vertical array of A8 masks. Though it only
// supports ASCII and has but one size. Best just make a custom BDF loader,
// those fonts have larger coverages and we would be in control. Though again,
// they don't seem to be capable of antialiasing.
import (
"fmt"
"github.com/BurntSushi/xgb"
"github.com/BurntSushi/xgb/render"
"github.com/BurntSushi/xgb/xproto"
// golang.org/x/image/font/opentype cannot render yet but the API is
// more or less the same.
"github.com/golang/freetype"
"github.com/golang/freetype/truetype"
"golang.org/x/image/font"