osci-render/Source/audio/BitCrushEffect.h

11 wiersze
290 B
C
Czysty Zwykły widok Historia

2023-03-25 20:24:10 +00:00
#pragma once
#include "EffectApplication.h"
#include "../shape/OsciPoint.h"
2023-03-25 20:24:10 +00:00
class BitCrushEffect : public EffectApplication {
2023-03-25 20:24:10 +00:00
public:
BitCrushEffect();
OsciPoint apply(int index, OsciPoint input, const std::vector<std::atomic<double>>& values, double sampleRate) override;
2023-09-01 18:52:36 +00:00
};