mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 11:13:53 +08:00
9 lines
201 B
C
9 lines
201 B
C
#ifndef COMMON_GLUTIL_H
|
|
#define COMMON_GLUTIL_H
|
|
|
|
#include <GLES3/gl3.h>
|
|
GLuint load_shader(GLenum shaderType, const char *src);
|
|
GLuint load_program(const char *vert_src, const char *frag_src);
|
|
|
|
#endif
|