From e1e8d058a33f7566f9c565d04b0d8b56f9645c35 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Wed, 25 Apr 2018 09:28:54 +0200 Subject: add vendor --- .../x/image/font/inconsolata/inconsolata.go | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 vendor/golang.org/x/image/font/inconsolata/inconsolata.go (limited to 'vendor/golang.org/x/image/font/inconsolata/inconsolata.go') diff --git a/vendor/golang.org/x/image/font/inconsolata/inconsolata.go b/vendor/golang.org/x/image/font/inconsolata/inconsolata.go new file mode 100644 index 0000000..276a815 --- /dev/null +++ b/vendor/golang.org/x/image/font/inconsolata/inconsolata.go @@ -0,0 +1,29 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +//go:generate genbasicfont -size=16 -pkg=inconsolata -hinting=full -var=regular8x16 -fontfile=http://www.levien.com/type/myfonts/inconsolata/InconsolataGo-Regular.ttf +//go:generate genbasicfont -size=16 -pkg=inconsolata -hinting=full -var=bold8x16 -fontfile=http://www.levien.com/type/myfonts/inconsolata/InconsolataGo-Bold.ttf + +// The genbasicfont program is github.com/golang/freetype/example/genbasicfont + +// Package inconsolata provides pre-rendered bitmap versions of the Inconsolata +// font family. +// +// Inconsolata is copyright Raph Levien and Cyreal. This package is licensed +// under Go's BSD-style license (https://golang.org/LICENSE) with their +// permission. +// +// Inconsolata's home page is at +// http://www.levien.com/type/myfonts/inconsolata.html +package inconsolata // import "golang.org/x/image/font/inconsolata" + +import ( + "golang.org/x/image/font/basicfont" +) + +// Regular8x16 is a regular weight, 8x16 font face. +var Regular8x16 *basicfont.Face = ®ular8x16 + +// Bold8x16 is a bold weight, 8x16 font face. +var Bold8x16 *basicfont.Face = &bold8x16 -- cgit v1.2.3