diff --git a/raster/geom.go b/raster/geom.go index f3696ea..6d81b9e 100644 --- a/raster/geom.go +++ b/raster/geom.go @@ -9,7 +9,7 @@ import ( "fmt" "math" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) // maxAbs returns the maximum of abs(a) and abs(b). diff --git a/raster/raster.go b/raster/raster.go index f210092..4c33670 100644 --- a/raster/raster.go +++ b/raster/raster.go @@ -18,7 +18,7 @@ package raster // import "git.gutmet.org/golang-freetype.git/raster" import ( "strconv" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) // A cell is part of a linked list (for a given yi co-ordinate) of accumulated diff --git a/raster/stroke.go b/raster/stroke.go index bcc66b2..4ea895a 100644 --- a/raster/stroke.go +++ b/raster/stroke.go @@ -6,7 +6,7 @@ package raster import ( - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) // Two points are considered practically equal if the square of the distance diff --git a/truetype/face.go b/truetype/face.go index 9ce3d4b..9f2e93b 100644 --- a/truetype/face.go +++ b/truetype/face.go @@ -10,8 +10,8 @@ import ( "math" "git.gutmet.org/golang-freetype.git/raster" - "golang.org/x/image/font" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/font" + "git.gutmet.org/golang-image.git/math/fixed" ) func powerOf2(i int) bool { diff --git a/truetype/face_test.go b/truetype/face_test.go index 856581d..46a863f 100644 --- a/truetype/face_test.go +++ b/truetype/face_test.go @@ -12,8 +12,8 @@ import ( "strings" "testing" - "golang.org/x/image/font" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/font" + "git.gutmet.org/golang-image.git/math/fixed" ) func BenchmarkDrawString(b *testing.B) { diff --git a/truetype/glyph.go b/truetype/glyph.go index 6157ad8..dc947eb 100644 --- a/truetype/glyph.go +++ b/truetype/glyph.go @@ -6,8 +6,8 @@ package truetype import ( - "golang.org/x/image/font" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/font" + "git.gutmet.org/golang-image.git/math/fixed" ) // TODO: implement VerticalHinting. diff --git a/truetype/hint.go b/truetype/hint.go index 13f785b..c51f759 100644 --- a/truetype/hint.go +++ b/truetype/hint.go @@ -12,7 +12,7 @@ import ( "errors" "math" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) const ( diff --git a/truetype/hint_test.go b/truetype/hint_test.go index 7eb43dd..ab0cb9f 100644 --- a/truetype/hint_test.go +++ b/truetype/hint_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) func TestBytecode(t *testing.T) { diff --git a/truetype/truetype.go b/truetype/truetype.go index 99dce9c..9997c1f 100644 --- a/truetype/truetype.go +++ b/truetype/truetype.go @@ -20,7 +20,7 @@ package truetype // import "git.gutmet.org/golang-freetype.git/truetype" import ( "fmt" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/math/fixed" ) // An Index is a Font's index of a rune. diff --git a/truetype/truetype_test.go b/truetype/truetype_test.go index a194f37..31a761b 100644 --- a/truetype/truetype_test.go +++ b/truetype/truetype_test.go @@ -15,8 +15,8 @@ import ( "strings" "testing" - "golang.org/x/image/font" - "golang.org/x/image/math/fixed" + "git.gutmet.org/golang-image.git/font" + "git.gutmet.org/golang-image.git/math/fixed" ) func parseTestdataFont(name string) (f *Font, testdataIsOptional bool, err error) {