ofApp.cpp
#include "ofApp.h"
//--------------------------------------------------------------
void ofApp::setup(){
int bufferSize = 256;
ofSoundStreamSetup(2, 2, this, 44100, bufferSize, 4);
}
This file has been truncated. show original
ofApp.h
#pragma once
#include "ofMain.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
This file has been truncated. show original