Move files up one level.
This commit is contained in:
parent
2f0c939b0a
commit
bf25f8ce0e
17 changed files with 7 additions and 7 deletions
|
@ -17,7 +17,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype"
|
||||
"github.com/golang/freetype"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -14,7 +14,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"github.com/golang/freetype/raster"
|
||||
)
|
||||
|
||||
func p(x, y int) raster.Point {
|
||||
|
|
|
@ -15,7 +15,7 @@ import (
|
|||
"log"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"github.com/golang/freetype/raster"
|
||||
)
|
||||
|
||||
type node struct {
|
||||
|
|
|
@ -21,7 +21,7 @@ import (
|
|||
"math"
|
||||
"os"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"github.com/golang/freetype/raster"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -11,7 +11,7 @@ import (
|
|||
"io/ioutil"
|
||||
"log"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype/truetype"
|
||||
"github.com/golang/freetype/truetype"
|
||||
)
|
||||
|
||||
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")
|
||||
|
|
|
@ -13,8 +13,8 @@ import (
|
|||
"image"
|
||||
"image/draw"
|
||||
|
||||
"code.google.com/p/freetype-go/freetype/raster"
|
||||
"code.google.com/p/freetype-go/freetype/truetype"
|
||||
"github.com/golang/freetype/raster"
|
||||
"github.com/golang/freetype/truetype"
|
||||
)
|
||||
|
||||
// These constants determine the size of the glyph cache. The cache is keyed
|
Loading…
Reference in a new issue