Newer
Older
music / app / src / main / cpp / effects / Distortion.h
@lukas lukas on 2 Sep 2022 192 bytes add distortion effect
#ifndef MUSIC_DISTORTION_H
#define MUSIC_DISTORTION_H

#include "Effect.h"

class Distortion : public Effect {
public:
    void update();

    void doRender(uint32_t sampleCount);
};


#endif