#125: Fix import paths (Use go-gl/gl and go-gl/glfw instead of go-gl/glow and go-gl/glfw3

This commit is contained in:
Hajime Hoshi 2015-04-13 00:49:30 +09:00
parent bca600a093
commit 82ea3fa020
5 changed files with 5 additions and 5 deletions

View File

@ -114,7 +114,7 @@ const uiKeysGlfwTmpl = `{{.License}}
package ui
import (
glfw "github.com/go-gl/glfw3"
glfw "github.com/go-gl/glfw/v3.0/glfw"
)
var glfwKeyCodeToKey = map[glfw.Key]Key{

View File

@ -19,7 +19,7 @@ package opengl
import (
"errors"
"fmt"
"github.com/go-gl/glow/gl-core/3.2/gl"
"github.com/go-gl/gl/v3.2-core/gl"
)
type Texture uint32

View File

@ -17,7 +17,7 @@
package ui
import (
glfw "github.com/go-gl/glfw3"
glfw "github.com/go-gl/glfw/v3.0/glfw"
"math"
)

View File

@ -19,7 +19,7 @@
package ui
import (
glfw "github.com/go-gl/glfw3"
glfw "github.com/go-gl/glfw/v3.0/glfw"
)
var glfwKeyCodeToKey = map[glfw.Key]Key{

View File

@ -18,7 +18,7 @@ package ui
import (
"fmt"
glfw "github.com/go-gl/glfw3"
glfw "github.com/go-gl/glfw/v3.0/glfw"
"runtime"
"time"
)