internal/gl: rename internal/glimpl

Now that the OpenGL driver package is named "opengl", we can finally get
rid of the ugly "glimpl" name.

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2021-03-06 10:31:35 +01:00
parent a722768da9
commit 7bc0603d7e
17 changed files with 221 additions and 221 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ import (
"syscall/js"
"gioui.org/gpu"
"gioui.org/internal/glimpl"
"gioui.org/internal/gl"
)
type jsContext struct {
@@ -31,7 +31,7 @@ func newGLContext() (context, error) {
}
func (c *jsContext) API() gpu.API {
return gpu.OpenGL{Context: glimpl.Context(c.ctx)}
return gpu.OpenGL{Context: gl.Context(c.ctx)}
}
func (c *jsContext) Release() {