summaryrefslogtreecommitdiff
path: root/displaybase.c
diff options
context:
space:
mode:
authorTobias Grimm <tobias@e-tobi.loc>2009-01-08 21:52:59 +0100
committerTobias Grimm <tobias@e-tobi.loc>2009-01-08 21:52:59 +0100
commit42d45b4f8ab0de36327aa0e9ee02bf187818b5bf (patch)
tree631dfb99d4362d3afccb09e2c3e5be10afe86e4c /displaybase.c
parentf30e71a89c81826586b170f370d61f5a13b19cd8 (diff)
downloadvdr-plugin-osdteletext-42d45b4f8ab0de36327aa0e9ee02bf187818b5bf.tar.gz
vdr-plugin-osdteletext-42d45b4f8ab0de36327aa0e9ee02bf187818b5bf.tar.bz2
Removed timingdebug code
Diffstat (limited to 'displaybase.c')
-rw-r--r--displaybase.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/displaybase.c b/displaybase.c
index b46fa25..0e82834 100644
--- a/displaybase.c
+++ b/displaybase.c
@@ -209,11 +209,6 @@ void cDisplay::RenderTeletextCode(unsigned char *PageCode) {
// and draw the whole page content into OSD.
// PageCode must be a 40*24+12 bytes buffer
- #ifdef timingdebug
- cTime t;
- t.Start();
- #endif
-
HoldFlush();
cRenderPage::ReadTeletextHeader(PageCode);
@@ -227,10 +222,6 @@ void cDisplay::RenderTeletextCode(unsigned char *PageCode) {
}
cRenderPage::RenderTeletextCode(PageCode+12);
-
- #ifdef timingdebug
- t.Stop("Render Teletext");
- #endif
ReleaseFlush();
}
@@ -244,11 +235,6 @@ void cDisplay::DrawDisplay() {
if (!IsDirty()) return;
// nothing to do
- #ifdef timingdebug
- cTime t;
- t.Start();
- #endif
-
for (y=0;y<25;y++) {
for (x=0;x<40;x++) {
if (IsDirty(x,y)) {
@@ -265,9 +251,6 @@ void cDisplay::DrawDisplay() {
}
}
}
- #ifdef timingdebug
- t.Stop("Draw Display");
- #endif
Dirty=false;
DirtyAll=false;