mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 15:05:06 -04:00
eda175afc8
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
21 lines
411 B
C
21 lines
411 B
C
#ifndef _DOLPHIN_DEMOAVX_H_
|
|
#define _DOLPHIN_DEMOAVX_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void DEMOAVXAttach(void* buffer, u32 num_frames);
|
|
u32 DEMOAVXGetNumFilled(void);
|
|
u32 DEMOAVXGetFrameCounter(void);
|
|
u32 DEMOAVXRefreshBuffer(u32* start_index, u32* end_index);
|
|
void DEMOAVXInit(s16* left, s16* right, u32 size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _DOLPHIN_DEMOAVX_H_
|