fix missing processed check

This commit is contained in:
Charles J. Cliffe 2015-09-10 19:56:15 -04:00
parent 0b7cbbde35
commit 4301d0d434

View File

@ -82,15 +82,18 @@ void WaterfallCanvas::processInputQueue() {
// int numVis = visualDataQueue.size(); // int numVis = visualDataQueue.size();
gTimer.update(); gTimer.update();
// if (visualDataQueue.size() < 10 && !preBuf) { // if (linesPerSecond >= 30) {
// if ((visualDataQueue.size() < (linesPerSecond/5)) && !preBuf) {
// return; // return;
// } else { // } else {
// preBuf = true; // if (visualDataQueue.size() < (linesPerSecond/10)) {
// if (visualDataQueue.size() < 2) {
// preBuf = false; // preBuf = false;
// } else {
// preBuf = true;
// } // }
// } // }
// // }
double targetVis = 1.0 / (double)linesPerSecond; double targetVis = 1.0 / (double)linesPerSecond;
lpsIndex += gTimer.lastUpdateSeconds(); lpsIndex += gTimer.lastUpdateSeconds();
@ -114,14 +117,14 @@ void WaterfallCanvas::processInputQueue() {
} }
} }
} }
// if (processed) { if (processed) {
Refresh(); Refresh();
// } }
} }
void WaterfallCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) { void WaterfallCanvas::OnPaint(wxPaintEvent& WXUNUSED(event)) {
// wxClientDC dc(this); // wxClientDC dc(this);
testTimer.timerTestFunc(); // testTimer.timerTestFunc();
wxPaintDC dc(this); wxPaintDC dc(this);
//#ifdef __APPLE__ //#ifdef __APPLE__