summaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/golang/freetype/example
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-11-23 15:53:48 -0800
committer=Corey Hulen <corey@hulen.com>2015-11-23 15:53:48 -0800
commit4f4cd5e63573da4d6edcc7d4213afaca67c19f88 (patch)
treecefbc7af53629d97644ca2f6b2369e9d879f0101 /Godeps/_workspace/src/github.com/golang/freetype/example
parentf8a3c9a14edca6df0647d89cf225f2470cbe025c (diff)
downloadchat-4f4cd5e63573da4d6edcc7d4213afaca67c19f88.tar.gz
chat-4f4cd5e63573da4d6edcc7d4213afaca67c19f88.tar.bz2
chat-4f4cd5e63573da4d6edcc7d4213afaca67c19f88.zip
upgrading libs
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 4af981f9f..0f57d1767 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/golang/freetype/truetype"
- "golang.org/x/image/font"
- "golang.org/x/image/math/fixed"
+ "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"
)
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 21657a381..50cf246ec 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/golang/freetype"
- "golang.org/x/image/font"
+ "github.com/mattermost/platform/Godeps/_workspace/src/github.com/golang/freetype"
+ "github.com/mattermost/platform/Godeps/_workspace/src/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 778697f4f..81f476e89 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/golang/freetype/raster"
- "golang.org/x/image/math/fixed"
+ "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"
)
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 ae9c57f97..ca3cddfdc 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/golang/freetype/raster"
- "golang.org/x/image/math/fixed"
+ "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"
)
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 6c3012e62..b849f614f 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/golang/freetype/raster"
- "golang.org/x/image/math/fixed"
+ "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"
)
// 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 5fc72f771..e6b4d28eb 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/golang/freetype/truetype"
- "golang.org/x/image/font"
- "golang.org/x/image/math/fixed"
+ "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"
)
var fontfile = flag.String("fontfile", "../../testdata/luxisr.ttf", "filename of the ttf font")