summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/golang/freetype/example
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/golang/freetype/example')
-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
6 files changed, 14 insertions, 14 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")