summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/golang
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/golang')
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go6
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go4
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go6
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/freetype.go8
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go2
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go2
-rw-r--r--Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go2
-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
17 files changed, 33 insertions, 33 deletions
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go
index 0f57d1767..4af981f9f 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/drawer/main.go
@@ -23,9 +23,9 @@ import (
"math"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
- "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/truetype"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
var (
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go
index 50cf246ec..21657a381 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/freetype/main.go
@@ -22,8 +22,8 @@ import (
"log"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/font"
+ "github.com/golang/freetype"
+ "golang.org/x/image/font"
)
var (
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go
index 81f476e89..778697f4f 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/gamma/main.go
@@ -19,8 +19,8 @@ import (
"log"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "github.com/golang/freetype/raster"
+ "golang.org/x/image/math/fixed"
)
func p(x, y int) fixed.Point26_6 {
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go
index ca3cddfdc..ae9c57f97 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/raster/main.go
@@ -20,8 +20,8 @@ import (
"log"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "github.com/golang/freetype/raster"
+ "golang.org/x/image/math/fixed"
)
type node struct {
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go
index b849f614f..6c3012e62 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/round/main.go
@@ -26,8 +26,8 @@ import (
"math"
"os"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "github.com/golang/freetype/raster"
+ "golang.org/x/image/math/fixed"
)
// pDot returns the dot product p·q.
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go b/Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go
index e6b4d28eb..5fc72f771 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/example/truetype/main.go
@@ -16,9 +16,9 @@ import (
"io/ioutil"
"log"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
- "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/truetype"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/freetype.go b/Godeps/_workspace/src/github.com/golang/freetype/freetype.go
index 27d1c5162..bec01f6b7 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/freetype.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/freetype.go
@@ -13,10 +13,10 @@ import (
"image"
"image/draw"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/raster"
- "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype/truetype"
- "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"
+ "github.com/golang/freetype/truetype"
+ "golang.org/x/image/font"
+ "golang.org/x/image/math/fixed"
)
// These constants determine the size of the glyph cache. The cache is keyed
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go b/Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go
index 1a2b8a77b..f3696ea98 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/raster/geom.go
@@ -9,7 +9,7 @@ import (
"fmt"
"math"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// maxAbs returns the maximum of abs(a) and abs(b).
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go b/Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go
index 859bee657..995925e2a 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/raster/raster.go
@@ -18,7 +18,7 @@ package raster
import (
"strconv"
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// A cell is part of a linked list (for a given yi co-ordinate) of accumulated
diff --git a/Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go b/Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go
index fa9ba640b..8d4379757 100644
--- a/Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go
+++ b/Godeps/_workspace/src/github.com/golang/freetype/raster/stroke.go
@@ -6,7 +6,7 @@
package raster
import (
- "github.com/mattermost/platform/Godeps/_workspace/src/golang.org/x/image/math/fixed"
+ "golang.org/x/image/math/fixed"
)
// Two points are considered practically equal if the square of the distance
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) {