#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 package ui
import ( import (
glfw "github.com/go-gl/glfw3" glfw "github.com/go-gl/glfw/v3.0/glfw"
) )
var glfwKeyCodeToKey = map[glfw.Key]Key{ var glfwKeyCodeToKey = map[glfw.Key]Key{

View File

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

View File

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

View File

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

View File

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