diff --git a/internal/graphics/opengl/context.go b/internal/graphics/opengl/context.go index 7da4f6fd1..f9454a712 100644 --- a/internal/graphics/opengl/context.go +++ b/internal/graphics/opengl/context.go @@ -38,8 +38,8 @@ type Context struct { } func (c *Context) bindFramebuffer(f Framebuffer) { - if c.lastFramebuffer != f { - c.bindFramebufferImpl(f) - c.lastFramebuffer = f - } + // TODO: This is a temporal hack to pass the tests. + // Fix the bug (#227). + c.bindFramebufferImpl(f) + c.lastFramebuffer = f }