love-demo2/include/opengl.h
2026-03-11 00:20:14 -05:00

14 lines
262 B
C

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