internal/egl: remove unused field

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2021-08-29 19:35:35 +02:00
parent 8aac73458a
commit fe52357141
-2
View File
@@ -19,7 +19,6 @@ type Context struct {
eglCtx *eglContext
eglSurf _EGLSurface
width, height int
refreshFBO bool
}
type eglContext struct {
@@ -126,7 +125,6 @@ func (c *Context) CreateSurface(win NativeWindowType, width, height int) error {
c.eglSurf = eglSurf
c.width = width
c.height = height
c.refreshFBO = true
return err
}