mirror of
https://github.com/vsariola/sointu.git
synced 2025-05-25 18:00:37 -04:00
39 lines
868 B
C
39 lines
868 B
C
#ifndef SU_RENDER_H
|
|
#define SU_RENDER_H
|
|
|
|
#define SU_LENGTH_IN_SAMPLES 105840
|
|
#define SU_BUFFER_LENGTH (SU_LENGTH_IN_SAMPLES*2)
|
|
|
|
#define SU_SAMPLE_RATE 44100
|
|
#define SU_BPM 100
|
|
#define SU_ROWS_PER_PATTERN 16
|
|
#define SU_LENGTH_IN_PATTERNS 1
|
|
#define SU_LENGTH_IN_ROWS (SU_LENGTH_IN_PATTERNS*SU_ROWS_PER_PATTERN)
|
|
#define SU_SAMPLES_PER_ROW (SU_SAMPLE_RATE*4*60/(BPM*16))
|
|
|
|
#include <stdint.h>
|
|
#if UINTPTR_MAX == 0xffffffff
|
|
#if defined(__clang__) || defined(__GNUC__)
|
|
#define SU_CALLCONV __attribute__ ((stdcall))
|
|
#elif defined(_WIN32)
|
|
#define SU_CALLCONV __stdcall
|
|
#endif
|
|
#else
|
|
#define SU_CALLCONV
|
|
#endif
|
|
|
|
typedef float SUsample;
|
|
#define SU_SAMPLE_RANGE 1.0f
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void SU_CALLCONV su_render_song(SUsample *buffer);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|