mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-23 12:18:37 -05:00
fix missing processed check
This commit is contained in:
parent
0b7cbbde35
commit
4301d0d434
@ -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) {
|
||||||
// return;
|
// if ((visualDataQueue.size() < (linesPerSecond/5)) && !preBuf) {
|
||||||
// } else {
|
// return;
|
||||||
// preBuf = true;
|
// } else {
|
||||||
// if (visualDataQueue.size() < 2) {
|
// if (visualDataQueue.size() < (linesPerSecond/10)) {
|
||||||
// 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__
|
||||||
|
Loading…
Reference in New Issue
Block a user