diff --git a/example/drawer/main.go b/example/drawer/main.go index c5c9385..4af981f 100644 --- a/example/drawer/main.go +++ b/example/drawer/main.go @@ -24,7 +24,7 @@ import ( "os" "github.com/golang/freetype/truetype" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/example/freetype/main.go b/example/freetype/main.go index 33cef58..21657a3 100644 --- a/example/freetype/main.go +++ b/example/freetype/main.go @@ -23,7 +23,7 @@ import ( "os" "github.com/golang/freetype" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" ) var ( diff --git a/example/truetype/main.go b/example/truetype/main.go index 8e5e4b3..5fc72f7 100644 --- a/example/truetype/main.go +++ b/example/truetype/main.go @@ -17,7 +17,7 @@ import ( "log" "github.com/golang/freetype/truetype" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/freetype.go b/freetype.go index b5da063..9603586 100644 --- a/freetype.go +++ b/freetype.go @@ -15,7 +15,7 @@ import ( "github.com/golang/freetype/raster" "github.com/golang/freetype/truetype" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/truetype/face.go b/truetype/face.go index 9687150..d64a014 100644 --- a/truetype/face.go +++ b/truetype/face.go @@ -9,7 +9,7 @@ import ( "image" "github.com/golang/freetype/raster" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/truetype/face_test.go b/truetype/face_test.go index ff2eb05..856581d 100644 --- a/truetype/face_test.go +++ b/truetype/face_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/truetype/glyph.go b/truetype/glyph.go index 5e187ca..c2935a5 100644 --- a/truetype/glyph.go +++ b/truetype/glyph.go @@ -6,7 +6,7 @@ package truetype import ( - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) diff --git a/truetype/truetype_test.go b/truetype/truetype_test.go index 8299acf..ce7f127 100644 --- a/truetype/truetype_test.go +++ b/truetype/truetype_test.go @@ -15,7 +15,7 @@ import ( "strings" "testing" - "golang.org/x/exp/shiny/font" + "golang.org/x/image/font" "golang.org/x/image/math/fixed" )