19 lines
389 B
C
19 lines
389 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern char const * g_source_path;
|
|
extern int g_source_path_length;
|
|
|
|
void * read_file(const char * filename, int * out_size);
|
|
|
|
unsigned int compile_from_files(const char * vertex_path,
|
|
const char * geometry_path,
|
|
const char * fragment_path);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|