mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-18 10:11:50 +00:00
d715918e45
git-svn-id: https://svn.eduke32.com/eduke32@6158 1a8010ca-5511-0410-912e-c29ae57300e0
20 lines
422 B
C
20 lines
422 B
C
#ifndef LIBXMP_LFO_H
|
|
#define LIBXMP_LFO_H
|
|
|
|
#include "common.h"
|
|
|
|
struct lfo {
|
|
int type;
|
|
int rate;
|
|
int depth;
|
|
int phase;
|
|
};
|
|
|
|
int libxmp_lfo_get(struct context_data *, struct lfo *, int);
|
|
void libxmp_lfo_update(struct lfo *);
|
|
void libxmp_lfo_set_phase(struct lfo *, int);
|
|
void libxmp_lfo_set_depth(struct lfo *, int);
|
|
void libxmp_lfo_set_rate(struct lfo *, int);
|
|
void libxmp_lfo_set_waveform(struct lfo *, int);
|
|
|
|
#endif
|