summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/golang/freetype/truetype
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/golang/freetype/truetype')
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go6
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go2
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go2
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go2
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go4
7 files changed, 12 insertions, 12 deletions
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go
index e800cd1bd..d64a014c3 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/face.go
@@ -8,9 +8,9 @@ package truetype
import (
"image"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "github.com/golang/freetype/raster"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
func powerOf2(i int) bool {
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go
index 6833e18bf..856581dff 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/face_test.go
@@ -12,8 +12,8 @@ import (
"strings"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
func BenchmarkDrawString(b *testing.B) {
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go
index eca2623d1..c2935a58e 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/glyph.go
@@ -6,8 +6,8 @@
package truetype
import (
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
// TODO: implement VerticalHinting.
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go
index e4eaf9294..0315de511 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint.go
@@ -12,7 +12,7 @@ import (
"errors"
"math"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
const (
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go
index d218bb0f6..7eb43dde0 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/hint_test.go
@@ -10,7 +10,7 @@ import (
"strings"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
func TestBytecode(t *testing.T) {
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go
index c69194d33..692e01526 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype.go
@@ -20,7 +20,7 @@ package truetype
import (
"fmt"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// An Index is a Font's index of a rune.
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go b/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go
index 2382ab112..bd62d1da1 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/truetype/truetype_test.go
@@ -15,8 +15,8 @@ import (
"strings"
"testing"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
func parseTestdataFont(name string) (f *Font, testdataIsOptional bool, err error) {