Update GLFW version 3.1 -> 3.2

This commit is contained in:
Hajime Hoshi 2016-09-03 16:25:43 +09:00
parent 730b0d5ff9
commit 87efaafcff
4 changed files with 4 additions and 4 deletions

View File

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

View File

@ -20,7 +20,7 @@
package ui
import (
glfw "github.com/go-gl/glfw/v3.1/glfw"
glfw "github.com/go-gl/glfw/v3.2/glfw"
)
var glfwMouseButtonToMouseButton = map[glfw.MouseButton]MouseButton{

View File

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

View File

@ -24,7 +24,7 @@ import (
"runtime"
"time"
"github.com/go-gl/glfw/v3.1/glfw"
"github.com/go-gl/glfw/v3.2/glfw"
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
)