[ion/display] Factorize the dummy waitForVBlank

This commit is contained in:
Léa Saviot
2019-04-29 09:39:08 +02:00
parent 235a7ed860
commit 5d94742374
4 changed files with 3 additions and 9 deletions

View File

@@ -29,9 +29,6 @@ void pullRect(KDRect r, KDColor * pixels) {
}
}
void waitForVBlank() {
}
}
}

View File

@@ -27,9 +27,6 @@ void pullRect(KDRect r, KDColor * pixels) {
sFrameBuffer.pullRect(r, pixels);
}
void waitForVBlank() {
}
}
}

View File

@@ -2,3 +2,6 @@
void Ion::Display::POSTPushBlackWhite() {
}
void Ion::Display::waitForVBlank() {
}

View File

@@ -71,9 +71,6 @@ void Ion::Display::pullRect(KDRect r, KDColor * pixels) {
sFrameBuffer->pullRect(r, pixels);
}
void Ion::Display::waitForVBlank() {
}
Ion::Keyboard::State Ion::Keyboard::scan() {
Ion::Keyboard::State result = 0;
for (int i = 0; i < Ion::Keyboard::NumberOfKeys; i++) {