Move opengl -> internal/opengl

This commit is contained in:
Hajime Hoshi 2014-12-10 00:25:54 +09:00
parent d1f513a043
commit ab47f14124
11 changed files with 5 additions and 5 deletions

View File

@ -19,7 +19,7 @@ package glfw
import ( import (
glfw "github.com/go-gl/glfw3" glfw "github.com/go-gl/glfw3"
"github.com/hajimehoshi/ebiten" "github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/opengl" "github.com/hajimehoshi/ebiten/internal/opengl"
"image" "image"
"runtime" "runtime"
) )

View File

@ -21,7 +21,7 @@ import (
"fmt" "fmt"
glfw "github.com/go-gl/glfw3" glfw "github.com/go-gl/glfw3"
"github.com/hajimehoshi/ebiten" "github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/opengl" "github.com/hajimehoshi/ebiten/internal/opengl"
) )
func init() { func init() {

View File

@ -19,7 +19,7 @@ package opengl
import ( import (
"github.com/go-gl/gl" "github.com/go-gl/gl"
"github.com/hajimehoshi/ebiten" "github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/opengl/internal/shader" "github.com/hajimehoshi/ebiten/internal/opengl/internal/shader"
"image" "image"
"math" "math"
"sync" "sync"

View File

@ -19,7 +19,7 @@ package opengl
import ( import (
"fmt" "fmt"
"github.com/go-gl/gl" "github.com/go-gl/gl"
"github.com/hajimehoshi/ebiten/opengl/internal/shader" "github.com/hajimehoshi/ebiten/internal/opengl/internal/shader"
) )
func orthoProjectionMatrix(left, right, bottom, top int) [4][4]float64 { func orthoProjectionMatrix(left, right, bottom, top int) [4][4]float64 {

View File

@ -19,7 +19,7 @@ package opengl
import ( import (
"github.com/go-gl/gl" "github.com/go-gl/gl"
"github.com/hajimehoshi/ebiten" "github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/opengl/internal/shader" "github.com/hajimehoshi/ebiten/internal/opengl/internal/shader"
"image" "image"
"image/draw" "image/draw"
) )