20 lines
382 B
C
20 lines
382 B
C
#pragma once
|
|
|
|
#include "state.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void render(const struct state * state,
|
|
unsigned int program,
|
|
unsigned int program__trans,
|
|
unsigned int program__texture0,
|
|
unsigned int color,
|
|
unsigned int vertex_array,
|
|
int triangles_length);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|