diff --git a/internal/graphics/opengl/context_mobile.go b/internal/graphics/opengl/context_mobile.go index 20bf1a871..4c99fd4e3 100644 --- a/internal/graphics/opengl/context_mobile.go +++ b/internal/graphics/opengl/context_mobile.go @@ -179,10 +179,6 @@ func (c *Context) TexSubImage2D(p []uint8, width, height int) { gl.TexSubImage2D(mgl.TEXTURE_2D, 0, 0, 0, width, height, mgl.RGBA, mgl.UNSIGNED_BYTE, p) } -func (c *Context) BindScreenFramebuffer() error { - return c.bindFramebuffer(c.screenFramebuffer) -} - func (c *Context) NewFramebuffer(texture Texture) (Framebuffer, error) { gl := c.gl f := gl.CreateFramebuffer()