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 eglCtx *eglContext
eglSurf _EGLSurface eglSurf _EGLSurface
width, height int width, height int
refreshFBO bool
} }
type eglContext struct { type eglContext struct {
@@ -126,7 +125,6 @@ func (c *Context) CreateSurface(win NativeWindowType, width, height int) error {
c.eglSurf = eglSurf c.eglSurf = eglSurf
c.width = width c.width = width
c.height = height c.height = height
c.refreshFBO = true
return err return err
} }