├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── fixed ├── acc_amd64.go ├── acc_amd64.s ├── acc_other.go ├── acc_test.go ├── font.go ├── main.go └── raster.go ├── floating ├── acc_amd64.go ├── acc_amd64.s ├── acc_other.go ├── acc_test.go ├── font.go ├── main.go └── raster.go ├── go.mod └── go.sum /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/README.md -------------------------------------------------------------------------------- /fixed/acc_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/acc_amd64.go -------------------------------------------------------------------------------- /fixed/acc_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/acc_amd64.s -------------------------------------------------------------------------------- /fixed/acc_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/acc_other.go -------------------------------------------------------------------------------- /fixed/acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/acc_test.go -------------------------------------------------------------------------------- /fixed/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/font.go -------------------------------------------------------------------------------- /fixed/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/main.go -------------------------------------------------------------------------------- /fixed/raster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/fixed/raster.go -------------------------------------------------------------------------------- /floating/acc_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/acc_amd64.go -------------------------------------------------------------------------------- /floating/acc_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/acc_amd64.s -------------------------------------------------------------------------------- /floating/acc_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/acc_other.go -------------------------------------------------------------------------------- /floating/acc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/acc_test.go -------------------------------------------------------------------------------- /floating/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/font.go -------------------------------------------------------------------------------- /floating/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/main.go -------------------------------------------------------------------------------- /floating/raster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/floating/raster.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/font-go/HEAD/go.sum --------------------------------------------------------------------------------