From a139484704b6410634c55bd539ce876ed2603bb0 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Fri, 8 Feb 2008 22:00:40 -0500 Subject: [PATCH] because we're doublebuffering, the last commit made some really weirdness.. just redraw everything on screen when we do a redraw for now --- loco/loco.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loco/loco.c b/loco/loco.c index 216b4965..ad844657 100644 --- a/loco/loco.c +++ b/loco/loco.c @@ -246,13 +246,13 @@ static void full_composite(void) int ret; LocoList *it; - if (full_redraw_required) + /* XXX if (full_redraw_required) */ glClear(GL_COLOR_BUFFER_BIT); for (it = stacking_bottom; it != stacking_top; it = it->prev) { if (it->window->input_only) continue; if (!it->window->visible) continue; - if (!full_redraw_required && !it->window->damaged) continue; + /* XXX if (!full_redraw_required && !it->window->damaged) continue; */ if (!full_redraw_required) { /* XXX if the window is transparent, then clear the background -- 2.39.2