blob: e279b6181daff892d20eb19005b74050a04620fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef MYON_FMDSP_GL_H_INCLUDED
#define MYON_FMDSP_GL_H_INCLUDED
#include "fmdsp/fmdsp.h"
struct fmdsp_gl;
struct fmdsp_gl *fmdsp_gl_init(struct fmdsp *fmdsp, float xscale, float yscale);
void fmdsp_gl_render(struct fmdsp_gl *fmdsp_gl, uint8_t *vram);
#endif // MYON_FMDSP_GL_H_INCLUDED
|