blob: f1f81b53b292ac46d3e74fcdf8c54dd919d6f602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef GRAPHICS_H_
#define GRAPHICS_H_
#include "state.h"
bool init_gl(client_state* state);
void render_frame(client_state* state);
void init_text_buffer(client_state* state, text_buffer_t* buffer, char* text, size_t text_len);
void destroy_text_buffer(text_buffer_t* buffer);
#endif
|