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 (
glfw "github.com/go-gl/glfw3"
"github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/opengl"
"github.com/hajimehoshi/ebiten/internal/opengl"
"image"
"runtime"
)

View File

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

View File

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

View File

@ -19,7 +19,7 @@ package opengl
import (
"fmt"
"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 {

View File

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