love-demo2/include/opengl.h
2026-03-05 21:53:02 -06:00

15 lines
260 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void * read_file(const char * filename, int * out_size);
unsigned int compile_from_files(const char * vertex_path,
const char * fragment_path);
#ifdef __cplusplus
}
#endif