break;
else if (o.opcode==gOpcode::notify)
need_notify = 1;
- else
+ else if(o.dc)
{
o.dc->exec(&o);
// o.dc is a gDC* filled with grabref... so we must release it here
/* when the main thread is non-idle for a too long time without any display output,
we want to display a spinner. */
-
- struct timeval time;
struct timespec timeout;
- gettimeofday(&time, NULL);
- timeout.tv_sec = time.tv_sec;
- timeout.tv_nsec = time.tv_usec * 1000;
-
+ clock_gettime(CLOCK_REALTIME, &timeout);
+
if (m_spinner_enabled)
+ {
timeout.tv_nsec += 100*1000*1000;
- else
- timeout.tv_nsec += 500*1000*1000;
-
/* yes, this is required. */
- if (timeout.tv_nsec > 1000*1000*1000)
- {
- timeout.tv_nsec -= 1000*1000*1000;
- timeout.tv_sec++;
+ if (timeout.tv_nsec > 1000*1000*1000)
+ {
+ timeout.tv_nsec -= 1000*1000*1000;
+ timeout.tv_sec++;
+ }
}
+ else
+ timeout.tv_sec += 2;
int idle = 1;
if (eApp && !eApp->isIdle())
idle = 0;
}
-
- pthread_mutex_unlock(&mutex);
if (!idle)
{
} else
disableSpinner();
}
+ pthread_mutex_unlock(&mutex);
#endif
}
}
o.opcode = m_spinner_enabled ? gOpcode::incrementSpinner : gOpcode::enableSpinner;
m_spinner_dc->exec(&o);
m_spinner_enabled = 1;
-
+ o.opcode = gOpcode::flush;
+ m_spinner_dc->exec(&o);
}
void gRC::disableSpinner()
gOpcode o;
o.opcode = gOpcode::disableSpinner;
m_spinner_dc->exec(&o);
+ o.opcode = gOpcode::flush;
+ m_spinner_dc->exec(&o);
}
static int gPainter_instances;
m_rc->submit(o);
}
-void gPainter::flush()
-{
- if ( m_dc->islocked() )
- return;
- gOpcode o;
- o.opcode = gOpcode::flush;
- o.dc = m_dc.grabRef();
- m_rc->submit(o);
-}
-
void gPainter::waitVSync()
{
if ( m_dc->islocked() )