mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
GUI: for real this time
This commit is contained in:
parent
7691626952
commit
3cc066ed26
1 changed files with 5 additions and 3 deletions
|
@ -58,10 +58,12 @@ void FurnaceGUI::readOsc() {
|
||||||
float* sincITable=DivFilterTables::getSincIntegralTable();
|
float* sincITable=DivFilterTables::getSincIntegralTable();
|
||||||
|
|
||||||
float posFrac=0.0;
|
float posFrac=0.0;
|
||||||
int posInt=oscReadPos;
|
int posInt=oscReadPos-8;
|
||||||
float factor=(float)oscWidth/(float)winSize;
|
float factor=(float)oscWidth/(float)winSize;
|
||||||
for (int i=0; i<oscWidth; i++) {
|
for (int i=-8; i<oscWidth+8; i++) {
|
||||||
|
if (i>=0 && i<oscWidth) {
|
||||||
oscValues[ch][i]+=e->oscBuf[ch][posInt&0x7fff];
|
oscValues[ch][i]+=e->oscBuf[ch][posInt&0x7fff];
|
||||||
|
}
|
||||||
|
|
||||||
posFrac+=1.0;
|
posFrac+=1.0;
|
||||||
while (posFrac>=1.0) {
|
while (posFrac>=1.0) {
|
||||||
|
|
Loading…
Reference in a new issue