mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
fb_accel: fix blit after time_monotonic_ms fix
This commit is contained in:
committed by
Jacek Jendrzej
parent
7f2d58f956
commit
a294b610a4
@@ -116,7 +116,7 @@ void CFbAccelGLFB::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint32
|
|||||||
void CFbAccelGLFB::run()
|
void CFbAccelGLFB::run()
|
||||||
{
|
{
|
||||||
printf(LOGTAG "run start\n");
|
printf(LOGTAG "run start\n");
|
||||||
int64_t last_blit = INT64_MAX;
|
int64_t last_blit = 0;
|
||||||
blit_pending = false;
|
blit_pending = false;
|
||||||
blit_thread = true;
|
blit_thread = true;
|
||||||
blit_mutex.lock();
|
blit_mutex.lock();
|
||||||
|
@@ -331,7 +331,7 @@ void CFbAccelSTi::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint32_
|
|||||||
void CFbAccelSTi::run()
|
void CFbAccelSTi::run()
|
||||||
{
|
{
|
||||||
printf(LOGTAG "::run start\n");
|
printf(LOGTAG "::run start\n");
|
||||||
int64_t last_blit = INT64_MAX; /* blit at first iteration */
|
int64_t last_blit = 0;
|
||||||
blit_pending = false;
|
blit_pending = false;
|
||||||
blit_thread = true;
|
blit_thread = true;
|
||||||
blit_mutex.lock();
|
blit_mutex.lock();
|
||||||
|
Reference in New Issue
Block a user