diff --git a/internal/egl/egl.go b/internal/egl/egl.go index f2b775df..886f4a0d 100644 --- a/internal/egl/egl.go +++ b/internal/egl/egl.go @@ -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 }