new/include/render.h
2025-12-17 23:34:49 -06:00

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