Skip to content

Commit bf25f8c

Browse files
committed
Move files up one level.
1 parent 2f0c939 commit bf25f8c

File tree

17 files changed

+7
-7
lines changed

17 files changed

+7
-7
lines changed

example/freetype/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"log"
1818
"os"
1919

20-
"code.google.com/p/freetype-go/freetype"
20+
"github.com/golang/freetype"
2121
)
2222

2323
var (

example/gamma/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"log"
1515
"os"
1616

17-
"code.google.com/p/freetype-go/freetype/raster"
17+
"github.com/golang/freetype/raster"
1818
)
1919

2020
func p(x, y int) raster.Point {

example/raster/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"log"
1616
"os"
1717

18-
"code.google.com/p/freetype-go/freetype/raster"
18+
"github.com/golang/freetype/raster"
1919
)
2020

2121
type node struct {

example/round/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"math"
2222
"os"
2323

24-
"code.google.com/p/freetype-go/freetype/raster"
24+
"github.com/golang/freetype/raster"
2525
)
2626

2727
func main() {

example/truetype/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"io/ioutil"
1212
"log"
1313

14-
"code.google.com/p/freetype-go/freetype/truetype"
14+
"github.com/golang/freetype/truetype"
1515
)
1616

1717
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")

freetype/freetype.go renamed to freetype.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"image"
1414
"image/draw"
1515

16-
"code.google.com/p/freetype-go/freetype/raster"
17-
"code.google.com/p/freetype-go/freetype/truetype"
16+
"github.com/golang/freetype/raster"
17+
"github.com/golang/freetype/truetype"
1818
)
1919

2020
// These constants determine the size of the glyph cache. The cache is keyed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)