remove all fb->blit() calls

TODO: check if plugins etc. need extra treatment


Origin commit data
------------------
Branch: ni/coolstream
Commit: c68ffa2155
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2013-09-28 (Sat, 28 Sep 2013)



------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2013-09-28 13:01:03 +02:00
parent c945ffc3f9
commit c4c20a0790
39 changed files with 6 additions and 147 deletions

View File

@@ -313,7 +313,6 @@ int CScanTs::exec(CMenuTarget* /*parent*/, const std::string & actionKey)
tuned = -1;
paint(test);
frameBuffer->blit();
/* go */
if(test) {
@@ -360,7 +359,6 @@ int CScanTs::exec(CMenuTarget* /*parent*/, const std::string & actionKey)
}
while (!(msg == CRCInput::RC_timeout));
showSNR();
frameBuffer->blit();
}
/* to join scan thread */
g_Zapit->stopScan();
@@ -373,7 +371,6 @@ int CScanTs::exec(CMenuTarget* /*parent*/, const std::string & actionKey)
if(!test) {
CComponentsHeader header(x, y, width, hheight, success ? LOCALE_SCANTS_FINISHED : LOCALE_SCANTS_FAILED, NULL /*no header icon*/);
header.paint(CC_SAVE_SCREEN_NO);
// frameBuffer->blit(); // ??
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd(0xFFFF);
do {
g_RCInput->getMsgAbsoluteTimeout(&msg, &data, &timeoutEnd);
@@ -494,8 +491,6 @@ neutrino_msg_t CScanTs::handleMsg(neutrino_msg_t msg, neutrino_msg_data_t data)
}
if ((msg >= CRCInput::RC_WithData) && (msg < CRCInput::RC_WithData + 0x10000000))
delete[] (unsigned char*) data;
/* almost all messages paint something, so blit here */
frameBuffer->blit();
return msg;
}