Skip to content

Commit

Permalink
#2467 we have our own render buffer
Browse files Browse the repository at this point in the history
so no need to use 'auto-render'
  • Loading branch information
totaam committed Nov 9, 2023
1 parent 65851ae commit ed139bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xpra/client/gl/gtk3/glarea_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@

log = Logger("opengl", "paint")


def GLArea(alpha:bool) -> Gtk.GLArea:
glarea = Gtk.GLArea()
glarea.set_use_es(True)
glarea.set_auto_render(True)
glarea.set_auto_render(False)
glarea.set_has_alpha(alpha)
glarea.set_has_depth_buffer(False)
glarea.set_has_stencil_buffer(False)
Expand Down

0 comments on commit ed139bd

Please sign in to comment.